2010-12-08 08:26:18 +01:00
|
|
|
#include <QtGui/QApplication>
|
|
|
|
#include "nandwindow.h"
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
2010-12-11 11:12:50 +01:00
|
|
|
Q_INIT_RESOURCE( rc );
|
|
|
|
|
2010-12-08 08:26:18 +01:00
|
|
|
QApplication a(argc, argv);
|
|
|
|
NandWindow w;
|
|
|
|
w.show();
|
|
|
|
return a.exec();
|
|
|
|
}
|