mirror of
https://github.com/subsurface/subsurface.git
synced 2024-12-01 06:30:26 +00:00
26 lines
390 B
C
26 lines
390 B
C
|
#ifndef DIVELOGEXPORTDIALOG_H
|
||
|
#define DIVELOGEXPORTDIALOG_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
|
||
|
namespace Ui {
|
||
|
class DiveLogExportDialog;
|
||
|
}
|
||
|
|
||
|
class DiveLogExportDialog : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit DiveLogExportDialog(QWidget *parent = 0);
|
||
|
~DiveLogExportDialog();
|
||
|
|
||
|
private slots:
|
||
|
void on_buttonBox_accepted();
|
||
|
|
||
|
private:
|
||
|
Ui::DiveLogExportDialog *ui;
|
||
|
};
|
||
|
|
||
|
#endif // DIVELOGEXPORTDIALOG_H
|