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/FlowApp/MainWindowGenerator.h

42 lines
1.2 KiB
C

/**
* @file MainWindowGenerator.h
* @brief
* @author YanZhiHui (chanyuantiandao@126.com)
* @date 2024-04-19
*/
#ifndef __MAINWINDOWGENERATOR__
#define __MAINWINDOWGENERATOR__
#include "FITK_Kernel/FITKAppFramework/FITKAbstractMainWinGenerator.h"
/**
* @brief
* @note `AppFrame::FITKAbstractMainwindowGenerator`
* @author YanZhiHui (chanyuantiandao@126.com)
* @date 2024-04-19
*/
class MainWindowGenerator : public AppFrame::FITKAbstractMainwindowGenerator
{
public:
/**
* @brief
* @author YanZhiHui (chanyuantiandao@126.com)
* @date 2024-04-19
*/
MainWindowGenerator();
/**
* @brief
* @author YanZhiHui (chanyuantiandao@126.com)
* @date 2024-04-19
*/
~MainWindowGenerator() = default;
/**
* @brief
* @return QWidget*
* @author YanZhiHui (chanyuantiandao@126.com)
* @date 2024-04-19
*/
QWidget *genMainWindow() override;
};
#endif // !__MAINWINDOWGENERATOR__