File indexing completed on 2026-07-07 08:36:05
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017 #ifndef _IGESToBRep_Actor_HeaderFile
0018 #define _IGESToBRep_Actor_HeaderFile
0019
0020 #include <Standard.hxx>
0021 #include <Standard_Type.hxx>
0022
0023 #include <Standard_Integer.hxx>
0024 #include <Transfer_ActorOfTransientProcess.hxx>
0025 #include <Message_ProgressRange.hxx>
0026
0027 struct DE_ShapeFixParameters;
0028 class Interface_InterfaceModel;
0029 class Standard_Transient;
0030 class Transfer_Binder;
0031 class Transfer_TransientProcess;
0032
0033 class IGESToBRep_Actor;
0034 DEFINE_STANDARD_HANDLE(IGESToBRep_Actor, Transfer_ActorOfTransientProcess)
0035
0036
0037
0038
0039
0040
0041 class IGESToBRep_Actor : public Transfer_ActorOfTransientProcess
0042 {
0043 public:
0044 Standard_EXPORT IGESToBRep_Actor();
0045
0046 Standard_EXPORT void SetModel(const Handle(Interface_InterfaceModel)& model);
0047
0048
0049
0050
0051 Standard_EXPORT void SetContinuity(const Standard_Integer continuity = 0);
0052
0053
0054 Standard_EXPORT Standard_Integer GetContinuity() const;
0055
0056 Standard_EXPORT virtual Standard_Boolean Recognize(const Handle(Standard_Transient)& start)
0057 Standard_OVERRIDE;
0058
0059 Standard_EXPORT virtual Handle(Transfer_Binder) Transfer(
0060 const Handle(Standard_Transient)& start,
0061 const Handle(Transfer_TransientProcess)& TP,
0062 const Message_ProgressRange& theProgress = Message_ProgressRange()) Standard_OVERRIDE;
0063
0064
0065
0066 Standard_EXPORT Standard_Real UsedTolerance() const;
0067
0068 DEFINE_STANDARD_RTTIEXT(IGESToBRep_Actor, Transfer_ActorOfTransientProcess)
0069
0070 private:
0071 Handle(Interface_InterfaceModel) themodel;
0072 Standard_Integer thecontinuity;
0073 Standard_Real theeps;
0074 };
0075
0076 #endif