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

« back to all changes in this revision

Viewing changes to src/plugins/runner/nominatim-reversegeocoding/NominatimReverseGeocodingPlugin.h

  • Committer: Package Import Robot
  • Author(s): Jonathan Kolberg
  • Date: 2012-05-26 15:14:42 UTC
  • mfrom: (1.1.12)
  • Revision ID: package-import@ubuntu.com-20120526151442-qihwzeki8qlr9ip4
Tags: 4:4.8.80-0ubuntu1
New upstream beta release

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 2010      Dennis Nienhüser <earthwings@gentoo.org>
 
9
// Copyright 2012      Bernhard Beschow <bbeschow@cs.tu-berlin.de>
 
10
//
 
11
 
 
12
 
 
13
#ifndef MARBLE_NOMINATIMREVERSEGEOCODINGPLUGIN_H
 
14
#define MARBLE_NOMINATIMREVERSEGEOCODINGPLUGIN_H
 
15
 
 
16
#include "ReverseGeocodingRunnerPlugin.h"
 
17
 
 
18
namespace Marble
 
19
{
 
20
 
 
21
class NominatimPlugin : public ReverseGeocodingRunnerPlugin
 
22
{
 
23
    Q_OBJECT
 
24
    Q_INTERFACES( Marble::ReverseGeocodingRunnerPlugin )
 
25
 
 
26
public:
 
27
    explicit NominatimPlugin( QObject *parent = 0 );
 
28
 
 
29
    QString name() const;
 
30
 
 
31
    QString guiString() const;
 
32
 
 
33
    QString nameId() const;
 
34
 
 
35
    QString version() const;
 
36
 
 
37
    QString description() const;
 
38
 
 
39
    QString copyrightYears() const;
 
40
 
 
41
    QList<PluginAuthor> pluginAuthors() const;
 
42
 
 
43
    virtual MarbleAbstractRunner* newRunner() const;
 
44
};
 
45
 
 
46
}
 
47
 
 
48
#endif