1 /* +------------------------------------+
2 * | Inspire Internet Relay Chat Daemon |
3 * +------------------------------------+
5 * InspIRCd: (C) 2002-2009 InspIRCd Development Team
6 * See: http://wiki.inspircd.org/Credits
8 * This program is free but copyrighted software; see
9 * the file COPYING for details.
11 * ---------------------------------------------------
14 #ifndef __CHANNELMANAGER_H
15 #define __CHANNELMANAGER_H
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!
21 class CoreExport ChannelManager : public Extensible
24 InspIRCd *ServerInstance;
28 ChannelManager(InspIRCd *Instance) : ServerInstance(Instance)