mirror of
https://github.com/subsurface/subsurface.git
synced 2024-12-01 06:30:26 +00:00
25 lines
396 B
C
25 lines
396 B
C
|
#ifndef ADDCYLINDERDIALOG_H
|
||
|
#define ADDCYLINDERDIALOG_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
#include "../dive.h"
|
||
|
|
||
|
namespace Ui{
|
||
|
class AddCylinderDialog;
|
||
|
}
|
||
|
|
||
|
class AddCylinderDialog : public QDialog{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
explicit AddCylinderDialog(QWidget* parent = 0);
|
||
|
void setCylinder(cylinder_t *cylinder);
|
||
|
void updateCylinder();
|
||
|
|
||
|
private:
|
||
|
Ui::AddCylinderDialog *ui;
|
||
|
cylinder_t *currentCylinder;
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif
|