mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-04-25 10:18:34 +00:00
17 lines
387 B
C++
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_
|