diff options
Diffstat (limited to 'include/users.h')
-rw-r--r-- | include/users.h | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/include/users.h b/include/users.h index 5e75414a4..de69f6383 100644 --- a/include/users.h +++ b/include/users.h @@ -56,12 +56,6 @@ enum RegistrationState { REG_ALL = 7 /* REG_NICKUSER plus next bit along */ }; -/* Required forward declaration */ -class Channel; -class UserResolver; -class ConfigTag; -class OperInfo; - /** Holds information relevent to <connect allow> and <connect deny> tags in the config file. */ struct CoreExport ConnectClass : public refcountbase @@ -208,26 +202,6 @@ struct CoreExport ConnectClass : public refcountbase } }; -/** Holds a complete list of all channels to which a user has been invited and has not yet joined, and the time at which they'll expire. - */ -typedef std::vector< std::pair<irc::string, time_t> > InvitedList; - -/** Holds a complete list of all allow and deny tags from the configuration file (connection classes) - */ -typedef std::vector<reference<ConnectClass> > ClassVector; - -/** Typedef for the list of user-channel records for a user - */ -typedef std::set<Channel*> UserChanList; - -/** Shorthand for an iterator into a UserChanList - */ -typedef UserChanList::iterator UCListIter; - -/* Required forward declaration - */ -class User; - /** 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 |