TextPresents/QtNovels/main.cpp

11 lines
177 B
C++
Raw Normal View History

2024-02-18 13:45:55 +00:00
#include "qtnovels.h"
#include <QtWidgets/QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
QtNovels w;
w.show();
return a.exec();
}