forked from mirrors/linphone-iphone
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
|