summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-08-29 17:02:38 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-08-29 17:02:38 +0000
commite7aac9ee56d7bfff83287e3068ac18f60d43a1f9 (patch)
treeef150aeda61cb8826c21a64746a2775f38dd194c /include
parent07c3b07ff7d961eb8048a1e9390cafd35d224a7c (diff)
Spanningtree tidyups
Start of SnomaskManager class git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5061 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include')
-rw-r--r--include/snomasks.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/include/snomasks.h b/include/snomasks.h
index e69de29bb..ab8980c26 100644
--- a/include/snomasks.h
+++ b/include/snomasks.h
@@ -0,0 +1,36 @@
+/* +------------------------------------+
+ * | Inspire Internet Relay Chat Daemon |
+ * +------------------------------------+
+ *
+ * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
+ * E-mail:
+ * <brain@chatspike.net>
+ * <Craig@chatspike.net>
+ *
+ * Written by Craig Edwards, Craig McLure, and others.
+ * This program is free but copyrighted software; see
+ * the file COPYING for details.
+ *
+ * --------------------------------------------------
+ */
+
+#ifndef __SNOMASKS_H__
+#define __SNOMASKS_H__
+
+#include <string>
+#include <vector>
+#include "configreader.h"
+#include "inspircd.h"
+
+class SnomaskManager : public Extensible
+{
+ private:
+ InspIRCd* ServerInstance;
+ public:
+ SnomaskManager(InspIRCd* Instance);
+ ~SnomaskManager();
+
+
+};
+
+#endif