mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-12 13:19:03 +01:00
15 lines
221 B
C++
15 lines
221 B
C++
|
// Thomas Nagy, 2011
|
||
|
|
||
|
#include <QApplication>
|
||
|
|
||
|
#include "ui_but.h"
|
||
|
|
||
|
int main(int argc, char *argv[])
|
||
|
{
|
||
|
QApplication app(argc, argv);
|
||
|
QWidget window;
|
||
|
Ui::Form ui;
|
||
|
ui.setupUi(&window);
|
||
|
return app.exec();
|
||
|
}
|