Engauge Digitizer  2
TranslatorContainer.h
1 #ifndef TRANSLATOR_CONTAINER_H
2 #define TRANSLATOR_CONTAINER_H
3 
4 class QApplication;
5 class QTranslator;
6 
9 {
10  public:
12  TranslatorContainer(QApplication &app);
13 
14  private:
16 
17  // Translator for generic strings, like buttons in QWizard pages (which are inaccessible through *.tm files
18  QTranslator *m_translatorGeneric;
19 
20  // Translator for Engauge-specific strings, which are accessible through *.tm files
21  QTranslator *m_translatorEngauge;
22 };
23 
24 #endif // TRANSLATOR_CONTAINER_H
Class that stores QTranslator objects for the duration of application execution.