diff options
author | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-01-13 03:10:30 +0000 |
---|---|---|
committer | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-01-13 03:10:30 +0000 |
commit | f56b7d5e861648e5ddc1b766e40779082ebaeff1 (patch) | |
tree | a7c8716d42ee8176d968fb0dd81568e557d7bf29 /include | |
parent | 61e944f9fd3dc323858cbb5636abd024225aa027 (diff) |
Add a channel manager class while I'm at it.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8704 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include')
-rw-r--r-- | include/channelmanager.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/include/channelmanager.h b/include/channelmanager.h new file mode 100644 index 000000000..a85cdea26 --- /dev/null +++ b/include/channelmanager.h @@ -0,0 +1,28 @@ +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * InspIRCd: (C) 2002-2008 InspIRCd Development Team + * See: http://www.inspircd.org/wiki/index.php/Credits + * + * This program is free but copyrighted software; see + * the file COPYING for details. + * + * --------------------------------------------------- + */ + +#ifndef __CHANNELMANAGER_H +#define __CHANNELMANAGER_H + +class CoreExport ChannelManager : public classbase +{ + private: + InspIRCd *ServerInstance; + public: + UserManager(InspIRCd *Instance) + { + ServerInstance = Instance; + } +}; + +#endif |