font-demo/dtk-font/main.cpp
zty199 77a4b4aace Upload project files
Upload dtk-font and qt-font demo project files and build script.
2020-10-23 01:33:51 +08:00

16 lines
216 B
C++

#include "mainwindow.h"
#include <DApplication>
int main(int argc, char *argv[])
{
DApplication a(argc, argv);
a.loadTranslator(); // 加载翻译
MainWindow w;
w.show();
return a.exec();
}