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