subsurface/desktop-widgets/preferences/preferences_units.h
Tomaz Canabrava 57d7b59bdc Preferences: move units to the new dialog
Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
2015-10-30 10:36:50 -07:00

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