#ifndef INFORMATION_DIALOG_H #define INFORMATION_DIALOG_H #include class QLayout; class QFormLayout; class QLabel; class InformationDialog : public QDialog { Q_OBJECT private: QLayout* _layout; QFormLayout* _tableLayout; QLabel* _lblTitle; QWidget* _tableWidget; void initTable(); public: explicit InformationDialog(); }; #endif