subsurface/qt-ui/divelogexportdialog.h
Dirk Hohndel 5ba573240f Gratuitous whitespace changes
I keep trying to get to consistenct.
Completely hopeless.

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
2014-05-22 11:40:22 -07:00

25 lines
391 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