New project structure

Load translation file in the executable.
This commit is contained in:
wh201906
2022-03-01 11:13:07 +08:00
parent b319f9fbe1
commit f86cba8d56
41 changed files with 221 additions and 155 deletions
+14
View File
@@ -0,0 +1,14 @@
#include "t55xxtab.h"
#include "ui_t55xxtab.h"
T55xxTab::T55xxTab(QWidget *parent) :
QWidget(parent),
ui(new Ui::T55xxTab)
{
ui->setupUi(this);
}
T55xxTab::~T55xxTab()
{
delete ui;
}