mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-04 13:13:25 +03:00
0021189: Clean up KAS:dev:ros and Products
Removal of VoxelClient VoxelDemo sample is redesigned so that it doesn't require compilation of OpenGl classes. It refers to TKOpenGl.dll as to an external library. Some minor bugs are fixed in OCAF and Viewer 3d standard MFC samples
This commit is contained in:
13
samples/qt/VoxelDemo/src/Main.cpp
Normal file
13
samples/qt/VoxelDemo/src/Main.cpp
Normal file
@@ -0,0 +1,13 @@
|
||||
#include <qapplication.h>
|
||||
#include "application.h"
|
||||
|
||||
int main( int argc, char ** argv )
|
||||
{
|
||||
QApplication a( argc, argv );
|
||||
|
||||
Application *w = new Application();
|
||||
w->setWindowTitle( "Voxel demo-application" );
|
||||
w->show();
|
||||
a.connect( &a, SIGNAL(lastWindowClosed()), &a, SLOT(quit()) );
|
||||
return a.exec();
|
||||
}
|
Reference in New Issue
Block a user