22 lines
338 B
C
22 lines
338 B
C
|
|
#ifndef ALARMEVENTDATAVIEW_H
|
||
|
|
#define ALARMEVENTDATAVIEW_H
|
||
|
|
|
||
|
|
#include <QWidget>
|
||
|
|
|
||
|
|
class QTableView;
|
||
|
|
class QVBoxLayout;
|
||
|
|
class AlarmEventDataView : public QWidget
|
||
|
|
{
|
||
|
|
Q_OBJECT
|
||
|
|
|
||
|
|
public:
|
||
|
|
AlarmEventDataView(QWidget* parent = nullptr);
|
||
|
|
~AlarmEventDataView();
|
||
|
|
|
||
|
|
private:
|
||
|
|
QTableView* m_tableView;
|
||
|
|
QVBoxLayout* m_vLayout;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|