mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-02-07 14:18:25 +00:00
10 lines
259 B
C++
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();
|
|
}
|