mirror of
https://gitee.com/drabel/LibQQt.git
synced 2025-01-04 10:18:44 +08:00
17 lines
246 B
C++
17 lines
246 B
C++
#include "qqtapp.h"
|
|
#include "qqt-qt.h"
|
|
#include "qqtversion.h"
|
|
#include "qqtcore.h"
|
|
#include "qqtgui.h"
|
|
#include "qqtwindow.h"
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
QQTApp a(argc, argv);
|
|
|
|
QQTWindow w;
|
|
w.show();
|
|
|
|
return a.exec();
|
|
}
|