Made a basic arg parser and shell implementation of the Server class

This commit is contained in:
iherman-
2026-05-06 18:07:17 +02:00
parent d2e02440b3
commit b47c7dc9b8
5 changed files with 142 additions and 8 deletions

38
Server/Server.cpp Normal file
View File

@@ -0,0 +1,38 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* Server.cpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: iherman- <iherman-@student.42malaga.com +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2026/05/06 17:19:12 by iherman- #+# #+# */
/* Updated: 2026/05/06 17:40:52 by iherman- ### ########.fr */
/* */
/* ************************************************************************** */
#include "Server.hpp"
Server::Server()
{
std::cout << "Hello from server" << std::endl;
}
Server::Server(int port, const std::string& password)
{
std::cout << "Server port: " << port << "\nServer Password: " << password << std::endl;
}
Server::~Server()
{
}
Server &Server::operator=(const Server& other)
{
if (this != &other)
{
std::cout << "operator= called" << std::endl;
}
return *this;
}