mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-30 09:49:26 +00:00
13 lines
197 B
C++
13 lines
197 B
C++
#ifndef CALLMUTE_H
|
|
#define CALLMUTE_H
|
|
|
|
#include "daemon.h"
|
|
|
|
class CallMute : public DaemonCommand
|
|
{
|
|
public:
|
|
CallMute();
|
|
virtual void exec(Daemon *app, const char *args);
|
|
};
|
|
|
|
#endif // CALLMUTE_H
|