File indexing completed on 2024-04-21 03:49:43

0001 // SPDX-License-Identifier: LGPL-2.1-or-later
0002 //
0003 // SPDX-FileCopyrightText: 2008-2009 Torsten Rahn <tackat@kde.org>
0004 //
0005 
0006 #ifndef MARBLE_MARBLELOCALE_P_H
0007 #define MARBLE_MARBLELOCALE_P_H
0008 
0009 #include "MarbleLocale.h"
0010 
0011 namespace Marble
0012 {
0013 
0014 
0015 class MarbleLocalePrivate
0016 {
0017  public:
0018     MarbleLocalePrivate();
0019     virtual ~MarbleLocalePrivate();
0020 
0021     MarbleLocale::MeasurementSystem m_measurementSystem;
0022 };
0023 
0024 }
0025 
0026 #endif