picloud next iteration
This commit is contained in:
@@ -7,14 +7,18 @@
|
||||
class CloudServer : public PIObject {
|
||||
PIOBJECT(CloudServer)
|
||||
public:
|
||||
CloudServer(DispatcherClient * c);
|
||||
CloudServer(DispatcherClient * c, const PIString & sname);
|
||||
~CloudServer();
|
||||
PIString serverName() const;
|
||||
void addClient(DispatcherClient * c);
|
||||
void removeClient(DispatcherClient * c);
|
||||
PIVector<DispatcherClient*> getClients();
|
||||
EVENT_HANDLER0(void, printStatus);
|
||||
|
||||
private:
|
||||
DispatcherClient * server;
|
||||
PIVector<DispatcherClient*> clients;
|
||||
PIString server_name;
|
||||
};
|
||||
|
||||
#endif // CLOUDSERVER_H
|
||||
|
||||
Reference in New Issue
Block a user