File indexing completed on 2024-04-28 03:50:29

0001 // SPDX-License-Identifier: LGPL-2.1-or-later
0002 //
0003 // SPDX-FileCopyrightText: 2016 Friedrich W. H. Kossebau <kossebau@kde.org>
0004 //
0005 
0006 #ifndef MARBLE_GEOURIRUNNER_H
0007 #define MARBLE_GEOURIRUNNER_H
0008 
0009 #include "SearchRunner.h"
0010 
0011 namespace Marble
0012 {
0013 
0014 class GeoUriRunner : public SearchRunner
0015 {
0016     Q_OBJECT
0017 
0018 public:
0019     explicit GeoUriRunner(QObject *parent = nullptr);
0020     ~GeoUriRunner() override;
0021 
0022     void search(const QString &searchTerm, const GeoDataLatLonBox &preferred) override;
0023 };
0024 
0025 }
0026 
0027 #endif