mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-03 07:21:14 -05:00
24 lines
388 B
C++
24 lines
388 B
C++
#ifndef INCLUDE_ABOUTDIALOG_H
|
|
#define INCLUDE_ABOUTDIALOG_H
|
|
|
|
#include <QDialog>
|
|
|
|
#include "export.h"
|
|
|
|
namespace Ui {
|
|
class RecordInfoDialog;
|
|
}
|
|
|
|
class SDRGUI_API RecordInfoDialog : public QDialog {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit RecordInfoDialog(const QString& text, QWidget* parent = nullptr);
|
|
~RecordInfoDialog();
|
|
|
|
private:
|
|
Ui::RecordInfoDialog* ui;
|
|
};
|
|
|
|
#endif // INCLUDE_ABOUTDIALOG_H
|