summaryrefslogtreecommitdiff
path: root/include/channels.h
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-05-12 19:09:42 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-05-12 19:09:42 +0000
commit194838af39aa5fc823571afe9d61b2453573a32d (patch)
treeb532e27e75d95dcfa56d83ef70924e71ea247464 /include/channels.h
parent2cd3b57fe08b6cdae5d99021252898dedd3a0650 (diff)
Changed the type of struct whowas records are stored in (no need to waste a big heavy userrec)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1369 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/channels.h')
-rw-r--r--include/channels.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/include/channels.h b/include/channels.h
index ac1ee0385..7df2d665e 100644
--- a/include/channels.h
+++ b/include/channels.h
@@ -168,22 +168,6 @@ class chanrec : public Extensible
*/
std::string GetModeParameter(char mode);
- /** Increment the channel "user counter"
- * The channel user counter is a reference counter which
- * holds the number of users on the channel. If it decremented
- * to 0 then the channel is removed from the system.
- */
- void IncUserCounter();
-
- /** Decrement the channel "user counter"
- * The channel user counter is a reference counter which
- * holds the number of users on the channel. If it decremented
- * to 0 then the channel is removed from the system.
- * Modules may alter the reference count to hold channels open
- * which have no users and would normally be deleted once empty.
- */
- void DecUserCounter();
-
/** Obtain the channel "user counter"
* This returns the channel reference counter, which is initialized
* to 0 when the channel is created and incremented/decremented