diff options
author | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-01-06 02:36:05 +0000 |
---|---|---|
committer | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-01-06 02:36:05 +0000 |
commit | 488cea15e8de7f1afa779728aa4af2efd548d268 (patch) | |
tree | 046e67d702e59abc5f8bd41e049b42a694f31746 /include | |
parent | d2fea45d5ad318c9cc9959843614273cf827b13f (diff) |
Move CreateChannel to a constructor instead
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8647 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include')
-rw-r--r-- | include/channels.h | 18 |
1 files changed, 5 insertions, 13 deletions
diff --git a/include/channels.h b/include/channels.h index 3c95bb7fb..268adf47b 100644 --- a/include/channels.h +++ b/include/channels.h @@ -135,6 +135,11 @@ class CoreExport Channel : public Extensible int maxbans; public: + /** Creates a channel record and initialises it with default values + * @throw Nothing at present. + */ + Channel(InspIRCd* Instance, const std::string &name, time_t ts); + /** The channel's name. */ char name[CHANMAX]; @@ -331,11 +336,6 @@ class CoreExport Channel : public Extensible */ bool HasUser(User* user); - /** Creates a channel record and initialises it with default values - * @throw Nothing at present. - */ - Channel(InspIRCd* Instance); - /** Make src kick user from this channel with the given reason. * @param src The source of the kick * @param user The user being kicked (must be on this channel) @@ -374,14 +374,6 @@ class CoreExport Channel : public Extensible */ static Channel* JoinUser(InspIRCd* ServerInstance, User *user, const char* cn, bool override, const char* key, bool bursting, time_t TS = 0); - /* - * Create a channel record, and insert it into the hash. - * @param name The channel name - * @param ts The channel timestamp - * @return A pointer to the newly created Channel object. - */ - static Channel *CreateChannel(InspIRCd *ServerInstance, const std::string &name, time_t ts = 0); - /** Write to a channel, from a user, using va_args for text * @param user User whos details to prefix the line with * @param text A printf-style format string which builds the output line without prefix |