2016-08-23 18:08:17 +02:00
|
|
|
#include <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();
|
|
|
|
}
|