aboutsummaryrefslogtreecommitdiffstats
path: root/desktop-widgets/preferences/preferences_georeference.h
blob: a24603bc2f5278646039a57606574b7a084bd3cb (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();
	~PreferencesGeoreference();
	void refreshSettings() override;
	void syncSettings() override;
private:
	Ui::PreferencesGeoreference *ui;
};

#endif