1
0
mirror of https://gitee.com/drabel/LibQQt.git synced 2025-02-10 10:28:30 +08:00

27 lines
356 B
C
Raw Normal View History

2017-09-05 18:07:05 +08:00
#ifndef QQTAPP_H
#define QQTAPP_H
#include <QApplication>
class QQTApp : public QApplication
{
Q_OBJECT
public:
explicit QQTApp(int &argc, char **argv);
virtual ~QQTApp();
void setTheme();
void setLanguage();
signals:
public slots:
void slotUPanAutoRun(int status);
private:
QTranslator* language;
};
#endif // QQTAPP_H