1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2025-11-06 06:20:29 -05:00

24 lines
388 B
C
Raw Normal View History

2020-06-14 23:09:19 +02:00
#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