13 lines
173 B
C++
13 lines
173 B
C++
#ifndef CLOUDSERVER_H
|
|
#define CLOUDSERVER_H
|
|
|
|
#include "dispatcherclient.h"
|
|
|
|
class CloudServer
|
|
{
|
|
public:
|
|
CloudServer(DispatcherClient * client);
|
|
};
|
|
|
|
#endif // CLOUDSERVER_H
|