summaryrefslogtreecommitdiff
path: root/src/account-server/account.hpp
diff options
context:
space:
mode:
authorGuillaume Melquiond <guillaume.melquiond@gmail.com>2007-08-29 15:36:33 +0000
committerGuillaume Melquiond <guillaume.melquiond@gmail.com>2007-08-29 15:36:33 +0000
commiteb905a28219dc7af2669b8b0db8415c3e8c4ab23 (patch)
tree0f70ec07541e8448808ba17417e168fec81c848d /src/account-server/account.hpp
parent26b3e1094d85ef89c90376688000836c8ee43979 (diff)
downloadmanaserv-eb905a28219dc7af2669b8b0db8415c3e8c4ab23.tar.gz
manaserv-eb905a28219dc7af2669b8b0db8415c3e8c4ab23.tar.bz2
manaserv-eb905a28219dc7af2669b8b0db8415c3e8c4ab23.tar.xz
manaserv-eb905a28219dc7af2669b8b0db8415c3e8c4ab23.zip
Fixed handling of account levels.
Diffstat (limited to 'src/account-server/account.hpp')
-rw-r--r--src/account-server/account.hpp15
1 files changed, 1 insertions, 14 deletions
diff --git a/src/account-server/account.hpp b/src/account-server/account.hpp
index 6b1cf8a2..7c5b5703 100644
--- a/src/account-server/account.hpp
+++ b/src/account-server/account.hpp
@@ -56,24 +56,11 @@ class Account
Account(const std::string& name,
const std::string& password,
const std::string& email,
+ int level,
int id = -1);
/**
- * Constructor with initial account info.
- *
- * @param name the user name.
- * @param password the user password.
- * @param email the user email.
- * @param characters the characters.
- */
- Account(const std::string& name,
- const std::string& password,
- const std::string& email,
- const Characters& characters);
-
-
- /**
* Destructor.
*/
~Account();