mxe/src/qt-test.cpp

16 lines
334 B
C++
Raw Normal View History

2010-01-22 23:07:21 +00:00
/* This file is part of mingw-cross-env. */
/* See doc/index.html for further information. */
2010-01-22 23:07:21 +00:00
#include <QtGui/QApplication>
#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();
return a.exec();
}