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