mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-20 04:28:10 +00:00
13 lines
217 B
C++
13 lines
217 B
C++
#ifndef CALLTRANSFER_H
|
|
#define CALLTRANSFER_H
|
|
|
|
#include "daemon.h"
|
|
|
|
class CallTransfer : public DaemonCommand
|
|
{
|
|
public:
|
|
CallTransfer();
|
|
virtual void exec(Daemon *app, const char *args);
|
|
};
|
|
|
|
#endif // CALLTRANSFER_H
|