diff options
Diffstat (limited to 'src/resources/db/textdb.h')
-rw-r--r-- | src/resources/db/textdb.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/resources/db/textdb.h b/src/resources/db/textdb.h index 977b49ec6..c61bb0c7a 100644 --- a/src/resources/db/textdb.h +++ b/src/resources/db/textdb.h @@ -23,7 +23,7 @@ #include "enums/simpletypes/skiperror.h" -#include <string> +#include "utils/stringvector.h" #include "localconsts.h" @@ -34,6 +34,10 @@ namespace TextDb void loadXmlFile(const std::string &fileName, const SkipError skipError); + std::string getByIndex(const int index); + + const StringVect &getTexts(); + void unload(); } // namespace LanguageDB |