mirror of
https://github.com/martravi/wiiqt.git
synced 2024-11-05 09:05:06 +01:00
d5d094862d
* adjust U8 class for changed round-up macro. still needs to be verified
14 lines
256 B
C++
14 lines
256 B
C++
#include <QtGui/QApplication>
|
|
#include "mainwindow.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
Q_INIT_RESOURCE( rc );
|
|
QApplication a( argc, argv );
|
|
QApplication::setWindowIcon( QIcon( ":/icon.png" ) );
|
|
MainWindow w;
|
|
w.show();
|
|
|
|
return a.exec();
|
|
}
|