]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/channelmanager.h
Fixes for bug #12
[user/henk/code/inspircd.git] / include / channelmanager.h
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2010 InspIRCd Development Team
6  * See: http://wiki.inspircd.org/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 /** THe channel manager class allocates and deallocates channels and manages
18  * the container which holds them. For some reason, nobody finished this.
19  * TODO: Finish in future release!
20  */
21 class CoreExport ChannelManager
22 {
23  public:
24         /** Constructor
25          */
26         ChannelManager()
27         {
28         }
29 };
30
31 #endif