linphone-iphone/daemon/commands/pop-event.cc
2012-05-02 17:55:16 +02:00

10 lines
259 B
C++

#include "pop-event.h"
using namespace std;
PopEventCommand::PopEventCommand() :
DaemonCommand("pop-event", "pop-event", "Pop an event from event queue and display it.") {
}
void PopEventCommand::exec(Daemon *app, const char *args) {
app->pullEvent();
}