mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
315641b0b4
Straigth port from the old version. Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
21 lines
No EOL
427 B
C++
21 lines
No EOL
427 B
C++
#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 |