mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-29 21:50:26 +00:00
26 lines
468 B
C
26 lines
468 B
C
|
// SPDX-License-Identifier: GPL-2.0
|
||
|
#ifndef PREFERENCES_EQUIPMENT_H
|
||
|
#define PREFERENCES_EQUIPMENT_H
|
||
|
|
||
|
#include <QMap>
|
||
|
#include "abstractpreferenceswidget.h"
|
||
|
|
||
|
namespace Ui {
|
||
|
class PreferencesEquipment;
|
||
|
}
|
||
|
|
||
|
class PreferencesEquipment : public AbstractPreferencesWidget {
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
PreferencesEquipment();
|
||
|
~PreferencesEquipment();
|
||
|
void refreshSettings() override;
|
||
|
void syncSettings() override;
|
||
|
private:
|
||
|
Ui::PreferencesEquipment *ui;
|
||
|
public slots:
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif
|