File indexing completed on 2026-08-20 09:15:21
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017 #ifndef _Transfer_ActorOfTransientProcess_HeaderFile
0018 #define _Transfer_ActorOfTransientProcess_HeaderFile
0019
0020 #include <ShapeProcess.hxx>
0021 #include <Standard.hxx>
0022 #include <Transfer_ActorOfProcessForTransient.hxx>
0023 #include <XSAlgo_ShapeProcessor.hxx>
0024
0025 struct DE_ShapeFixParameters;
0026 class Transfer_Binder;
0027 class Standard_Transient;
0028 class Transfer_ProcessForTransient;
0029 class Transfer_TransientProcess;
0030
0031 class Transfer_ActorOfTransientProcess;
0032 DEFINE_STANDARD_HANDLE(Transfer_ActorOfTransientProcess, Transfer_ActorOfProcessForTransient)
0033
0034
0035 class Transfer_ActorOfTransientProcess : public Transfer_ActorOfProcessForTransient
0036 {
0037 public:
0038 Standard_EXPORT Transfer_ActorOfTransientProcess();
0039
0040 Standard_EXPORT virtual Handle(Transfer_Binder) Transferring(
0041 const Handle(Standard_Transient)& start,
0042 const Handle(Transfer_ProcessForTransient)& TP,
0043 const Message_ProgressRange& theProgress = Message_ProgressRange()) Standard_OVERRIDE;
0044
0045 Standard_EXPORT virtual Handle(Transfer_Binder) Transfer(
0046 const Handle(Standard_Transient)& start,
0047 const Handle(Transfer_TransientProcess)& TP,
0048 const Message_ProgressRange& theProgress = Message_ProgressRange());
0049
0050 Standard_EXPORT virtual Handle(Standard_Transient) TransferTransient(
0051 const Handle(Standard_Transient)& start,
0052 const Handle(Transfer_TransientProcess)& TP,
0053 const Message_ProgressRange& theProgress = Message_ProgressRange());
0054
0055
0056
0057 Standard_EXPORT void SetShapeFixParameters(
0058 const XSAlgo_ShapeProcessor::ParameterMap& theParameters);
0059
0060
0061
0062
0063 Standard_EXPORT void SetShapeFixParameters(XSAlgo_ShapeProcessor::ParameterMap&& theParameters);
0064
0065
0066
0067
0068
0069
0070
0071 Standard_EXPORT void SetShapeFixParameters(
0072 const DE_ShapeFixParameters& theParameters,
0073 const XSAlgo_ShapeProcessor::ParameterMap& theAdditionalParameters = {});
0074
0075
0076
0077 inline const XSAlgo_ShapeProcessor::ParameterMap& GetShapeFixParameters() const
0078 {
0079 return myShapeProcParams;
0080 }
0081
0082
0083
0084 Standard_EXPORT void SetProcessingFlags(const ShapeProcess::OperationsFlags& theFlags);
0085
0086
0087
0088
0089
0090 inline const XSAlgo_ShapeProcessor::ProcessingFlags& GetProcessingFlags() const
0091 {
0092 return myShapeProcFlags;
0093 }
0094
0095 DEFINE_STANDARD_RTTIEXT(Transfer_ActorOfTransientProcess, Transfer_ActorOfProcessForTransient)
0096
0097 private:
0098
0099 XSAlgo_ShapeProcessor::ParameterMap myShapeProcParams;
0100 XSAlgo_ShapeProcessor::ProcessingFlags myShapeProcFlags;
0101
0102 };
0103
0104 #endif