3 #include <qapplication.h>
4 #include "hxx2salome.h"
6 int main( int argc, char ** argv )
8 QApplication a( argc, argv );
10 HXX2Salome *mw = new HXX2Salome();
11 mw->setCaption( "Salome interface to C++ component generator" );
12 a.setMainWidget( mw );
15 a.connect( &a, SIGNAL( lastWindowClosed() ), &a, SLOT( quit() ) );
16 int result = a.exec();