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/CUIComponentBaseWidget.h

22 lines
359 B
C

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