parsed arguments

This commit is contained in:
bettercallous
2024-04-08 07:20:11 +00:00
parent 8aece78bb2
commit 2fdb0eb6c4
5 changed files with 79 additions and 1 deletions

19
Server.hpp Normal file
View 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