diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-09-20 20:53:04 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-09-20 20:53:04 +0000 |
commit | f67620f774935e2c1aa8f0dd814fc7d915fb5ab4 (patch) | |
tree | 31315575eec4d1216ee8d0f4083c43ded6959673 /include/channelmanager.h | |
parent | d7552b854d466ab443c232de499991c9e72f70a3 (diff) |
more comments
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10566 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/channelmanager.h')
-rw-r--r-- | include/channelmanager.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/channelmanager.h b/include/channelmanager.h index c19876859..b5493529d 100644 --- a/include/channelmanager.h +++ b/include/channelmanager.h @@ -14,11 +14,17 @@ #ifndef __CHANNELMANAGER_H #define __CHANNELMANAGER_H +/** 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! + */ class CoreExport ChannelManager : public Extensible { private: InspIRCd *ServerInstance; public: + /** Constructor + */ ChannelManager(InspIRCd *Instance) : ServerInstance(Instance) { } |