Marble

GeoDataChange.cpp
1 // SPDX-License-Identifier: LGPL-2.1-or-later
2 //
3 // SPDX-FileCopyrightText: 2014 Sanjiban Bairagya <[email protected]>
4 //
5 
6 #include "GeoDataChange.h"
7 
8 #include "GeoDataContainer_p.h"
9 #include "GeoDataTypes.h"
10 
11 namespace Marble
12 {
13 
14 class GeoDataChangePrivate : public GeoDataContainerPrivate
15 {
16 };
17 
18 
19 GeoDataChange::GeoDataChange()
20  : GeoDataContainer(new GeoDataChangePrivate)
21 {
22 }
23 
24 GeoDataChange::GeoDataChange(const GeoDataChange &other)
25  : GeoDataContainer(other, new GeoDataChangePrivate(*other.d_func()))
26 {
27 }
28 
29 GeoDataChange &GeoDataChange::operator=( const GeoDataChange &other )
30 {
31  if (this != &other) {
32  Q_D(GeoDataChange);
33  *d = *other.d_func();
34  }
35 
36  return *this;
37 }
38 
39 bool GeoDataChange::operator==( const GeoDataChange &other ) const
40 {
41  return GeoDataContainer::equals(other);
42 }
43 
44 bool GeoDataChange::operator!=( const GeoDataChange &other ) const
45 {
46  return !this->operator==( other );
47 }
48 
49 GeoDataChange::~GeoDataChange()
50 {
51 }
52 
53 GeoDataFeature * GeoDataChange::clone() const
54 {
55  return new GeoDataChange(*this);
56 }
57 
58 const char *GeoDataChange::nodeType() const
59 {
60  return GeoDataTypes::GeoDataChangeType;
61 }
62 
63 }
bool operator==(const Qt3DRender::QGraphicsApiFilter &reference, const Qt3DRender::QGraphicsApiFilter &sample)
Binds a QML item to a specific geodetic location in screen coordinates.
Q_D(Todo)
This file is part of the KDE documentation.
Documentation copyright © 1996-2023 The KDE developers.
Generated on Mon Oct 2 2023 03:52:07 by doxygen 1.8.17 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.