nodeeditor_doxy
src/ExampleApp/main.cpp
Go to the documentation of this file.
00001 #include <QtGui>
00002 
00003 #include "mainwindow.h"
00004 
00005 int main(int argv, char *args[])
00006 {
00007     Q_INIT_RESOURCE(dwNodeEditor1);
00008 
00009     QApplication app(argv, args);
00010     MainWindow mainWindow;
00011     mainWindow.setGeometry(100, 100, 800, 500);
00012     mainWindow.show();
00013 
00014     return app.exec();
00015 }