PowerMaster/include/alarmEventDataView.h

22 lines
338 B
C
Raw Normal View History

#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