]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/account.h
ce049ecd0ec9489025a3086f1f94b4d85cc73f4b
[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://www.inspircd.org/wiki/index.php/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