loading globalMap into RAM

This commit is contained in:
Rafael 2016-04-23 21:01:00 +02:00
parent d60d9b8b72
commit 40eb28b65d
4 changed files with 23 additions and 1 deletions

View file

@ -20,6 +20,7 @@
#define GLOBALSTRING_H
#include <QString>
#include <QMap>
class GlobalString
{
@ -28,6 +29,7 @@ public:
static QString getString(QString valueStr, bool *ok = 0);
static QString getLanguageFile();
static QString getLanguage();
static QMap<QString, QString> getGlobalMap();
};
#endif // GLOBALSTRING_H