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

/**********************************************************************
* @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