mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-18 11:38:08 +00:00
18 lines
364 B
C++
18 lines
364 B
C++
#ifndef COMMAND_CONFIG_H_
|
|
#define COMMAND_CONFIG_H_
|
|
|
|
#include "../daemon.h"
|
|
|
|
class ConfigGetCommand: public DaemonCommand {
|
|
public:
|
|
ConfigGetCommand();
|
|
virtual void exec(Daemon *app, const char *args);
|
|
};
|
|
|
|
class ConfigSetCommand: public DaemonCommand {
|
|
public:
|
|
ConfigSetCommand();
|
|
virtual void exec(Daemon *app, const char *args);
|
|
};
|
|
|
|
#endif //COMMAND_IPV6_H_
|