File indexing completed on 2025-01-05 03:58:57
0001 // SPDX-License-Identifier: LGPL-2.1-or-later 0002 // 0003 // SPDX-FileCopyrightText: 2009 Gaurav Gupta <1989.gaurav@googlemail.com> 0004 // SPDX-FileCopyrightText: 2010 Bastian Holst <bastianholst@gmx.de> 0005 // 0006 0007 #ifndef MARBLE_GEODATALOOKAT_P_H 0008 #define MARBLE_GEODATALOOKAT_P_H 0009 0010 // Marble 0011 #include "GeoDataCoordinates.h" 0012 0013 // Qt 0014 #include <QAtomicInt> 0015 0016 namespace Marble 0017 { 0018 0019 class GeoDataLookAtPrivate 0020 { 0021 public : 0022 GeoDataLookAtPrivate() 0023 : m_coordinates(), 0024 m_range( 0.0 ), 0025 ref( 1 ) 0026 { 0027 } 0028 0029 GeoDataCoordinates m_coordinates; 0030 qreal m_range; 0031 0032 QAtomicInt ref; 0033 }; 0034 0035 } // namespace Marble 0036 0037 #endif