summaryrefslogtreecommitdiffstats
path: root/qt-ui/divelogexportdialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'qt-ui/divelogexportdialog.h')
-rw-r--r--qt-ui/divelogexportdialog.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/qt-ui/divelogexportdialog.h b/qt-ui/divelogexportdialog.h
new file mode 100644
index 000000000..9e2bed25d
--- /dev/null
+++ b/qt-ui/divelogexportdialog.h
@@ -0,0 +1,25 @@
+#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