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