SUUUUUUUUUUUUTUTUTUTUTTUUUUUUUUUUUUU

This commit is contained in:
Kbz-8
2024-01-21 12:04:54 +01:00
parent 46e1296440
commit 6377c9e096
9 changed files with 15 additions and 11 deletions

28
srcs/server.cpp Normal file
View File

@@ -0,0 +1,28 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* server.cpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: maldavid <kbz_8.dev@akel-engine.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/01/21 09:31:17 by maldavid #+# #+# */
/* Updated: 2024/01/21 10:38:12 by maldavid ### ########.fr */
/* */
/* ************************************************************************** */
#include <server.hpp>
#include <client.hpp>
#include <channel.hpp>
namespace irc
{
Server::Server(int port, const std::string& password) : _password(password), _port(port)
{
(void)_port;
(void)_password;
(void)_socket;
(void)_channels;
}
Server::~Server() {}
}