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.
42 lines
1.2 KiB
C++
42 lines
1.2 KiB
C++
/**********************************************************************
|
|
* @file PostGraphObjectImport.h
|
|
* @brief 导入渲染数据对象
|
|
* @author BaGuijun (baguijun@163.com)
|
|
* @date 2024-09-10
|
|
*********************************************************************/
|
|
#ifndef _PostGraphObjectImport_H
|
|
#define _PostGraphObjectImport_H
|
|
|
|
#include "PostGraphAdaptorAPI.h"
|
|
#include "PostGraphObjectBase.h"
|
|
|
|
namespace Interface
|
|
{
|
|
class FITKAbstractCFDPostData;
|
|
/**
|
|
* @brief 导入渲染数据对象
|
|
* @author BaGuijun (baguijun@163.com)
|
|
* @date 2024-09-10
|
|
*/
|
|
class PostGraphAdaptorAPI PostGraphObjectImport : public PostGraphObjectBase
|
|
{
|
|
Q_OBJECT;
|
|
public:
|
|
/**
|
|
* @brief 构造函数
|
|
* @param[i] postData 后处理数据对象
|
|
* @author BaGuijun (baguijun@163.com)
|
|
* @date 2024-09-10
|
|
*/
|
|
explicit PostGraphObjectImport(FITKAbstractCFDPostData* postData, Comp::FITKGraph3DWindowVTK* graph3DWidget);
|
|
/**
|
|
* @brief 析构函数
|
|
* @author BaGuijun (baguijun@163.com)
|
|
* @date 2024-09-10
|
|
*/
|
|
virtual ~PostGraphObjectImport();
|
|
};
|
|
}
|
|
|
|
#endif
|