mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
15 lines
448 B
C++
15 lines
448 B
C++
#include <qapplication.h>
|
|
#include "qgsmapserverexport.h"
|
|
int main( int argc, char **argv )
|
|
{
|
|
QApplication a( argc, argv );
|
|
// Set up the QSettings environment must be done after qapp is created
|
|
QCoreApplication::setOrganizationName("QuantumGIS");
|
|
QCoreApplication::setOrganizationDomain("qgis.org");
|
|
QCoreApplication::setApplicationName("qgis");
|
|
|
|
QgsMapserverExport *mse = new QgsMapserverExport();
|
|
mse->show();
|
|
return a.exec();
|
|
}
|