Files
MiniChat/Server.hpp
2024-04-08 07:20:11 +00:00

19 lines
261 B
C++

#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