Marble

DataMigration.h
1 // SPDX-License-Identifier: LGPL-2.1-or-later
2 //
3 // SPDX-FileCopyrightText: 2010 Bastian Holst <[email protected]>
4 //
5 
6 #ifndef MARBLE_DATAMIGRATION_H
7 #define MARBLE_DATAMIGRATION_H
8 
9 #include "marble_export.h"
10 #include <QObject>
11 
12 namespace Marble
13 {
14 
15 class MARBLE_EXPORT DataMigration : public QObject
16 {
17  Q_OBJECT
18 
19  public:
20  explicit DataMigration( QObject *parent );
21  ~DataMigration() override;
22 
23  public Q_SLOTS:
24  void exec();
25 
26  private:
27  static void moveFiles( const QString& source, const QString& target );
28 };
29 
30 }
31 
32 #endif // MARBLE_DATAMIGRATION_H
Binds a QML item to a specific geodetic location in screen coordinates.
This file is part of the KDE documentation.
Documentation copyright © 1996-2023 The KDE developers.
Generated on Thu Sep 21 2023 04:12:25 by doxygen 1.8.17 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.