aboutsummaryrefslogtreecommitdiffstats
path: root/desktop-widgets/preferences/preferences_georeference.h
blob: 8f76294cd6a5a5b2ab732d52efaf0cfa1cc3248e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// SPDX-License-Identifier: GPL-2.0
#ifndef PREFERENCES_GEOREFERENCE_H
#define PREFERENCES_GEOREFERENCE_H

#include "abstractpreferenceswidget.h"

namespace Ui {
	class PreferencesGeoreference;
}

class PreferencesGeoreference : public AbstractPreferencesWidget {
	Q_OBJECT
public:
	PreferencesGeoreference();
	virtual ~PreferencesGeoreference();
	virtual void refreshSettings();
	virtual void syncSettings();
private:
	Ui::PreferencesGeoreference *ui;
};

#endif