~ubuntu-branches/ubuntu/saucy/merkaartor/saucy

« back to all changes in this revision

Viewing changes to src/ImportExport/ImportExportKML.h

  • Committer: Bazaar Package Importer
  • Author(s): Bernd Zeimetz
  • Date: 2009-09-13 00:52:12 UTC
  • mto: (1.2.7 upstream) (0.1.3 upstream) (3.1.7 sid)
  • mto: This revision was merged to the branch mainline in revision 10.
  • Revision ID: james.westby@ubuntu.com-20090913005212-pjecal8zxm07x0fj
ImportĀ upstreamĀ versionĀ 0.14+svnfixes~20090912

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//
 
2
// C++ Interface: ImportExportKML
 
3
//
 
4
// Description: 
 
5
//
 
6
//
 
7
// Author: cbro <cbro@semperpax.com>, (C) 2008
 
8
//
 
9
// Copyright: See COPYING file that comes with this distribution
 
10
//
 
11
//
 
12
#ifndef ImportExportKML_H
 
13
#define ImportExportKML_H
 
14
 
 
15
#include <ImportExport/IImportExport.h>
 
16
 
 
17
class QDomDocument;
 
18
/**
 
19
        @author cbro <cbro@semperpax.com>
 
20
*/
 
21
class ImportExportKML : public IImportExport
 
22
{
 
23
public:
 
24
    ImportExportKML(MapDocument* doc);
 
25
 
 
26
    ~ImportExportKML();
 
27
 
 
28
        // import the  input
 
29
        virtual bool import(MapLayer* aLayer);
 
30
 
 
31
        //export
 
32
        virtual bool export_(const QList<MapFeature *>& featList);
 
33
};
 
34
 
 
35
#endif