diff options
author | Tomaz Canabrava <tomaz.canabrava@intel.com> | 2015-09-17 19:22:19 -0300 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-10-30 10:36:50 -0700 |
commit | 315641b0b497a06dd508d8dee08b792623e091c7 (patch) | |
tree | 53b0880dc35ea95085afc498c877ad64edf65d7f /desktop-widgets/preferences/preferences_georeference.h | |
parent | 5461eadd1bd88844194073c56a2f8397c98dda04 (diff) | |
download | subsurface-315641b0b497a06dd508d8dee08b792623e091c7.tar.gz |
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>
Diffstat (limited to 'desktop-widgets/preferences/preferences_georeference.h')
-rw-r--r-- | desktop-widgets/preferences/preferences_georeference.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/desktop-widgets/preferences/preferences_georeference.h b/desktop-widgets/preferences/preferences_georeference.h new file mode 100644 index 000000000..5dd4bc445 --- /dev/null +++ b/desktop-widgets/preferences/preferences_georeference.h @@ -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
\ No newline at end of file |