1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00
qTox/src/translator.h
2015-06-05 12:26:04 +02:00

17 lines
259 B
C++

#ifndef TRANSLATOR_H
#define TRANSLATOR_H
class QTranslator;
class Translator
{
public:
/// Loads the translations according to the settings or locale
static void translate();
private:
static QTranslator* translator;
};
#endif // TRANSLATOR_H