mxe/src/qt-test.cpp

17 lines
267 B
C++
Raw Normal View History

/*
* This file is part of MXE. See LICENSE.md for licensing information.
*/
2010-01-22 23:07:21 +00:00
#include <QApplication>
2015-09-13 18:43:00 +01:00
#include "qt-test.hpp"
2010-01-22 23:07:21 +00:00
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
2015-09-13 18:43:00 +01:00
MainWindow w;
2010-01-22 23:07:21 +00:00
w.show();
a.aboutQt();
2010-01-22 23:07:21 +00:00
return a.exec();
}