mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
22 lines
493 B
C
22 lines
493 B
C
|
#ifndef DIVECOMPUTERMANAGEMENTDIALOG_H
|
||
|
#define DIVECOMPUTERMANAGEMENTDIALOG_H
|
||
|
#include <QDialog>
|
||
|
|
||
|
class DiveComputerModel;
|
||
|
namespace Ui{
|
||
|
class DiveComputerManagementDialog;
|
||
|
};
|
||
|
|
||
|
class DiveComputerManagementDialog : public QDialog{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
static DiveComputerManagementDialog *instance();
|
||
|
void update();
|
||
|
private:
|
||
|
explicit DiveComputerManagementDialog(QWidget* parent = 0, Qt::WindowFlags f = 0);
|
||
|
Ui::DiveComputerManagementDialog *ui;
|
||
|
DiveComputerModel *model;
|
||
|
};
|
||
|
|
||
|
#endif
|