16 lines
283 B
C
16 lines
283 B
C
|
|
#ifndef SERVER_H
|
||
|
|
#define SERVER_H
|
||
|
|
|
||
|
|
#include "CCWebServlet.h"
|
||
|
|
|
||
|
|
class Server {
|
||
|
|
public:
|
||
|
|
inline static CTL::WebServlet Servlet;
|
||
|
|
//------------------------------------------------------------------------------
|
||
|
|
static void Init();
|
||
|
|
static int Running();
|
||
|
|
private:
|
||
|
|
|
||
|
|
};
|
||
|
|
#endif
|