Preferences: add GeoReference

Straigth port from the old version.

Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Tomaz Canabrava 2015-09-17 19:22:19 -03:00 committed by Dirk Hohndel
parent 5461eadd1b
commit 315641b0b4
5 changed files with 192 additions and 0 deletions

View file

@ -0,0 +1,21 @@
#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