Marble

GeoDataTour.h
1// SPDX-License-Identifier: LGPL-2.1-or-later
2//
3// SPDX-FileCopyrightText: 2013 Illya Kovalevskyy <illya.kovalevskyy@gmail.com>
4//
5
6#ifndef GEODATATOUR_H
7#define GEODATATOUR_H
8
9#include "GeoDataFeature.h"
10#include "geodata_export.h"
11
12namespace Marble
13{
14
15class GeoDataTourPrivate;
16class GeoDataPlaylist;
17class GeoDataSoundCue;
18
19/**
20 */
21class GEODATA_EXPORT GeoDataTour : public GeoDataFeature
22{
23public:
24 GeoDataTour();
25 GeoDataTour(const GeoDataTour& other);
26 ~GeoDataTour() override;
27
28 GeoDataTour& operator=(const GeoDataTour& other);
29
30 bool operator==(const GeoDataTour &other) const;
31 bool operator!=(const GeoDataTour &other) const;
32
33 GeoDataFeature * clone() const override;
34
35 GeoDataPlaylist* playlist();
36 const GeoDataPlaylist* playlist() const;
37 void setPlaylist(GeoDataPlaylist* playlist);
38
39 const char* nodeType() const override;
40
41 static const GeoDataTour null;
42
43private:
44 Q_DECLARE_PRIVATE(GeoDataTour)
45
46};
47
48} // namespace Marble
49
50#endif // GEODATATOUR_H
Binds a QML item to a specific geodetic location in screen coordinates.
bool operator==(const QGraphicsApiFilter &reference, const QGraphicsApiFilter &sample)
bool operator!=(const QGraphicsApiFilter &reference, const QGraphicsApiFilter &sample)
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:18:17 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.