mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-04-26 02:58:34 +00:00
17 lines
304 B
C++
17 lines
304 B
C++
#ifndef COMMAND_PTIME_H_
|
|
#define COMMAND_PTIME_H_
|
|
|
|
#include "../daemon.h"
|
|
|
|
class PtimeCommandPrivate;
|
|
|
|
class PtimeCommand: public DaemonCommand {
|
|
public:
|
|
PtimeCommand();
|
|
~PtimeCommand();
|
|
virtual void exec(Daemon *app, const char *args);
|
|
private:
|
|
PtimeCommandPrivate *d;
|
|
};
|
|
|
|
#endif //COMMAND_PTIME_H_
|