diff options
author | David Athay <ko2fan@gmail.com> | 2008-02-28 21:57:19 +0000 |
---|---|---|
committer | David Athay <ko2fan@gmail.com> | 2008-02-28 21:57:19 +0000 |
commit | 423e581faf19977c2797d2c90fc65730142ed6a4 (patch) | |
tree | 13c48519a74cc06b7e262f320c04bb8cd6a4e5ee | |
parent | 49c153eec0129fcb7afb651f1407a493e51134f6 (diff) | |
download | manaserv-423e581faf19977c2797d2c90fc65730142ed6a4.tar.gz manaserv-423e581faf19977c2797d2c90fc65730142ed6a4.tar.bz2 manaserv-423e581faf19977c2797d2c90fc65730142ed6a4.tar.xz manaserv-423e581faf19977c2797d2c90fc65730142ed6a4.zip |
Added placeholder function so that account server now compiles.
-rw-r--r-- | src/account-server/dalstorage.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/account-server/dalstorage.cpp b/src/account-server/dalstorage.cpp index e03c81ed..304a18bf 100644 --- a/src/account-server/dalstorage.cpp +++ b/src/account-server/dalstorage.cpp @@ -391,6 +391,15 @@ Character *DALStorage::getCharacter(int id, Account *owner) return getCharacterBySQL(sql.str(), owner); } +/** + * Gets a character by character name. + */ +Character *DALStorage::getCharacter(const std::string &name) +{ + // TODO: Get character, this most likely needs to find the account first. +} + + #if 0 /** * Return the list of all Emails addresses. |