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

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