summaryrefslogtreecommitdiff
path: root/include/channels.h
diff options
context:
space:
mode:
authorrandomdan <randomdan@e03df62e-2008-0410-955e-edbf42e46eb7>2003-07-22 21:56:38 +0000
committerrandomdan <randomdan@e03df62e-2008-0410-955e-edbf42e46eb7>2003-07-22 21:56:38 +0000
commit61b45c935dbb50c280970c9f431fd1c7ef4eb680 (patch)
treeaf2d10b329c9ef362d97c884827dd1e0a11841b4 /include/channels.h
parente1cc6b33f4e5510f65d8cfeb62b0f31d567e1bbf (diff)
STL namespace fixes
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@176 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/channels.h')
-rw-r--r--include/channels.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/channels.h b/include/channels.h
index a800c73a9..b60ee6cad 100644
--- a/include/channels.h
+++ b/include/channels.h
@@ -53,15 +53,15 @@ class InviteItem : public HostItem
/** Holds a complete ban list
*/
-typedef vector<BanItem> BanList;
+typedef std::vector<BanItem> BanList;
/** Holds a complete exempt list
*/
-typedef vector<ExemptItem> ExemptList;
+typedef std::vector<ExemptItem> ExemptList;
/** Holds a complete invite list
*/
-typedef vector<InviteItem> InviteList;
+typedef std::vector<InviteItem> InviteList;
/** Holds all relevent information for a channel.
* This class represents a channel, and contains its name, modes, time created, topic, topic set time,
@@ -135,11 +135,11 @@ class chanrec : public classbase
/** Sets or unsets a custom mode in the channels info
*/
- SetCustomMode(char mode,bool mode_on);
+ void SetCustomMode(char mode,bool mode_on);
/** Sets or unsets the parameterrs for a custom mode in a channels info
*/
- SetCustomModeParam(char mode,char* parameter,bool mode_on);
+ void SetCustomModeParam(char mode,char* parameter,bool mode_on);
/** Creates a channel record and initialises it with default values
*/