mirror of
https://github.com/qgis/QGIS.git
synced 2025-03-01 00:46:20 -05:00
12 lines
242 B
C++
12 lines
242 B
C++
#include <qapplication.h>
|
|
#include "qgsspit.h"
|
|
|
|
int main( int argc, char ** argv )
|
|
{
|
|
QApplication a( argc, argv );
|
|
QgsSpit w;
|
|
w.show();
|
|
a.connect( &a, SIGNAL( lastWindowClosed() ), &a, SLOT( quit() ) );
|
|
return a.exec();
|
|
}
|