mirror of
https://github.com/martravi/wiiqt6.git
synced 2024-11-21 21:19:15 +01:00
644aa141bb
git-svn-id: http://wiiqt.googlecode.com/svn/trunk@48 389f4c8b-5dfe-645f-db0e-df882bc27289
13 lines
200 B
C++
13 lines
200 B
C++
#include <QtGui/QApplication>
|
|
#include "thpwindow.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QApplication a(argc, argv);
|
|
Q_INIT_RESOURCE( rc );
|
|
ThpWindow w;
|
|
w.show();
|
|
|
|
return a.exec();
|
|
}
|