/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* server.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: maldavid +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/01/21 09:12:28 by maldavid #+# #+# */ /* Updated: 2024/01/21 09:14:20 by maldavid ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef __SERVER_IRC__ #define __SERVER_IRC__ namespace irc { class Server { public: Server(); ~Server(); private: }; } #endif