~ubuntu-branches/ubuntu/wily/marble/wily-proposed

« back to all changes in this revision

Viewing changes to src/lib/marble/geodata/writers/kml/KmlUpdateTagWriter.h

  • Committer: Package Import Robot
  • Author(s): Scarlett Clark, Jonathan Riddell, Scarlett Clark
  • Date: 2014-07-24 23:38:32 UTC
  • mfrom: (1.5.2)
  • Revision ID: package-import@ubuntu.com-20140724233832-7v4421t4khrhw487
Tags: 4:4.13.90-0ubuntu1
[ Jonathan Riddell ]
* Switch to libmarblewidget19 for new soversion

[ Scarlett Clark ]
* New upstream beta release
* Update: do_not_install_private_headers. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//
 
2
// This file is part of the Marble Virtual Globe.
 
3
//
 
4
// This program is free software licensed under the GNU LGPL. You can
 
5
// find a copy of this license in LICENSE.txt in the top directory of
 
6
// the source code.
 
7
//
 
8
// Copyright 2014      Marek Hakala <hakala.marek@gmail.com>
 
9
//
 
10
 
 
11
#ifndef MARBLE_KMLUPDATETAGWRITER_H
 
12
#define MARBLE_KMLUPDATETAGWRITER_H
 
13
 
 
14
#include "GeoTagWriter.h"
 
15
 
 
16
namespace Marble
 
17
{
 
18
 
 
19
class KmlUpdateTagWriter : public GeoTagWriter
 
20
{
 
21
public:
 
22
    virtual bool write( const GeoNode *node, GeoWriter& writer ) const;
 
23
 
 
24
};
 
25
 
 
26
}
 
27
#endif