summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-05-19 15:57:00 +0300
committerAndrei Karas <akaras@inbox.ru>2014-05-19 15:57:00 +0300
commit0fd434e3102a5aad5e6f24cf384f03c527ce7c04 (patch)
tree2a84dbf3c2b9d277696c7986ade9db8f2254c575
parent2344f04e853234a762b545bad44a60209d54677f (diff)
downloadplus-0fd434e3102a5aad5e6f24cf384f03c527ce7c04.tar.gz
plus-0fd434e3102a5aad5e6f24cf384f03c527ce7c04.tar.bz2
plus-0fd434e3102a5aad5e6f24cf384f03c527ce7c04.tar.xz
plus-0fd434e3102a5aad5e6f24cf384f03c527ce7c04.zip
Move itemdb stat into separate file.
-rw-r--r--src/CMakeLists.txt1
-rw-r--r--src/Makefile.am1
-rw-r--r--src/resources/db/itemdb.h14
-rw-r--r--src/resources/db/itemdbstat.h48
4 files changed, 52 insertions, 12 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 04aeae206..471cac4da 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -552,6 +552,7 @@ SET(SRCS
resources/imagewriter.h
resources/db/itemdb.cpp
resources/db/itemdb.h
+ resources/db/itemdbstat.h
resources/iteminfo.h
resources/iteminfo.cpp
resources/itemslot.h
diff --git a/src/Makefile.am b/src/Makefile.am
index ed3268b23..5b9099e8f 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -661,6 +661,7 @@ manaplus_SOURCES += gui/widgets/avatarlistbox.cpp \
resources/imagewriter.h \
resources/db/itemdb.cpp \
resources/db/itemdb.h \
+ resources/db/itemdbstat.h \
resources/iteminfo.h \
resources/iteminfo.cpp \
resources/itemslot.h \
diff --git a/src/resources/db/itemdb.h b/src/resources/db/itemdb.h
index 8a113cf6c..5328ecc59 100644
--- a/src/resources/db/itemdb.h
+++ b/src/resources/db/itemdb.h
@@ -25,6 +25,8 @@
#include "utils/stringvector.h"
+#include "resources/db/itemdbstat.h"
+
#include <map>
#include "localconsts.h"
@@ -57,18 +59,6 @@ namespace ItemDB
int getTagId(const std::string &tagName) A_WARN_UNUSED;
- struct Stat
- {
- Stat(const std::string &tag0,
- const std::string &format0) :
- tag(tag0),
- format(format0)
- {}
-
- std::string tag;
- std::string format;
- };
-
void setStatsList(const std::vector<Stat> &stats);
} // namespace ItemDB
diff --git a/src/resources/db/itemdbstat.h b/src/resources/db/itemdbstat.h
new file mode 100644
index 000000000..3b5d50bb5
--- /dev/null
+++ b/src/resources/db/itemdbstat.h
@@ -0,0 +1,48 @@
+/*
+ * 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 RESOURCES_DB_ITEMDBSTAT_H
+#define RESOURCES_DB_ITEMDBSTAT_H
+
+#include <string>
+
+#include "localconsts.h"
+
+/**
+ * Item information database.
+ */
+namespace ItemDB
+{
+ struct Stat final
+ {
+ Stat(const std::string &tag0,
+ const std::string &format0) :
+ tag(tag0),
+ format(format0)
+ {}
+
+ std::string tag;
+ std::string format;
+ };
+} // namespace ItemDB
+
+#endif // RESOURCES_DB_ITEMDBSTAT_H