~ubuntu-branches/ubuntu/warty/qgis/warty

« back to all changes in this revision

Viewing changes to plugins/gps_importer/main.cpp

  • Committer: Bazaar Package Importer
  • Author(s): LaMont Jones
  • Date: 2004-08-24 13:34:17 UTC
  • Revision ID: james.westby@ubuntu.com-20040824133417-yugh3agyi5o74m29
Tags: upstream-0.3.0
ImportĀ upstreamĀ versionĀ 0.3.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifdef HAVE_CONFIG_H
 
2
#include <qgsconfig.h>
 
3
#endif
 
4
 
 
5
#include <stdio.h>
 
6
#include <stdlib.h>
 
7
#include "plugingui.h"
 
8
#include <qapplication.h>
 
9
 
 
10
int main(int argc, char *argv[])
 
11
{
 
12
  QApplication a(argc, argv);
 
13
 
 
14
  PluginGui *myPluginGui=new PluginGui();
 
15
  a.setMainWidget(myPluginGui);
 
16
  myPluginGui->show();
 
17
  
 
18
 
 
19
  return a.exec();
 
20
  
 
21
  
 
22
  return EXIT_SUCCESS;
 
23
}