summaryrefslogtreecommitdiff
path: root/src/modules/account.h
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2008-03-21 19:42:08 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2008-03-21 19:42:08 +0000
commitdde67b9765bc485d807f181bba108c00f4c44dba (patch)
tree99aa38a52b8fc6c94ad05b2087d34456377d4f5f /src/modules/account.h
parente541d870345bd0f7066049a17ddc497b603e7f04 (diff)
Add capability for m_services_account to broadcast login events, with the user who is logging in and their login name
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9149 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/account.h')
-rw-r--r--src/modules/account.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/modules/account.h b/src/modules/account.h
new file mode 100644
index 000000000..833fe7aee
--- /dev/null
+++ b/src/modules/account.h
@@ -0,0 +1,27 @@
+/* +------------------------------------+
+ * | Inspire Internet Relay Chat Daemon |
+ * +------------------------------------+
+ *
+ * InspIRCd: (C) 2002-2008 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
+ *
+ * This program is free but copyrighted software; see
+ * the file COPYING for details.
+ *
+ * ---------------------------------------------------
+ */
+
+#ifndef __ACCOUNT_H__
+#define __ACCOUNT_H__
+
+#include <map>
+#include <string>
+
+class AccountData
+{
+ public:
+ User* user;
+ std::string account;
+};
+
+#endif