#ifndef CUICOMPONENTMULTITABLEWIDGET_H #define CUICOMPONENTMULTITABLEWIDGET_H #include "CUIComponentBase.h" #include "CUIComponentBaseWidget.h" class QTableWidget; class CUIPropertyWidget; class CUIComponentMultiTableWidget : public CUIComponentBaseWidget, public CUIComponentBase { Q_OBJECT public: explicit CUIComponentMultiTableWidget(CUIConfig* conf, QVector& subCUI, QWidget* parent = nullptr); protected: void initUI(QVector& subCUI); protected: QTableWidget* m_tableWidget; signals: }; #endif // CUICOMPONENTMULTITABLEWIDGET_H