From Don Liech, Qt/OSG integration example

This commit is contained in:
Robert Osfield
2009-06-19 11:31:15 +00:00
parent d0916e63c6
commit 9d792c279b
15 changed files with 1377 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
#include "testMainWin.h"
testMainWin::testMainWin()
: QMainWindow()
{
ui.setupUi( this );
connect ( ui.actionExit, SIGNAL(activated(void)), this, SLOT(close()) );
}