/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* client.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: maldavid +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/01/21 10:33:17 by maldavid #+# #+# */ /* Updated: 2024/01/21 10:34:13 by maldavid ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef __CLIENT__ #define __CLIENT__ namespace irc { class Client { public: Client(); ~Client(); private: }; } #endif