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.
41 lines
1017 B
C++
41 lines
1017 B
C++
/**
|
|
* @brief 流体三维后处理管理器
|
|
* @author BaGuijun (baguijun@163.com)
|
|
* @date 2024-09-06
|
|
*/
|
|
#ifndef __FITKSTRUPOST3DMANAGER_H__
|
|
#define __FITKSTRUPOST3DMANAGER_H__
|
|
|
|
#include "FITKInterfaceCFDPostAPI.h"
|
|
#include "FITKAbstractCFDPostData.h"
|
|
#include "FITK_Kernel/FITKCore/FITKAbstractDataManager.hpp"
|
|
#include <QList>
|
|
|
|
namespace Interface
|
|
{
|
|
/**
|
|
* @brief 流体三维后处理管理器
|
|
* @author BaGuijun (baguijun@163.com)
|
|
* @date 2024-09-06
|
|
*/
|
|
class FITKInterfaceCFDPostAPI FITKCFDPost3DManager : public Core::FITKAbstractDataManager<FITKAbstractCFDPostData>
|
|
{
|
|
public:
|
|
/**
|
|
* @brief 构造函数
|
|
* @author BaGuijun (baguijun@163.com)
|
|
* @date 2024-09-06
|
|
*/
|
|
explicit FITKCFDPost3DManager() = default;
|
|
/**
|
|
* @brief 析构函数
|
|
* @author BaGuijun (baguijun@163.com)
|
|
* @date 2024-09-06
|
|
*/
|
|
virtual ~FITKCFDPost3DManager();
|
|
};
|
|
}
|
|
|
|
|
|
#endif
|