#ifndef ALARMEVENTDATAVIEW_H #define ALARMEVENTDATAVIEW_H #include class QTableView; class QVBoxLayout; class AlarmEventDataView : public QWidget { Q_OBJECT public: AlarmEventDataView(QWidget* parent = nullptr); ~AlarmEventDataView(); private: QTableView* m_tableView; QVBoxLayout* m_vLayout; }; #endif