~ubuntu-branches/ubuntu/quantal/qgis/quantal

« back to all changes in this revision

Viewing changes to plugins/gps_importer/qgsgpsplugingui.h

  • Committer: Bazaar Package Importer
  • Author(s): Steve Halasz
  • Date: 2005-11-05 16:04:45 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20051105160445-l0g4isz5bc9yehet
Tags: 0.7.4-1
* New upstream release
* Build GRASS support in qgis-plugin-grass package (Closes: #248649)

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
 *   (at your option) any later version.                                   *
14
14
 *                                                                         *
15
15
 ***************************************************************************/
16
 
 /*  $Id: qgsgpsplugingui.h,v 1.1 2004/10/22 13:16:58 larsl Exp $ */
 
16
 /*  $Id: qgsgpsplugingui.h,v 1.2 2005/02/15 15:38:52 larsl Exp $ */
17
17
 
18
18
#ifndef QGSGPSPLUGINGUI_H
19
19
#define QGSGPSPLUGINGUI_H
21
21
#include "../../src/qgsvectorlayer.h"
22
22
#include "qgsgpspluginguibase.h"
23
23
#include "qgsbabelformat.h"
 
24
#include "qgsgpsdevice.h"
24
25
 
25
26
#include <vector>
26
27
 
34
35
{
35
36
  Q_OBJECT
36
37
public:
37
 
  QgsGPSPluginGui(const BabelMap& importers, BabelMap& devices, 
 
38
  QgsGPSPluginGui(const BabelMap& importers, 
 
39
                  std::map<QString, QgsGPSDevice*>& devices, 
38
40
                  std::vector<QgsVectorLayer*> gpxMapLayers, QWidget* parent, 
39
41
                  const char* name , bool modal , WFlags);
40
42
  ~QgsGPSPluginGui();
83
85
  
84
86
  std::vector<QgsVectorLayer*> mGPXLayers;
85
87
  const BabelMap& mImporters;
86
 
  BabelMap& mDevices;
 
88
  std::map<QString, QgsGPSDevice*>& mDevices;
87
89
  QString mBabelFilter;
88
90
  QString mImpFormat;
89
91
};