aboutsummaryrefslogtreecommitdiffstats
path: root/qt-ui/addcylinderdialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'qt-ui/addcylinderdialog.h')
-rw-r--r--qt-ui/addcylinderdialog.h33
1 files changed, 0 insertions, 33 deletions
diff --git a/qt-ui/addcylinderdialog.h b/qt-ui/addcylinderdialog.h
deleted file mode 100644
index fc68faa72..000000000
--- a/qt-ui/addcylinderdialog.h
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
- * addcylinderdialog.h
- *
- * header file for the add cylinder dialog of Subsurface
- *
- */
-#ifndef ADDCYLINDERDIALOG_H
-#define ADDCYLINDERDIALOG_H
-
-#include <QDialog>
-#include "../dive.h"
-
-namespace Ui{
- class AddCylinderDialog;
-}
-
-class TankInfoModel;
-
-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;
- TankInfoModel *tankInfoModel;
-};
-
-
-#endif