diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/channels.h | 6 | ||||
-rw-r--r-- | include/users.h | 6 |
2 files changed, 10 insertions, 2 deletions
diff --git a/include/channels.h b/include/channels.h index 2445d1188..76b604668 100644 --- a/include/channels.h +++ b/include/channels.h @@ -87,6 +87,11 @@ typedef std::vector<InviteItem> InviteList; */ typedef std::map<userrec*,userrec*> CUList; +/** Shorthand for CUList::iterator + */ +typedef CUList::iterator CUListIter; +typedef CUList::const_iterator CUListConstIter; + /** A list of custom modes parameters on a channel */ typedef std::map<char,char*> CustomModeList; @@ -286,4 +291,3 @@ void kick_channel(userrec *src,userrec *user, chanrec *Ptr, char* reason); void server_kick_channel(userrec* user, chanrec* Ptr, char* reason, bool triggerevents); #endif - diff --git a/include/users.h b/include/users.h index a5cba44b6..81ab1c844 100644 --- a/include/users.h +++ b/include/users.h @@ -109,6 +109,10 @@ typedef std::vector<Invited> InvitedList; */ typedef std::vector<ConnectClass> ClassVector; +/** Typedef for the list of user-channel records for a user + */ +typedef std::vector<ucrec*> UserChanList; + /** Holds all information about a user * This class stores all information about a user connected to the irc server. Everything about a * connection is stored here primarily, from the user's socket ID (file descriptor) through to the @@ -160,7 +164,7 @@ class userrec : public connection */ char modebits; - std::vector<ucrec*> chans; + UserChanList chans; /** The server the user is connected to. */ |