]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/account.h
Replace std::deque with std::vector in spanningtree and related modules
[user/henk/code/inspircd.git] / src / modules / account.h
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
6  * See: http://wiki.inspircd.org/Credits
7  *
8  * This program is free but copyrighted software; see
9  *          the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 #ifndef __ACCOUNT_H__
15 #define __ACCOUNT_H__
16
17 #include <map>
18 #include <string>
19
20 class AccountData : public classbase
21 {
22  public:
23         User* user;
24         std::string account;
25 };
26
27 #endif