diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-05-12 00:18:57 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-05-12 00:51:22 +0300 |
commit | d5a00a320043f5782ebc489285c89943b667e094 (patch) | |
tree | eb64f3b1f81f7ba2a3c7ff9e02ad329ef21abb83 /src/resources/db/emotedb.h | |
parent | 742b2a22bdcb69e6f615a284065ba2696e7bc261 (diff) | |
download | mv-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/emotedb.h')
-rw-r--r-- | src/resources/db/emotedb.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/resources/db/emotedb.h b/src/resources/db/emotedb.h index 09401103c..6d726de39 100644 --- a/src/resources/db/emotedb.h +++ b/src/resources/db/emotedb.h @@ -22,6 +22,8 @@ #ifndef RESOURCES_DB_EMOTEDB_H #define RESOURCES_DB_EMOTEDB_H +#include "enums/simpletypes/skiperror.h" + #include <map> #include <string> @@ -40,9 +42,11 @@ namespace EmoteDB { void load(); - void loadXmlFile(const std::string &fileName); + void loadXmlFile(const std::string &fileName, + const SkipError skipError); - void loadSpecialXmlFile(const std::string &fileName); + void loadSpecialXmlFile(const std::string &fileName, + const SkipError skipError); void unload(); |