mirror of
https://gitlab.com/eql/EQL5.git
synced 2025-12-06 02:30:31 -08:00
14 lines
253 B
C++
14 lines
253 B
C++
#include <QApplication>
|
|
#include <QWidget>
|
|
#include "qt_application.h"
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
QApplication qapp(argc, argv);
|
|
|
|
MainWindow window;
|
|
window.setGeometry(50, 50, 500, 300);
|
|
window.show();
|
|
|
|
return qapp.exec();
|
|
}
|