forked from mirrors/linphone-iphone
14 lines
203 B
C++
14 lines
203 B
C++
#ifndef CALLPAUSE_H
|
|
#define CALLPAUSE_H
|
|
|
|
#include "daemon.h"
|
|
|
|
class CallPause : public DaemonCommand
|
|
{
|
|
public:
|
|
CallPause();
|
|
|
|
virtual void exec(Daemon *app, const char *args);
|
|
};
|
|
|
|
#endif // CALLPAUSE_H
|