mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-26 00:02:08 -05:00
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@1072 c8812cc2-4d05-0410-92ff-de0c093fc19c
24 lines
358 B
C++
24 lines
358 B
C++
#ifdef HAVE_CONFIG_H
|
|
#include <qgsconfig.h>
|
|
#endif
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include "plugingui.h"
|
|
#include <qapplication.h>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QApplication a(argc, argv);
|
|
|
|
PluginGui *myPluginGui=new PluginGui();
|
|
a.setMainWidget(myPluginGui);
|
|
myPluginGui->show();
|
|
|
|
|
|
return a.exec();
|
|
|
|
|
|
return EXIT_SUCCESS;
|
|
}
|