mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 21:20:19 +00:00
31 lines
535 B
C
31 lines
535 B
C
|
/*
|
||
|
* addweightsystemdialog.h
|
||
|
*
|
||
|
* header file for the add weightsystem dialog of Subsurface
|
||
|
*
|
||
|
*/
|
||
|
#ifndef ADDWEIGHTSYSTEMDIALOG_H
|
||
|
#define ADDWEIGHTSYSTEMDIALOG_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
#include "../dive.h"
|
||
|
|
||
|
namespace Ui{
|
||
|
class AddWeightsystemDialog;
|
||
|
}
|
||
|
|
||
|
class AddWeightsystemDialog : public QDialog{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
explicit AddWeightsystemDialog(QWidget* parent = 0);
|
||
|
void setWeightsystem(weightsystem_t *ws);
|
||
|
void updateWeightsystem();
|
||
|
|
||
|
private:
|
||
|
Ui::AddWeightsystemDialog *ui;
|
||
|
weightsystem_t *currentWeightsystem;
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif
|