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.
109 lines
2.9 KiB
C++
109 lines
2.9 KiB
C++
/*****************************************************************//**
|
|
* @file FITKOCCModelOperCompound.h
|
|
* @brief OCC复合对象特征操作数据类。
|
|
|
|
* @author fulipeng (fulipengqd@yeah.net)
|
|
* @date 2024-09-07
|
|
*********************************************************************/
|
|
|
|
#ifndef FITKOCCMODELOPERCOMPOUND_H
|
|
#define FITKOCCMODELOPERCOMPOUND_H
|
|
|
|
#include "FITKAbstractOCCModel.h"
|
|
#include "FITK_Interface/FITKInterfaceGeometry/FITKAbsGeoModelOperCompound.h"
|
|
|
|
class TopoDS_Shape;
|
|
|
|
namespace OCC
|
|
{
|
|
/**
|
|
* @brief OCC复合对象特征操作数据类。
|
|
* @author fulipeng (fulipengqd@yeah.net)
|
|
* @date 2024-09-07
|
|
*/
|
|
class FITKGeoCompOCCAPI FITKOCCModelOperCompound : public Interface::FITKAbsGeoModelOperCompound, public OCCShapeAgent
|
|
{
|
|
public:
|
|
/**
|
|
* @brief 构造函数。
|
|
* @author fulipeng (fulipengqd@yeah.net)
|
|
* @date 2024-09-07
|
|
*/
|
|
FITKOCCModelOperCompound();
|
|
|
|
/**
|
|
* @brief 析构函数。
|
|
* @author fulipeng (fulipengqd@yeah.net)
|
|
* @date 2024-09-07
|
|
*/
|
|
~FITKOCCModelOperCompound() = default;
|
|
|
|
};
|
|
|
|
/**
|
|
* @brief OCC复合对象添加操作数据类。
|
|
* @author fulipeng (fulipengqd@yeah.net)
|
|
* @date 2024-09-07
|
|
*/
|
|
class FITKGeoCompOCCAPI FITKOCCModelOperAddCompound : public FITKOCCModelOperCompound
|
|
{
|
|
public:
|
|
/**
|
|
* @brief 构造函数。
|
|
* @author fulipeng (fulipengqd@yeah.net)
|
|
* @date 2024-09-07
|
|
*/
|
|
FITKOCCModelOperAddCompound();
|
|
|
|
/**
|
|
* @brief 析构函数。
|
|
* @author fulipeng (fulipengqd@yeah.net)
|
|
* @date 2024-09-07
|
|
*/
|
|
~FITKOCCModelOperAddCompound() = default;
|
|
|
|
/**
|
|
* @brief 更新数据。[重写]
|
|
* @return 是否成功
|
|
* @author fulipeng (fulipengqd@yeah.net)
|
|
* @date 2024-09-07
|
|
*/
|
|
bool update() override;
|
|
|
|
};
|
|
|
|
/**
|
|
* @brief OCC复合对象移除操作数据类。
|
|
* @author fulipeng (fulipengqd@yeah.net)
|
|
* @date 2024-09-07
|
|
*/
|
|
class FITKGeoCompOCCAPI FITKOCCModelOperRemoveCompound : public FITKOCCModelOperCompound
|
|
{
|
|
public:
|
|
/**
|
|
* @brief 构造函数。
|
|
* @author fulipeng (fulipengqd@yeah.net)
|
|
* @date 2024-09-07
|
|
*/
|
|
FITKOCCModelOperRemoveCompound();
|
|
|
|
/**
|
|
* @brief 析构函数。
|
|
* @author fulipeng (fulipengqd@yeah.net)
|
|
* @date 2024-09-07
|
|
*/
|
|
~FITKOCCModelOperRemoveCompound() = default;
|
|
|
|
/**
|
|
* @brief 更新数据。[重写]
|
|
* @return 是否成功
|
|
* @author fulipeng (fulipengqd@yeah.net)
|
|
* @date 2024-09-07
|
|
*/
|
|
bool update() override;
|
|
|
|
};
|
|
}
|
|
|
|
#endif // !FITKOCCMODELOPERSOLID_H
|