diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-05-20 13:26:40 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-05-20 13:26:40 +0300 |
commit | 6bf4a5aa68afb7d95632880c001286f2a721e1f5 (patch) | |
tree | 3bfde7b41153e43b7057e92e37bdc87c38d503cb /src/net | |
parent | 0369cb5dc2e5dae4acdb0753c3b309ef874c96ae (diff) | |
download | plus-6bf4a5aa68afb7d95632880c001286f2a721e1f5.tar.gz plus-6bf4a5aa68afb7d95632880c001286f2a721e1f5.tar.bz2 plus-6bf4a5aa68afb7d95632880c001286f2a721e1f5.tar.xz plus-6bf4a5aa68afb7d95632880c001286f2a721e1f5.zip |
Move updatetype into separate file.
Diffstat (limited to 'src/net')
-rw-r--r-- | src/net/logindata.h | 12 | ||||
-rw-r--r-- | src/net/updatetype.h | 37 |
2 files changed, 40 insertions, 9 deletions
diff --git a/src/net/logindata.h b/src/net/logindata.h index 69dbfbb66..6e7c285c0 100644 --- a/src/net/logindata.h +++ b/src/net/logindata.h @@ -27,6 +27,8 @@ #include "utils/stringvector.h" +#include "net/updatetype.h" + #include <string> #include "localconsts.h" @@ -54,14 +56,6 @@ class LoginData final A_DELETE_COPY(LoginData) - enum UpdateType - { - Upd_Normal = 0, - Upd_Close = 1, - Upd_Skip = 2, - Upd_Custom = 4 - }; - std::string username; std::string password; std::string newPassword; @@ -88,7 +82,7 @@ class LoginData final newPassword.clear(); updateHost.clear(); updateHosts.clear(); - updateType = Upd_Normal; + updateType = UpdateType::Normal; email.clear(); captchaResponse.clear(); registerUrl.clear(); diff --git a/src/net/updatetype.h b/src/net/updatetype.h new file mode 100644 index 000000000..7f28058c4 --- /dev/null +++ b/src/net/updatetype.h @@ -0,0 +1,37 @@ +/* + * The ManaPlus Client + * Copyright (C) 2004-2009 The Mana World Development Team + * Copyright (C) 2009-2010 The Mana Developers + * Copyright (C) 2011-2014 The ManaPlus Developers + * + * This file is part of The ManaPlus Client. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef NET_UPDATETYPE_H +#define NET_UPDATETYPE_H + +namespace UpdateType +{ + enum Type + { + Normal = 0, + Close = 1, + Skip = 2, + Custom = 4 + }; +} // namespace UpdateType + +#endif // NET_UPDATETYPE_H |