/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Client.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: aortigos +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2026/04/13 22:31:44 by aortigos #+# #+# */ /* Updated: 2026/04/13 22:31:44 by aortigos ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef CLIENT_HPP # define CLIENT_HPP # include # include class Client { private: int fd; std::string nick; std::string username; std::string realname; std::string buffer; bool registered; bool authenticated; public: Client(); Client(int fd); ~Client(); }; #endif