parsed arguments
This commit is contained in:
19
Server.hpp
Normal file
19
Server.hpp
Normal file
@@ -0,0 +1,19 @@
|
||||
#ifndef SERVER_HPP
|
||||
#define SERVER_HPP
|
||||
|
||||
|
||||
#include <iostream>
|
||||
#include <cstdlib>
|
||||
|
||||
class Server {
|
||||
private:
|
||||
int _port;
|
||||
std::string _password;
|
||||
public:
|
||||
Server();
|
||||
~Server();
|
||||
|
||||
void parseArgs(int ac, char **av);
|
||||
};
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user