22 lines
261 B
C++
22 lines
261 B
C++
|
|
#ifndef SERVER_HPP
|
|
# define SERVER_HPP
|
|
|
|
# include <iostream>
|
|
# include <string>
|
|
|
|
class Server
|
|
{
|
|
public:
|
|
// Server(Placeholder);
|
|
// Server();
|
|
// Server(Server const &src);
|
|
// ~Server();
|
|
// Server &operator=(Server const &rhs);
|
|
|
|
private:
|
|
|
|
};
|
|
|
|
#endif
|