diff options
author | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-09-13 20:31:11 +0000 |
---|---|---|
committer | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-09-13 20:31:11 +0000 |
commit | b4be0c94ab5fb7e5a7a799a195c78de072a5e315 (patch) | |
tree | 48dee3440b9bf1227f39ca2539d7fe55ad53df8b /include/channels.h | |
parent | ace3d85982f99ab04318ce705fd29fec5ffd7320 (diff) |
Module API changes to use Membership* where sensible
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11699 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/channels.h')
-rw-r--r-- | include/channels.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/include/channels.h b/include/channels.h index ec52661d6..f71ad53a3 100644 --- a/include/channels.h +++ b/include/channels.h @@ -81,12 +81,6 @@ enum UserChannelModes { */ class CoreExport Channel : public Extensible { - private: - - /** Pointer to creator object - */ - InspIRCd* ServerInstance; - /** Connect a Channel to a User */ static Channel* ForceChan(InspIRCd* Instance, Channel* Ptr, User* user, const std::string &privs, bool bursting, bool created); @@ -100,6 +94,10 @@ class CoreExport Channel : public Extensible int maxbans; public: + /** Pointer to creator object + */ + InspIRCd* ServerInstance; + /** Creates a channel record and initialises it with default values * @throw Nothing at present. */ |