mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-23 14:18:07 +00:00
- Add examples for each command - Add the --dump-commands-help option to output the entire help
13 lines
351 B
C++
13 lines
351 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.") {
|
|
addExample(new DaemonCommandExample("pop-event",
|
|
"Status: Ok\n\n"
|
|
"Size: 0"));
|
|
}
|
|
void PopEventCommand::exec(Daemon *app, const char *args) {
|
|
app->pullEvent();
|
|
}
|