summaryrefslogtreecommitdiff
path: root/src/resources/db/itemdb.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-05-12 00:18:57 +0300
committerAndrei Karas <akaras@inbox.ru>2016-05-12 00:51:22 +0300
commitd5a00a320043f5782ebc489285c89943b667e094 (patch)
treeeb64f3b1f81f7ba2a3c7ff9e02ad329ef21abb83 /src/resources/db/itemdb.h
parent742b2a22bdcb69e6f615a284065ba2696e7bc261 (diff)
downloadmv-d5a00a320043f5782ebc489285c89943b667e094.tar.gz
mv-d5a00a320043f5782ebc489285c89943b667e094.tar.bz2
mv-d5a00a320043f5782ebc489285c89943b667e094.tar.xz
mv-d5a00a320043f5782ebc489285c89943b667e094.zip
Add skipError parameter to loadXml functions.
This allow not show errors for some not main xml files.
Diffstat (limited to 'src/resources/db/itemdb.h')
-rw-r--r--src/resources/db/itemdb.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/resources/db/itemdb.h b/src/resources/db/itemdb.h
index e855c80ca..d8706ef31 100644
--- a/src/resources/db/itemdb.h
+++ b/src/resources/db/itemdb.h
@@ -23,6 +23,8 @@
#ifndef RESOURCES_DB_ITEMDB_H
#define RESOURCES_DB_ITEMDB_H
+#include "enums/simpletypes/skiperror.h"
+
#include "utils/stringvector.h"
#include <map>
@@ -45,7 +47,9 @@ namespace ItemDB
void unload();
- void loadXmlFile(const std::string &fileName, int &tagNum);
+ void loadXmlFile(const std::string &fileName,
+ int &tagNum,
+ const SkipError skipError);
const StringVect &getTags();