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.
21 lines
434 B
C++
21 lines
434 B
C++
#ifndef CUICOMPONENTBASECONTAINERWIDGET_H
|
|
#define CUICOMPONENTBASECONTAINERWIDGET_H
|
|
|
|
#include <QWidget>
|
|
#include "CUIComponentBaseWidget.h"
|
|
class CUIConfig;
|
|
class QLayout;
|
|
|
|
class CUIComponentBaseContainerWidget : public CUIComponentBaseWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit CUIComponentBaseContainerWidget(QWidget *parent = nullptr);
|
|
protected:
|
|
QLayout* m_layout;
|
|
signals:
|
|
|
|
};
|
|
|
|
#endif // CUICOMPONENTBASECONTAINERWIDGET_H
|