[go: up one dir, main page]

Menu

[4cf102]: / language.h  Maximize  Restore  History

Download this file

25 lines (19 with data), 371 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef LANGUAGE_H
#define LANGUAGE_H
#include <QApplication>
#include <QTranslator>
#include <QStringList>
#include "settings.h"
#include "types.h"
class Languages: public QObject
{
Q_OBJECT
public:
Languages();
void initLanguages();
void setLanguage();
QStringList languageCodes;
StringHash codeToName;
StringHash nameToCode;
};
#endif