summaryrefslogtreecommitdiff
path: root/src/irc/irc_user.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/irc/irc_user.hpp')
-rw-r--r--src/irc/irc_user.hpp24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/irc/irc_user.hpp b/src/irc/irc_user.hpp
new file mode 100644
index 0000000..b76b2ef
--- /dev/null
+++ b/src/irc/irc_user.hpp
@@ -0,0 +1,24 @@
+#ifndef IRC_USER_INCLUDED
+# define IRC_USER_INCLUDED
+
+#include <string>
+
+/**
+ * Keeps various information about one IRC channel user
+ */
+class IrcUser
+{
+public:
+ explicit IrcUser(const std::string& name);
+
+ std::string nick;
+ std::string host;
+
+private:
+ IrcUser(const IrcUser&) = delete;
+ IrcUser(IrcUser&&) = delete;
+ IrcUser& operator=(const IrcUser&) = delete;
+ IrcUser& operator=(IrcUser&&) = delete;
+};
+
+#endif // IRC_USER_INCLUDED