Marble

ParseRunnerPlugin.cpp
1 // SPDX-License-Identifier: LGPL-2.1-or-later
2 //
3 // SPDX-FileCopyrightText: 2010 Dennis Nienhüser <[email protected]>
4 // SPDX-FileCopyrightText: 2011 Thibaut Gridel <[email protected]>
5 // SPDX-FileCopyrightText: 2012 Bernhard Beschow <[email protected]>
6 //
7 
8 #include "ParseRunnerPlugin.h"
9 
10 #include <QIcon>
11 
12 namespace Marble
13 {
14 
15 class Q_DECL_HIDDEN ParseRunnerPlugin::Private
16 {
17 public:
18  Private();
19 };
20 
21 ParseRunnerPlugin::Private::Private()
22 {
23  // nothing to do
24 }
25 
27  QObject( parent ),
28  d( new Private )
29 {
30 }
31 
33 {
34  delete d;
35 }
36 
38 {
39  return QIcon();
40 }
41 
42 }
43 
44 #include "moc_ParseRunnerPlugin.cpp"
ParseRunnerPlugin(QObject *parent=nullptr)
Constructor with optional parent object.
QIcon icon() const override
Returns an icon for the plugin.
Binds a QML item to a specific geodetic location in screen coordinates.
~ParseRunnerPlugin() override
Destructor.
This file is part of the KDE documentation.
Documentation copyright © 1996-2023 The KDE developers.
Generated on Mon May 8 2023 03:53:22 by doxygen 1.8.17 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.