mxe/src/qt-test.cpp

19 lines
310 B
C++
Raw Normal View History

/*
* This file is part of MXE.
2012-03-29 11:14:15 +01:00
* See index.html for further information.
*/
2010-01-22 23:07:21 +00:00
#include <QApplication>
2010-01-22 23:07:21 +00:00
#include "ui_qt-test.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
QMainWindow w;
Ui::MainWindow u;
u.setupUi(&w);
w.show();
a.aboutQt();
2010-01-22 23:07:21 +00:00
return a.exec();
}