mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-18 11:38:08 +00:00
12 lines
236 B
C++
12 lines
236 B
C++
#include "quit.h"
|
|
|
|
using namespace std;
|
|
|
|
QuitCommand::QuitCommand() :
|
|
DaemonCommand("quit", "quit", "Quit the application.") {
|
|
}
|
|
|
|
void QuitCommand::exec(Daemon *app, const char *args) {
|
|
app->quit();
|
|
app->sendResponse(Response());
|
|
}
|