You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
501 B
C++
27 lines
501 B
C++
// Thomas Nagy, 2016 (ita)
|
|
|
|
#include <QApplication>
|
|
//#include <QString>
|
|
//#include "mainwindow.h"
|
|
#include "ui_but.h"
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
Q_INIT_RESOURCE(res);
|
|
QApplication app(argc, argv);
|
|
QWidget window;
|
|
Ui::Form ui;
|
|
ui.setupUi(&window);
|
|
window.show();
|
|
return app.exec();
|
|
/*
|
|
MainWindow window;
|
|
if (argc == 2)
|
|
window.openFile(argv[1]);
|
|
else
|
|
window.openFile(":/files/bubbles.svg");
|
|
window.show();
|
|
return app.exec();
|
|
*/
|
|
}
|