File indexing completed on 2025-01-05 03:59:01
0001 // SPDX-License-Identifier: LGPL-2.1-or-later 0002 // 0003 // SPDX-FileCopyrightText: 2012 Illya Kovalevskyy <illya.kovalevskyy@gmail.com> 0004 // 0005 0006 #ifndef GEODATATOURPRIMITIVE_H 0007 #define GEODATATOURPRIMITIVE_H 0008 0009 #include "GeoDataObject.h" 0010 #include "digikam_export.h" 0011 0012 namespace Marble 0013 { 0014 0015 /** 0016 */ 0017 class DIGIKAM_EXPORT GeoDataTourPrimitive : public GeoDataObject 0018 { 0019 public: 0020 bool operator==(const GeoDataTourPrimitive &other) const; 0021 inline bool operator!=(const GeoDataTourPrimitive &other) const { return !(*this == other); } 0022 }; 0023 0024 } // namespace Marble 0025 0026 #endif // GEODATATOURPRIMITIVE_H