diff options
Diffstat (limited to 'src/irc/client.hpp')
| -rw-r--r-- | src/irc/client.hpp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/irc/client.hpp b/src/irc/client.hpp new file mode 100644 index 0000000..2fea780 --- /dev/null +++ b/src/irc/client.hpp @@ -0,0 +1,17 @@ +#pragma once + +#include <string> + +namespace RedpilledBot { + namespace IRC { + class Client { + public: + Client(std::string username, std::string password); + ~Client() = default; + + private: + std::string username; + std::string password; + }; + } +} |
