RabbitCommon v2.2.6
Loading...
Searching...
No Matches
Information.h
1#ifndef INFORMATION_H
2#define INFORMATION_H
3
4#include <QDialog>
5
6namespace Ui {
7class CInformation;
8}
9
10class CInformation : public QDialog
11{
12 Q_OBJECT
13
14public:
15 explicit CInformation(const QString &szApp, const QString &szInfo, QWidget *parent = nullptr);
16 virtual ~CInformation();
17
18private:
19 Ui::CInformation *ui;
20
21 void SetContext(const QString& szTitle, const QString& szContext);
22};
23
24#endif // INFORMATION_H