~ubuntu-branches/ubuntu/wily/marble/wily-proposed

« back to all changes in this revision

Viewing changes to src/lib/marble/RunnerTask.h

  • Committer: Package Import Robot
  • Author(s): Scarlett Clark, Jonathan Riddell, Scarlett Clark
  • Date: 2014-07-24 23:38:32 UTC
  • mfrom: (1.5.2)
  • Revision ID: package-import@ubuntu.com-20140724233832-7v4421t4khrhw487
Tags: 4:4.13.90-0ubuntu1
[ Jonathan Riddell ]
* Switch to libmarblewidget19 for new soversion

[ Scarlett Clark ]
* New upstream beta release
* Update: do_not_install_private_headers. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
 
14
14
#include "GeoDataCoordinates.h"
15
15
#include "GeoDataDocument.h"
16
 
#include "GeoDataLatLonAltBox.h"
 
16
#include "GeoDataLatLonBox.h"
17
17
 
18
18
#include <QRunnable>
19
19
#include <QString>
38
38
    Q_OBJECT
39
39
 
40
40
public:
41
 
    SearchTask( SearchRunner *runner, SearchRunnerManager *manager, const MarbleModel *model, const QString &searchTerm, const GeoDataLatLonAltBox &preferred );
 
41
    SearchTask( SearchRunner *runner, SearchRunnerManager *manager, const MarbleModel *model, const QString &searchTerm, const GeoDataLatLonBox &preferred );
42
42
 
43
43
    /**
44
44
     * @reimp
51
51
private:
52
52
    SearchRunner *const m_runner;
53
53
    QString m_searchTerm;
54
 
    GeoDataLatLonAltBox m_preferredBbox;
 
54
    GeoDataLatLonBox m_preferredBbox;
55
55
};
56
56
 
57
57
/** A RunnerTask that executes reverse geocoding */