PowerDesignerX/QtADS/examples/hideshow/main.cpp

12 lines
196 B
C++
Raw Normal View History

2024-07-18 12:18:18 +08:00
#include <QApplication>
#include "../../examples/hideshow/MainWindow.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}