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.
|
|
|
|
#ifndef _FITKOCCMODEL_IMPORT_H___
|
|
|
|
|
#define _FITKOCCMODEL_IMPORT_H___
|
|
|
|
|
|
|
|
|
|
#include "FITKAbstractOCCModel.h"
|
|
|
|
|
#include "FITK_Interface/FITKInterfaceGeometry/FITKAbsGeoModelImport.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace OCC
|
|
|
|
|
{
|
|
|
|
|
class FITKGeoCompOCCAPI FITKOCCModelImport :public Interface::FITKAbsGeoModelImport,
|
|
|
|
|
public OCCShapeAgent
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
explicit FITKOCCModelImport();
|
|
|
|
|
virtual ~FITKOCCModelImport() = default;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief 更新模型
|
|
|
|
|
* @return true 更新成功
|
|
|
|
|
* @return false 更新失败
|
|
|
|
|
* @author LiBaojun (libaojunqd@foxmail.com)
|
|
|
|
|
* @date 2024-06-05
|
|
|
|
|
*/
|
|
|
|
|
virtual bool update() override;
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|