]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/channelmanager.h
Add call to protocol interface to get useful info on the server map. Return a std...
[user/henk/code/inspircd.git] / include / channelmanager.h
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2008 InspIRCd Development Team
6  * See: http://www.inspircd.org/wiki/index.php/Credits
7  *
8  * This program is free but copyrighted software; see
9  *          the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 #ifndef __CHANNELMANAGER_H
15 #define __CHANNELMANAGER_H
16
17 class CoreExport ChannelManager : public classbase
18 {
19  private:
20         InspIRCd *ServerInstance;
21  public:
22         UserManager(InspIRCd *Instance)
23         {
24                 ServerInstance = Instance;
25         }
26 };
27
28 #endif