mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-20 20:48:07 +00:00
12 lines
244 B
C++
12 lines
244 B
C++
#ifndef COMMAND_TERMINATE_H_
|
|
#define COMMAND_TERMINATE_H_
|
|
|
|
#include "../daemon.h"
|
|
|
|
class TerminateCommand: public DaemonCommand {
|
|
public:
|
|
TerminateCommand();
|
|
virtual void exec(Daemon *app, const char *args);
|
|
};
|
|
|
|
#endif //COMMAND_TERMINATE_H_
|