mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
23 lines
407 B
C
23 lines
407 B
C
|
#ifndef CONFIGUREDIVECOMPUTERDIALOG_H
|
||
|
#define CONFIGUREDIVECOMPUTERDIALOG_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
|
||
|
namespace Ui {
|
||
|
class ConfigureDiveComputerDialog;
|
||
|
}
|
||
|
|
||
|
class ConfigureDiveComputerDialog : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit ConfigureDiveComputerDialog(QWidget *parent = 0);
|
||
|
~ConfigureDiveComputerDialog();
|
||
|
|
||
|
private:
|
||
|
Ui::ConfigureDiveComputerDialog *ui;
|
||
|
};
|
||
|
|
||
|
#endif // CONFIGUREDIVECOMPUTERDIALOG_H
|