File indexing completed on 2025-01-05 03:59:26

0001 // SPDX-License-Identifier: LGPL-2.1-or-later
0002 //
0003 // SPDX-FileCopyrightText: 2011 Thibaut Gridel <tgridel@free.fr>
0004 
0005 #ifndef MARBLE_CACHE_RUNNER_H
0006 #define MARBLE_CACHE_RUNNER_H
0007 
0008 #include "ParsingRunner.h"
0009 
0010 namespace Marble
0011 {
0012 
0013 class CacheRunner : public ParsingRunner
0014 {
0015     Q_OBJECT
0016 
0017 public:
0018 
0019     explicit CacheRunner(QObject* const parent = nullptr);
0020     ~CacheRunner() override;
0021 
0022     GeoDataDocument* parseFile( const QString &fileName, DocumentRole role, QString& error ) override;
0023 };
0024 
0025 } // namespace Marble
0026 
0027 #endif // MARBLE_CACHE_RUNNER_H