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

« back to all changes in this revision

Viewing changes to plugins/gps_importer/qgsbabelformat.cpp

  • 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:
15
15
 *   (at your option) any later version.                                   *
16
16
 *                                                                         *
17
17
 ***************************************************************************/
18
 
/*  $Id: qgsbabelformat.cpp,v 1.2 2004/10/22 13:16:58 larsl Exp $ */
 
18
/*  $Id: qgsbabelformat.cpp,v 1.3 2005/02/15 15:38:52 larsl Exp $ */
19
19
 
20
20
#include "qgsbabelformat.h"
21
21
 
23
23
#include <qstring.h>
24
24
 
25
25
 
26
 
QgsBabelFormat::QgsBabelFormat() 
 
26
QgsBabelFormat::QgsBabelFormat(const QString& name) 
27
27
  : mSupportsImport(false), mSupportsExport(false), mSupportsWaypoints(false),
28
 
    mSupportsRoutes(false), mSupportsTracks(false) {
 
28
    mSupportsRoutes(false), mSupportsTracks(false), mName(name) {
29
29
  
30
30
}
31
31
 
32
32
 
33
33
const QString& QgsBabelFormat::name() const {
34
 
  static QString name = "";
35
 
  return name;
 
34
  return mName;
36
35
}
37
36
 
38
37