~ubuntu-branches/ubuntu/quantal/marble/quantal

« back to all changes in this revision

Viewing changes to src/lib/geodata/handlers/kml/KmlLodTagHandler.h

  • Committer: Bazaar Package Importer
  • Author(s): Philip Muškovac
  • Date: 2011-07-11 15:43:02 UTC
  • Revision ID: james.westby@ubuntu.com-20110711154302-lq69ftcx125g1jx5
Tags: upstream-4.6.90+repack
Import upstream version 4.6.90+repack

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 2009      Bastian Holst <bastianholst@gmx.de>
 
9
//
 
10
 
 
11
#ifndef MARBLE_KML_KMLLODTAGHANDLER_H
 
12
#define MARBLE_KML_KMLLODTAGHANDLER_H
 
13
 
 
14
#include "GeoTagHandler.h"
 
15
 
 
16
namespace Marble
 
17
{
 
18
namespace kml
 
19
{
 
20
 
 
21
class KmlLodTagHandler : public GeoTagHandler
 
22
{
 
23
 public:
 
24
    virtual GeoNode* parse( GeoParser& ) const;
 
25
};
 
26
 
 
27
}
 
28
}
 
29
 
 
30
#endif