subsurface/desktop-widgets/preferences/preferences_units.h

23 lines
391 B
C
Raw Normal View History

// SPDX-License-Identifier: GPL-2.0
#ifndef PREFERENCES_UNITS_H
#define PREFERENCES_UNITS_H
#include "abstractpreferenceswidget.h"
namespace Ui {
class PreferencesUnits;
}
class PreferencesUnits : public AbstractPreferencesWidget {
Q_OBJECT
public:
PreferencesUnits();
~PreferencesUnits();
void refreshSettings();
void syncSettings();
private:
Ui::PreferencesUnits *ui;
};
#endif