2017-04-27 20:26:05 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2015-09-17 19:22:19 -03:00
|
|
|
#ifndef PREFERENCES_GEOREFERENCE_H
|
|
|
|
#define PREFERENCES_GEOREFERENCE_H
|
|
|
|
|
|
|
|
#include "abstractpreferenceswidget.h"
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class PreferencesGeoreference;
|
|
|
|
}
|
|
|
|
|
|
|
|
class PreferencesGeoreference : public AbstractPreferencesWidget {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
PreferencesGeoreference();
|
2018-07-31 07:41:19 +02:00
|
|
|
~PreferencesGeoreference();
|
2018-08-01 11:01:26 +02:00
|
|
|
void refreshSettings();
|
|
|
|
void syncSettings();
|
2015-09-17 19:22:19 -03:00
|
|
|
private:
|
|
|
|
Ui::PreferencesGeoreference *ui;
|
|
|
|
};
|
|
|
|
|
2017-04-27 20:26:05 +02:00
|
|
|
#endif
|