2025-07-13 18:33:40 +00:00
|
|
|
#include "TranslateUI.h"
|
|
|
|
#include <QtWidgets/QApplication>
|
2025-07-14 17:35:53 +00:00
|
|
|
#include <QDebug>
|
|
|
|
#include "TranslateBasic.h"
|
2025-07-17 16:17:39 +00:00
|
|
|
#include <cmath>
|
2025-08-10 09:02:18 +00:00
|
|
|
#include "WrapConfigs.h"
|
2025-07-13 18:33:40 +00:00
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
QApplication app(argc, argv);
|
|
|
|
|
2025-08-10 09:02:18 +00:00
|
|
|
auto core = std::make_shared<TranslateBasic>();
|
|
|
|
WrapConfigs w(core);
|
|
|
|
w.show();
|
2025-07-13 18:33:40 +00:00
|
|
|
|
|
|
|
return app.exec();
|
|
|
|
}
|