]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/snomasks.cpp
Spanningtree tidyups
[user/henk/code/inspircd.git] / src / snomasks.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
6  *                       E-mail:
7  *                <brain@chatspike.net>
8  *                <Craig@chatspike.net>
9  *
10  * Written by Craig Edwards, Craig McLure, and others.
11  * This program is free but copyrighted software; see
12  *            the file COPYING for details.
13  *
14  * ---------------------------------------------------
15  */
16
17 #include <string>
18 #include <vector>
19 #include "configreader.h"
20 #include "users.h"
21 #include "modules.h"
22 #include "commands.h"
23 #include "xline.h"
24 #include "snomasks.h"
25
26 SnomaskManager::SnomaskManager(InspIRCd* Instance) : ServerInstance(Instance)
27 {
28 }
29
30 SnomaskManager::~SnomaskManager()
31 {
32 }
33