diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-03-21 19:42:08 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-03-21 19:42:08 +0000 |
commit | dde67b9765bc485d807f181bba108c00f4c44dba (patch) | |
tree | 99aa38a52b8fc6c94ad05b2087d34456377d4f5f /src/modules/account.h | |
parent | e541d870345bd0f7066049a17ddc497b603e7f04 (diff) |
Add capability for m_services_account to broadcast login events, with the user who is logging in and their login name
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9149 e03df62e-2008-0410-955e-edbf42e46eb7
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 |