diff options
Diffstat (limited to 'include/users.h')
-rw-r--r-- | include/users.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/users.h b/include/users.h index 884aaceeb..a898d5813 100644 --- a/include/users.h +++ b/include/users.h @@ -196,19 +196,19 @@ 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; +CoreExport 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; +CoreExport typedef std::vector<reference<ConnectClass> > ClassVector; /** Typedef for the list of user-channel records for a user */ -typedef std::set<Channel*> UserChanList; +CoreExport typedef std::set<Channel*> UserChanList; /** Shorthand for an iterator into a UserChanList */ -typedef UserChanList::iterator UCListIter; +CoreExport typedef UserChanList::iterator UCListIter; /* Required forward declaration */ |