summaryrefslogtreecommitdiffstats
path: root/qt-ui/globe.h
blob: 86dc3bec0552c34c0396d919e75c75264d3a8bdc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef GLOBE_H
#define GLOBE_H

#include <marble/MarbleWidget.h>

namespace Marble{
	class GeoDataDocument;
}
class GlobeGPS : public Marble::MarbleWidget{
	Q_OBJECT
public:
	using Marble::MarbleWidget::centerOn;
	GlobeGPS(QWidget *parent);
	void reload();
	void centerOn(struct dive* dive);

private:
	Marble::GeoDataDocument *loadedDives;
};

#endif