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

0001 // SPDX-License-Identifier: LGPL-2.1-or-later
0002 //
0003 // SPDX-FileCopyrightText: 2010 Harshit Jain <hjain.itbhu@gmail.com>
0004 //
0005 
0006 #ifndef GEODATATIMESTAMPPRIVATE_H
0007 #define GEODATATIMESTAMPPRIVATE_H
0008 
0009 #include <QDateTime>
0010 
0011 #include "GeoDataTypes.h"
0012 #include <GeoDataTimeStamp.h>
0013 
0014 namespace Marble
0015 {
0016 
0017 class GeoDataTimeStampPrivate
0018 {
0019   public:
0020     QDateTime m_when;
0021 
0022     GeoDataTimeStamp::TimeResolution m_resolution;
0023 
0024     GeoDataTimeStampPrivate();
0025 };
0026 
0027 GeoDataTimeStampPrivate::GeoDataTimeStampPrivate() :
0028   m_resolution( GeoDataTimeStamp::SecondResolution )
0029 {
0030   // nothing to do
0031 }
0032 
0033 } // namespace Marble
0034 
0035 #endif //GEODATATIMESTAMPPRIVATE_H
0036