]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/channelmanager.h
Update copyrights for 2009.
[user/henk/code/inspircd.git] / include / channelmanager.h
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2009 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 /** 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 : public Extensible
22 {
23  private:
24         InspIRCd *ServerInstance;
25  public:
26         /** Constructor
27          */
28         ChannelManager(InspIRCd *Instance) : ServerInstance(Instance)
29         {
30         }
31 };
32
33 #endif