mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-06-05 11:24:17 +03:00
14 lines
321 B
C++
Executable File
14 lines
321 B
C++
Executable File
#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();
|
|
}
|