oden/third-party/vendor/ttf-parser/testing-tools/font-view/main.cpp
2024-03-08 11:03:01 -08:00

13 lines
174 B
C++

#include <QApplication>
#include "mainwindow.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}