summaryrefslogtreecommitdiff
path: root/src/modules/m_cap.h
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2008-03-18 20:18:16 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2008-03-18 20:18:16 +0000
commit30b88d03f9ca249110ddb7d912d308996319e593 (patch)
treeb1838bcaedef85e039d573fa155cdd439a8a2833 /src/modules/m_cap.h
parentcf8c8a0c585fd30bdb53a81f6be148a02606c610 (diff)
Add m_cap.* stuff, unfinished. Thanks for the initial advice nenolod :)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9120 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_cap.h')
-rw-r--r--src/modules/m_cap.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/modules/m_cap.h b/src/modules/m_cap.h
new file mode 100644
index 000000000..149528934
--- /dev/null
+++ b/src/modules/m_cap.h
@@ -0,0 +1,29 @@
+/* +------------------------------------+
+ * | 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 __CAP_H__
+#define __CAP_H__
+
+#include <map>
+#include <string>
+
+class CapData
+{
+ public:
+ irc::string type;
+ irc::string parameter;
+ User* user;
+ Module* creator;
+};
+
+#endif