linphone-iphone/daemon/commands/media-encryption.h
Ghislain MARY ab122cc3b3 Add media-encryption command.
Fixes bug 0000186.
2012-08-27 09:30:48 +02:00

17 lines
387 B
C++

#ifndef COMMAND_MEDIA_ENCRYPTION_H_
#define COMMAND_MEDIA_ENCRYPTION_H_
#include "../daemon.h"
class MediaEncryptionCommandPrivate;
class MediaEncryptionCommand: public DaemonCommand {
public:
MediaEncryptionCommand();
~MediaEncryptionCommand();
virtual void exec(Daemon *app, const char *args);
private:
MediaEncryptionCommandPrivate *d;
};
#endif //COMMAND_MEDIA_ENCRYPTION_H_