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