diff options
Diffstat (limited to 'src/modules/account.h')
-rw-r--r-- | src/modules/account.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/modules/account.h b/src/modules/account.h new file mode 100644 index 000000000..833fe7aee --- /dev/null +++ b/src/modules/account.h @@ -0,0 +1,27 @@ +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * InspIRCd: (C) 2002-2008 InspIRCd Development Team + * See: http://www.inspircd.org/wiki/index.php/Credits + * + * This program is free but copyrighted software; see + * the file COPYING for details. + * + * --------------------------------------------------- + */ + +#ifndef __ACCOUNT_H__ +#define __ACCOUNT_H__ + +#include <map> +#include <string> + +class AccountData +{ + public: + User* user; + std::string account; +}; + +#endif |