diff options
Diffstat (limited to 'src/resources/db/petdb.h')
-rw-r--r-- | src/resources/db/petdb.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/resources/db/petdb.h b/src/resources/db/petdb.h index e3ed9a7da..75175f5c5 100644 --- a/src/resources/db/petdb.h +++ b/src/resources/db/petdb.h @@ -23,6 +23,8 @@ #ifndef RESOURCES_DB_PETDB_H #define RESOURCES_DB_PETDB_H +#include <string> + #include "localconsts.h" class BeingInfo; @@ -31,6 +33,8 @@ namespace PETDB { void load(); + void loadXmlFile(const std::string &fileName); + void unload(); BeingInfo *get(const int id) A_WARN_UNUSED; |