picloud
This commit is contained in:
@@ -3,10 +3,18 @@
|
||||
|
||||
#include "dispatcherclient.h"
|
||||
|
||||
class CloudServer
|
||||
{
|
||||
|
||||
class CloudServer : public PIObject {
|
||||
PIOBJECT(CloudServer)
|
||||
public:
|
||||
CloudServer(DispatcherClient * client);
|
||||
CloudServer(DispatcherClient * c);
|
||||
~CloudServer();
|
||||
void addClient(DispatcherClient * c);
|
||||
EVENT_HANDLER0(void, printStatus);
|
||||
|
||||
private:
|
||||
DispatcherClient * server;
|
||||
PIVector<DispatcherClient*> clients;
|
||||
};
|
||||
|
||||
#endif // CLOUDSERVER_H
|
||||
|
||||
Reference in New Issue
Block a user