Marble

GeoDataTour.h
1 // SPDX-License-Identifier: LGPL-2.1-or-later
2 //
3 // SPDX-FileCopyrightText: 2013 Illya Kovalevskyy <[email protected]>
4 //
5 
6 #ifndef GEODATATOUR_H
7 #define GEODATATOUR_H
8 
9 #include "GeoDataFeature.h"
10 #include "geodata_export.h"
11 
12 namespace Marble
13 {
14 
15 class GeoDataTourPrivate;
16 class GeoDataPlaylist;
17 class GeoDataSoundCue;
18 
19 /**
20  */
21 class GEODATA_EXPORT GeoDataTour : public GeoDataFeature
22 {
23 public:
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 
43 private:
44  Q_DECLARE_PRIVATE(GeoDataTour)
45 
46 };
47 
48 } // namespace Marble
49 
50 #endif // GEODATATOUR_H
bool operator==(const Qt3DRender::QGraphicsApiFilter &reference, const Qt3DRender::QGraphicsApiFilter &sample)
bool operator!=(const Qt3DRender::QGraphicsApiFilter &reference, const Qt3DRender::QGraphicsApiFilter &sample)
Binds a QML item to a specific geodetic location in screen coordinates.
This file is part of the KDE documentation.
Documentation copyright © 1996-2023 The KDE developers.
Generated on Tue Oct 3 2023 04:09:47 by doxygen 1.8.17 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.