19 lines
275 B
C++
19 lines
275 B
C++
#ifndef SERVERMODULE_H
|
|
#define SERVERMODULE_H
|
|
|
|
#include "module.h"
|
|
|
|
class Server;
|
|
|
|
class ServerModule : public Module
|
|
{
|
|
Server* server;
|
|
|
|
public:
|
|
ServerModule();
|
|
virtual bool messageHandler(Message msg);
|
|
virtual QString getName();
|
|
};
|
|
|
|
#endif // SERVERMODULE_H
|