mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-30 22:20:21 +00:00
23 lines
462 B
C
23 lines
462 B
C
|
// SPDX-License-Identifier: GPL-2.0
|
||
|
#ifndef DIVECOMPONENTSELECTION_H
|
||
|
#define DIVECOMPONENTSELECTION_H
|
||
|
|
||
|
#include "ui_divecomponentselection.h"
|
||
|
|
||
|
struct dive_paste_data;
|
||
|
|
||
|
class DiveComponentSelection : public QDialog {
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
explicit DiveComponentSelection(dive_paste_data &data, QWidget *parent = nullptr);
|
||
|
private
|
||
|
slots:
|
||
|
void buttonClicked(QAbstractButton *button);
|
||
|
|
||
|
private:
|
||
|
Ui::DiveComponentSelectionDialog ui;
|
||
|
dive_paste_data &data;
|
||
|
};
|
||
|
|
||
|
#endif
|