File indexing completed on 2024-05-12 03:50:18

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 "geodata_export.h"
0011 
0012 namespace Marble
0013 {
0014 
0015 /**
0016  */
0017 class GEODATA_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