mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-02-07 14:18:25 +00:00
13 lines
225 B
C++
13 lines
225 B
C++
#ifndef COMMANDS_CONFERENCE_H
|
|
#define COMMANDS_CONFERENCE_H
|
|
|
|
#include "daemon.h"
|
|
|
|
class Conference : public DaemonCommand
|
|
{
|
|
public:
|
|
Conference();
|
|
virtual void exec(Daemon *app, const char *args);
|
|
};
|
|
|
|
#endif // CONFERENCE_H
|