#pragma once #include namespace RedpilledBot { namespace IRC { class Client { public: Client(std::string username, std::string password); ~Client() = default; private: std::string username; std::string password; }; } }