mirror of
				https://github.com/f4exb/sdrangel.git
				synced 2025-10-30 20:40:20 -04: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
 |