16 lines
150 B
C++
16 lines
150 B
C++
#ifndef SERVER_HPP_
|
|
#define SERVER_HPP_
|
|
|
|
class Server {
|
|
public:
|
|
Server();
|
|
~Server();
|
|
|
|
void Init();
|
|
void Proc();
|
|
void Quit();
|
|
private:
|
|
};
|
|
|
|
#endif
|