You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
AppFlow/CFDStruct/CUIProperty/CUIComponentBaseContainerWi...

22 lines
440 B
C

#ifndef CUICOMPONENTBASECONTAINERWIDGET_H
#define CUICOMPONENTBASECONTAINERWIDGET_H
#include <QWidget>
class CUIConfig;
class QLayout;
class CUIComponentBaseContainerWidget : public QWidget
{
Q_OBJECT
public:
explicit CUIComponentBaseContainerWidget(QWidget *parent = nullptr);
protected:
virtual QLayout* getLayout(CUIConfig* conf);
protected:
QLayout* m_layout;
signals:
};
#endif // CUICOMPONENTBASECONTAINERWIDGET_H