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/GUIWidget/PropertyChildWidgetBase.h

51 lines
1.0 KiB
C

/**
* @file PropertyChildWidgetBase.h
* @brief
* @author YanZhiHui (chanyuantiandao@126.com)
* @date 2024-06-12
*/
#ifndef __PROPERTYCHILDWIDGETBASE_H__
#define __PROPERTYCHILDWIDGETBASE_H__
#include <QWidget>
#include "GUIWidgetAPI.h"
namespace GUI
{
class MainWindow;
/**
* @brief
* @author YanZhiHui (chanyuantiandao@126.com)
* @date 2024-06-12
*/
class GUIWIDGETAPI PropertyChildWidgetBase : public QWidget
{
Q_OBJECT
public:
/**
* @brief
* @param mainWindow
* @author YanZhiHui (chanyuantiandao@126.com)
* @date 2024-06-12
*/
PropertyChildWidgetBase(MainWindow* mainWindow);
/**
* @brief
* @author YanZhiHui (chanyuantiandao@126.com)
* @date 2024-06-12
*/
virtual ~PropertyChildWidgetBase();
protected:
/**
* @brief
* @author YanZhiHui (chanyuantiandao@126.com)
* @date 2024-06-12
*/
MainWindow* m_MainWindow{};
};
}
#endif // !__PROPERTYCHILDWIDGETBASE_H__