mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
57d7b59bdc
Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
21 lines
No EOL
378 B
C++
21 lines
No EOL
378 B
C++
#ifndef PREFERENCES_UNITS_H
|
|
#define PREFERENCES_UNITS_H
|
|
|
|
#include "abstractpreferenceswidget.h"
|
|
|
|
namespace Ui {
|
|
class PreferencesUnits;
|
|
}
|
|
|
|
class PreferencesUnits : public AbstractPreferencesWidget {
|
|
Q_OBJECT
|
|
public:
|
|
PreferencesUnits();
|
|
virtual ~PreferencesUnits();
|
|
virtual void refreshSettings();
|
|
virtual void syncSettings();
|
|
private:
|
|
Ui::PreferencesUnits *ui;
|
|
};
|
|
|
|
#endif |