mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-19 03:58:08 +00:00
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
|