mirror of
https://github.com/martravi/wiiqt6.git
synced 2024-11-22 21:29:15 +01:00
411c42203d
* adjust U8 class for changed round-up macro. still needs to be verified git-svn-id: http://wiiqt.googlecode.com/svn/trunk@46 389f4c8b-5dfe-645f-db0e-df882bc27289
14 lines
273 B
C++
Executable File
14 lines
273 B
C++
Executable File
#include <QtGui/QApplication>
|
|
#include "nandwindow.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
Q_INIT_RESOURCE( rc );
|
|
|
|
QApplication a(argc, argv);
|
|
QApplication::setWindowIcon( QIcon( ":/icon.png" ) );
|
|
NandWindow w;
|
|
w.show();
|
|
return a.exec();
|
|
}
|