2008-01-13 03:10:30 +00:00
|
|
|
/* +------------------------------------+
|
|
|
|
* | Inspire Internet Relay Chat Daemon |
|
|
|
|
* +------------------------------------+
|
|
|
|
*
|
2009-01-02 18:16:05 +00:00
|
|
|
* InspIRCd: (C) 2002-2009 InspIRCd Development Team
|
2009-03-15 12:42:35 +00:00
|
|
|
* See: http://wiki.inspircd.org/Credits
|
2008-01-13 03:10:30 +00:00
|
|
|
*
|
|
|
|
* This program is free but copyrighted software; see
|
|
|
|
* the file COPYING for details.
|
|
|
|
*
|
|
|
|
* ---------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __CHANNELMANAGER_H
|
|
|
|
#define __CHANNELMANAGER_H
|
|
|
|
|
2008-09-20 20:53:04 +00:00
|
|
|
/** THe channel manager class allocates and deallocates channels and manages
|
|
|
|
* the container which holds them. For some reason, nobody finished this.
|
|
|
|
* TODO: Finish in future release!
|
|
|
|
*/
|
2008-05-20 18:29:15 +00:00
|
|
|
class CoreExport ChannelManager : public Extensible
|
2008-01-13 03:10:30 +00:00
|
|
|
{
|
|
|
|
private:
|
|
|
|
InspIRCd *ServerInstance;
|
|
|
|
public:
|
2008-09-20 20:53:04 +00:00
|
|
|
/** Constructor
|
|
|
|
*/
|
2008-05-20 18:29:15 +00:00
|
|
|
ChannelManager(InspIRCd *Instance) : ServerInstance(Instance)
|
2008-01-13 03:10:30 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|