mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-19 03:58:08 +00:00
12 lines
219 B
C++
12 lines
219 B
C++
#ifndef COMMAND_QUIT_H_
|
|
#define COMMAND_QUIT_H_
|
|
|
|
#include "../daemon.h"
|
|
|
|
class QuitCommand: public DaemonCommand {
|
|
public:
|
|
QuitCommand();
|
|
virtual void exec(Daemon *app, const char *args);
|
|
};
|
|
|
|
#endif //COMMAND_QUIT_H_
|