From a4443d74add81eb07a418091d90656cc32de2743 Mon Sep 17 00:00:00 2001 From: dpasukhi Date: Sat, 4 Jan 2025 21:39:32 +0000 Subject: [PATCH] Coding - Remove static global variables #238 Refactor IGES Protocols to eliminate redundant type registrations --- src/IGESAppli/IGESAppli_Protocol.cxx | 115 +++++++++++------------- src/IGESBasic/IGESBasic_Protocol.cxx | 94 +++++++++---------- src/IGESDefs/IGESDefs_Protocol.cxx | 55 +++++------- src/IGESDimen/IGESDimen_Protocol.cxx | 129 ++++++++++++--------------- src/IGESDraw/IGESDraw_Protocol.cxx | 83 ++++++++--------- src/IGESGeom/IGESGeom_Protocol.cxx | 121 ++++++++++++------------- src/IGESGraph/IGESGraph_Protocol.cxx | 82 ++++++++--------- src/IGESSolid/IGESSolid_Protocol.cxx | 123 ++++++++++++------------- 8 files changed, 357 insertions(+), 445 deletions(-) diff --git a/src/IGESAppli/IGESAppli_Protocol.cxx b/src/IGESAppli/IGESAppli_Protocol.cxx index 243db1e596..f0a1d4d508 100644 --- a/src/IGESAppli/IGESAppli_Protocol.cxx +++ b/src/IGESAppli/IGESAppli_Protocol.cxx @@ -11,6 +11,7 @@ // Alternatively, this file may be used under the terms of Open CASCADE // commercial license or contractual agreement. +#include #include #include @@ -24,12 +25,11 @@ #include #include #include +#include +#include #include #include #include -#include -#include -#include #include #include #include @@ -39,76 +39,65 @@ #include #include -IMPLEMENT_STANDARD_RTTIEXT(IGESAppli_Protocol,IGESData_Protocol) - -static int THE_IGESAppli_Protocol_deja = 0; - -static Handle(Standard_Type) atype01,atype02,atype03,atype04,atype05,atype06, - atype07,atype08,atype09,atype10,atype11,atype12,atype13,atype14,atype15, - atype16,atype17,atype18,atype19; +IMPLEMENT_STANDARD_RTTIEXT(IGESAppli_Protocol, IGESData_Protocol) IGESAppli_Protocol::IGESAppli_Protocol() -{ - if (THE_IGESAppli_Protocol_deja) - { - return; - } +{} - THE_IGESAppli_Protocol_deja = 1; - atype01 = STANDARD_TYPE(IGESAppli_DrilledHole); - atype02 = STANDARD_TYPE(IGESAppli_ElementResults); - atype03 = STANDARD_TYPE(IGESAppli_FiniteElement); - atype04 = STANDARD_TYPE(IGESAppli_Flow); - atype05 = STANDARD_TYPE(IGESAppli_FlowLineSpec); - atype06 = STANDARD_TYPE(IGESAppli_LevelFunction); - atype07 = STANDARD_TYPE(IGESAppli_LevelToPWBLayerMap); - atype08 = STANDARD_TYPE(IGESAppli_LineWidening); - atype09 = STANDARD_TYPE(IGESAppli_NodalConstraint); - atype10 = STANDARD_TYPE(IGESAppli_NodalDisplAndRot); - atype11 = STANDARD_TYPE(IGESAppli_NodalResults); - atype12 = STANDARD_TYPE(IGESAppli_Node); - atype13 = STANDARD_TYPE(IGESAppli_PWBArtworkStackup); - atype14 = STANDARD_TYPE(IGESAppli_PWBDrilledHole); - atype15 = STANDARD_TYPE(IGESAppli_PartNumber); - atype16 = STANDARD_TYPE(IGESAppli_PinNumber); - atype17 = STANDARD_TYPE(IGESAppli_PipingFlow); - atype18 = STANDARD_TYPE(IGESAppli_ReferenceDesignator); - atype19 = STANDARD_TYPE(IGESAppli_RegionRestriction); +Standard_Integer IGESAppli_Protocol::NbResources() const +{ + return 2; } - Standard_Integer IGESAppli_Protocol::NbResources () const - { return 2; } - - Handle(Interface_Protocol) IGESAppli_Protocol::Resource - (const Standard_Integer num) const +Handle(Interface_Protocol) IGESAppli_Protocol::Resource(const Standard_Integer num) const { Handle(Interface_Protocol) res; - if (num == 1) res = IGESDefs::Protocol(); - if (num == 2) res = IGESDraw::Protocol(); + if (num == 1) + res = IGESDefs::Protocol(); + if (num == 2) + res = IGESDraw::Protocol(); return res; } - Standard_Integer IGESAppli_Protocol::TypeNumber - (const Handle(Standard_Type)& atype) const +Standard_Integer IGESAppli_Protocol::TypeNumber(const Handle(Standard_Type)& atype) const { - if (atype == atype01) return 1; - else if (atype == atype02) return 2; - else if (atype == atype03) return 3; - else if (atype == atype04) return 4; - else if (atype == atype05) return 5; - else if (atype == atype06) return 6; - else if (atype == atype07) return 7; - else if (atype == atype08) return 8; - else if (atype == atype09) return 9; - else if (atype == atype10) return 10; - else if (atype == atype11) return 11; - else if (atype == atype12) return 12; - else if (atype == atype13) return 13; - else if (atype == atype14) return 14; - else if (atype == atype15) return 15; - else if (atype == atype16) return 16; - else if (atype == atype17) return 17; - else if (atype == atype18) return 18; - else if (atype == atype19) return 19; + if (atype == STANDARD_TYPE(IGESAppli_DrilledHole)) + return 1; + else if (atype == STANDARD_TYPE(IGESAppli_ElementResults)) + return 2; + else if (atype == STANDARD_TYPE(IGESAppli_FiniteElement)) + return 3; + else if (atype == STANDARD_TYPE(IGESAppli_Flow)) + return 4; + else if (atype == STANDARD_TYPE(IGESAppli_FlowLineSpec)) + return 5; + else if (atype == STANDARD_TYPE(IGESAppli_LevelFunction)) + return 6; + else if (atype == STANDARD_TYPE(IGESAppli_LevelToPWBLayerMap)) + return 7; + else if (atype == STANDARD_TYPE(IGESAppli_LineWidening)) + return 8; + else if (atype == STANDARD_TYPE(IGESAppli_NodalConstraint)) + return 9; + else if (atype == STANDARD_TYPE(IGESAppli_NodalDisplAndRot)) + return 10; + else if (atype == STANDARD_TYPE(IGESAppli_NodalResults)) + return 11; + else if (atype == STANDARD_TYPE(IGESAppli_Node)) + return 12; + else if (atype == STANDARD_TYPE(IGESAppli_PWBArtworkStackup)) + return 13; + else if (atype == STANDARD_TYPE(IGESAppli_PWBDrilledHole)) + return 14; + else if (atype == STANDARD_TYPE(IGESAppli_PartNumber)) + return 15; + else if (atype == STANDARD_TYPE(IGESAppli_PinNumber)) + return 16; + else if (atype == STANDARD_TYPE(IGESAppli_PipingFlow)) + return 17; + else if (atype == STANDARD_TYPE(IGESAppli_ReferenceDesignator)) + return 18; + else if (atype == STANDARD_TYPE(IGESAppli_RegionRestriction)) + return 19; return 0; } diff --git a/src/IGESBasic/IGESBasic_Protocol.cxx b/src/IGESBasic/IGESBasic_Protocol.cxx index 2f30ee3bf4..9a966c39d6 100644 --- a/src/IGESBasic/IGESBasic_Protocol.cxx +++ b/src/IGESBasic/IGESBasic_Protocol.cxx @@ -11,20 +11,20 @@ // Alternatively, this file may be used under the terms of Open CASCADE // commercial license or contractual agreement. +#include #include -#include #include #include #include #include #include +#include #include #include #include #include #include -#include #include #include #include @@ -32,67 +32,55 @@ #include #include -IMPLEMENT_STANDARD_RTTIEXT(IGESBasic_Protocol,IGESData_Protocol) - -static int THE_IGESBasic_Protocol_deja = 0; - -static Handle(Standard_Type) atype01,atype02,atype03,atype04,atype05,atype06, - atype07,atype08,atype09,atype10,atype11,atype12,atype13,atype14,atype15,atype16; +IMPLEMENT_STANDARD_RTTIEXT(IGESBasic_Protocol, IGESData_Protocol) IGESBasic_Protocol::IGESBasic_Protocol() -{ - if (THE_IGESBasic_Protocol_deja) - { - return; - } +{} - THE_IGESBasic_Protocol_deja = 1; - atype01 = STANDARD_TYPE(IGESBasic_AssocGroupType); - atype02 = STANDARD_TYPE(IGESBasic_ExternalRefFile); - atype03 = STANDARD_TYPE(IGESBasic_ExternalRefFileIndex); - atype04 = STANDARD_TYPE(IGESBasic_ExternalRefFileName); - atype05 = STANDARD_TYPE(IGESBasic_ExternalRefLibName); - atype06 = STANDARD_TYPE(IGESBasic_ExternalRefName); - atype07 = STANDARD_TYPE(IGESBasic_ExternalReferenceFile); - atype08 = STANDARD_TYPE(IGESBasic_Group); - atype09 = STANDARD_TYPE(IGESBasic_GroupWithoutBackP); - atype10 = STANDARD_TYPE(IGESBasic_Hierarchy); - atype11 = STANDARD_TYPE(IGESBasic_Name); - atype12 = STANDARD_TYPE(IGESBasic_OrderedGroup); - atype13 = STANDARD_TYPE(IGESBasic_OrderedGroupWithoutBackP); - atype14 = STANDARD_TYPE(IGESBasic_SingleParent); - atype15 = STANDARD_TYPE(IGESBasic_SingularSubfigure); - atype16 = STANDARD_TYPE(IGESBasic_SubfigureDef); +Standard_Integer IGESBasic_Protocol::NbResources() const +{ + return 1; } - Standard_Integer IGESBasic_Protocol::NbResources () const - { return 1; } - - Handle(Interface_Protocol) IGESBasic_Protocol::Resource - (const Standard_Integer /*num*/) const +Handle(Interface_Protocol) IGESBasic_Protocol::Resource(const Standard_Integer /*num*/) const { Handle(Interface_Protocol) res = IGESData::Protocol(); return res; } - Standard_Integer IGESBasic_Protocol::TypeNumber - (const Handle(Standard_Type)& atype) const +Standard_Integer IGESBasic_Protocol::TypeNumber(const Handle(Standard_Type)& atype) const { - if (atype == atype01) return 1; - else if (atype == atype02) return 2; - else if (atype == atype03) return 3; - else if (atype == atype04) return 4; - else if (atype == atype05) return 5; - else if (atype == atype06) return 6; - else if (atype == atype07) return 7; - else if (atype == atype08) return 8; - else if (atype == atype09) return 9; - else if (atype == atype10) return 10; - else if (atype == atype11) return 11; - else if (atype == atype12) return 12; - else if (atype == atype13) return 13; - else if (atype == atype14) return 14; - else if (atype == atype15) return 15; - else if (atype == atype16) return 16; + if (atype == STANDARD_TYPE(IGESBasic_AssocGroupType)) + return 1; + else if (atype == STANDARD_TYPE(IGESBasic_ExternalRefFile)) + return 2; + else if (atype == STANDARD_TYPE(IGESBasic_ExternalRefFileIndex)) + return 3; + else if (atype == STANDARD_TYPE(IGESBasic_ExternalRefFileName)) + return 4; + else if (atype == STANDARD_TYPE(IGESBasic_ExternalRefLibName)) + return 5; + else if (atype == STANDARD_TYPE(IGESBasic_ExternalRefName)) + return 6; + else if (atype == STANDARD_TYPE(IGESBasic_ExternalReferenceFile)) + return 7; + else if (atype == STANDARD_TYPE(IGESBasic_Group)) + return 8; + else if (atype == STANDARD_TYPE(IGESBasic_GroupWithoutBackP)) + return 9; + else if (atype == STANDARD_TYPE(IGESBasic_Hierarchy)) + return 10; + else if (atype == STANDARD_TYPE(IGESBasic_Name)) + return 11; + else if (atype == STANDARD_TYPE(IGESBasic_OrderedGroup)) + return 12; + else if (atype == STANDARD_TYPE(IGESBasic_OrderedGroupWithoutBackP)) + return 13; + else if (atype == STANDARD_TYPE(IGESBasic_SingleParent)) + return 14; + else if (atype == STANDARD_TYPE(IGESBasic_SingularSubfigure)) + return 15; + else if (atype == STANDARD_TYPE(IGESBasic_SubfigureDef)) + return 16; return 0; } diff --git a/src/IGESDefs/IGESDefs_Protocol.cxx b/src/IGESDefs/IGESDefs_Protocol.cxx index c96590a0e7..f40341660b 100644 --- a/src/IGESDefs/IGESDefs_Protocol.cxx +++ b/src/IGESDefs/IGESDefs_Protocol.cxx @@ -11,13 +11,13 @@ // Alternatively, this file may be used under the terms of Open CASCADE // commercial license or contractual agreement. +#include #include #include #include #include #include -#include #include #include #include @@ -25,48 +25,37 @@ #include #include -IMPLEMENT_STANDARD_RTTIEXT(IGESDefs_Protocol,IGESData_Protocol) - -static int THE_IGESDefs_Protocol_deja = 0; - -static Handle(Standard_Type) atype1,atype2,atype3,atype4,atype5,atype6,atype7; +IMPLEMENT_STANDARD_RTTIEXT(IGESDefs_Protocol, IGESData_Protocol) IGESDefs_Protocol::IGESDefs_Protocol() -{ - if (THE_IGESDefs_Protocol_deja) - { - return; - } +{} - THE_IGESDefs_Protocol_deja = 1; - atype1 = STANDARD_TYPE(IGESDefs_AssociativityDef); - atype2 = STANDARD_TYPE(IGESDefs_AttributeDef); - atype3 = STANDARD_TYPE(IGESDefs_AttributeTable); - atype4 = STANDARD_TYPE(IGESDefs_GenericData); - atype5 = STANDARD_TYPE(IGESDefs_MacroDef); - atype6 = STANDARD_TYPE(IGESDefs_TabularData); - atype7 = STANDARD_TYPE(IGESDefs_UnitsData); +Standard_Integer IGESDefs_Protocol::NbResources() const +{ + return 1; } - Standard_Integer IGESDefs_Protocol::NbResources () const - { return 1; } - - Handle(Interface_Protocol) IGESDefs_Protocol::Resource - (const Standard_Integer /*num*/) const +Handle(Interface_Protocol) IGESDefs_Protocol::Resource(const Standard_Integer /*num*/) const { Handle(Interface_Protocol) res = IGESGraph::Protocol(); return res; } - Standard_Integer IGESDefs_Protocol::TypeNumber - (const Handle(Standard_Type)& atype) const +Standard_Integer IGESDefs_Protocol::TypeNumber(const Handle(Standard_Type)& atype) const { - if (atype == atype1) return 1; - else if (atype == atype2) return 2; - else if (atype == atype3) return 3; - else if (atype == atype4) return 4; - else if (atype == atype5) return 5; - else if (atype == atype6) return 6; - else if (atype == atype7) return 7; + if (atype == STANDARD_TYPE(IGESDefs_AssociativityDef)) + return 1; + else if (atype == STANDARD_TYPE(IGESDefs_AttributeDef)) + return 2; + else if (atype == STANDARD_TYPE(IGESDefs_AttributeTable)) + return 3; + else if (atype == STANDARD_TYPE(IGESDefs_GenericData)) + return 4; + else if (atype == STANDARD_TYPE(IGESDefs_MacroDef)) + return 5; + else if (atype == STANDARD_TYPE(IGESDefs_TabularData)) + return 6; + else if (atype == STANDARD_TYPE(IGESDefs_UnitsData)) + return 7; return 0; } diff --git a/src/IGESDimen/IGESDimen_Protocol.cxx b/src/IGESDimen/IGESDimen_Protocol.cxx index f00ec90b86..28de3f7919 100644 --- a/src/IGESDimen/IGESDimen_Protocol.cxx +++ b/src/IGESDimen/IGESDimen_Protocol.cxx @@ -11,6 +11,7 @@ // Alternatively, this file may be used under the terms of Open CASCADE // commercial license or contractual agreement. +#include #include #include @@ -18,9 +19,9 @@ #include #include #include -#include #include #include +#include #include #include #include @@ -31,7 +32,6 @@ #include #include #include -#include #include #include #include @@ -43,84 +43,73 @@ #include #include -IMPLEMENT_STANDARD_RTTIEXT(IGESDimen_Protocol,IGESData_Protocol) - -static int THE_IGESDimen_Protocol_deja = 0; - -static Handle(Standard_Type) atype01,atype02,atype03,atype04,atype05,atype06, - atype07,atype08,atype09,atype10,atype11,atype12,atype13,atype14,atype15, - atype16,atype17,atype18,atype19,atype20,atype21,atype22,atype23; +IMPLEMENT_STANDARD_RTTIEXT(IGESDimen_Protocol, IGESData_Protocol) IGESDimen_Protocol::IGESDimen_Protocol() -{ - if (THE_IGESDimen_Protocol_deja) - { - return; - } +{} - THE_IGESDimen_Protocol_deja = 1; - atype01 = STANDARD_TYPE(IGESDimen_AngularDimension); - atype02 = STANDARD_TYPE(IGESDimen_BasicDimension); - atype03 = STANDARD_TYPE(IGESDimen_CenterLine); - atype04 = STANDARD_TYPE(IGESDimen_CurveDimension); - atype05 = STANDARD_TYPE(IGESDimen_DiameterDimension); - atype06 = STANDARD_TYPE(IGESDimen_DimensionDisplayData); - atype07 = STANDARD_TYPE(IGESDimen_DimensionTolerance); - atype08 = STANDARD_TYPE(IGESDimen_DimensionUnits); - atype09 = STANDARD_TYPE(IGESDimen_DimensionedGeometry); - atype10 = STANDARD_TYPE(IGESDimen_FlagNote); - atype11 = STANDARD_TYPE(IGESDimen_GeneralLabel); - atype12 = STANDARD_TYPE(IGESDimen_GeneralNote); - atype13 = STANDARD_TYPE(IGESDimen_GeneralSymbol); - atype14 = STANDARD_TYPE(IGESDimen_LeaderArrow); - atype15 = STANDARD_TYPE(IGESDimen_LinearDimension); - atype16 = STANDARD_TYPE(IGESDimen_NewDimensionedGeometry); - atype17 = STANDARD_TYPE(IGESDimen_NewGeneralNote); - atype18 = STANDARD_TYPE(IGESDimen_OrdinateDimension); - atype10 = STANDARD_TYPE(IGESDimen_PointDimension); - atype20 = STANDARD_TYPE(IGESDimen_RadiusDimension); - atype21 = STANDARD_TYPE(IGESDimen_Section); - atype22 = STANDARD_TYPE(IGESDimen_SectionedArea); - atype23 = STANDARD_TYPE(IGESDimen_WitnessLine); +Standard_Integer IGESDimen_Protocol::NbResources() const +{ + return 2; } - Standard_Integer IGESDimen_Protocol::NbResources () const - { return 2; } - - Handle(Interface_Protocol) IGESDimen_Protocol::Resource - (const Standard_Integer num) const +Handle(Interface_Protocol) IGESDimen_Protocol::Resource(const Standard_Integer num) const { Handle(Interface_Protocol) res; - if (num == 1) res = IGESGraph::Protocol(); - if (num == 2) res = IGESGeom::Protocol(); + if (num == 1) + res = IGESGraph::Protocol(); + if (num == 2) + res = IGESGeom::Protocol(); return res; } - Standard_Integer IGESDimen_Protocol::TypeNumber - (const Handle(Standard_Type)& atype) const +Standard_Integer IGESDimen_Protocol::TypeNumber(const Handle(Standard_Type)& atype) const { - if (atype == atype01) return 1; - else if (atype == atype02) return 2; - else if (atype == atype03) return 3; - else if (atype == atype04) return 4; - else if (atype == atype05) return 5; - else if (atype == atype06) return 6; - else if (atype == atype07) return 7; - else if (atype == atype08) return 8; - else if (atype == atype09) return 9; - else if (atype == atype10) return 10; - else if (atype == atype11) return 11; - else if (atype == atype12) return 12; - else if (atype == atype13) return 13; - else if (atype == atype14) return 14; - else if (atype == atype15) return 15; - else if (atype == atype16) return 16; - else if (atype == atype17) return 17; - else if (atype == atype18) return 18; - else if (atype == atype19) return 19; - else if (atype == atype20) return 20; - else if (atype == atype21) return 21; - else if (atype == atype22) return 22; - else if (atype == atype23) return 23; + if (atype == STANDARD_TYPE(IGESDimen_AngularDimension)) + return 1; + else if (atype == STANDARD_TYPE(IGESDimen_BasicDimension)) + return 2; + else if (atype == STANDARD_TYPE(IGESDimen_CenterLine)) + return 3; + else if (atype == STANDARD_TYPE(IGESDimen_CurveDimension)) + return 4; + else if (atype == STANDARD_TYPE(IGESDimen_DiameterDimension)) + return 5; + else if (atype == STANDARD_TYPE(IGESDimen_DimensionDisplayData)) + return 6; + else if (atype == STANDARD_TYPE(IGESDimen_DimensionTolerance)) + return 7; + else if (atype == STANDARD_TYPE(IGESDimen_DimensionUnits)) + return 8; + else if (atype == STANDARD_TYPE(IGESDimen_DimensionedGeometry)) + return 9; + else if (atype == STANDARD_TYPE(IGESDimen_FlagNote)) + return 10; + else if (atype == STANDARD_TYPE(IGESDimen_GeneralLabel)) + return 11; + else if (atype == STANDARD_TYPE(IGESDimen_GeneralNote)) + return 12; + else if (atype == STANDARD_TYPE(IGESDimen_GeneralSymbol)) + return 13; + else if (atype == STANDARD_TYPE(IGESDimen_LeaderArrow)) + return 14; + else if (atype == STANDARD_TYPE(IGESDimen_LinearDimension)) + return 15; + else if (atype == STANDARD_TYPE(IGESDimen_NewDimensionedGeometry)) + return 16; + else if (atype == STANDARD_TYPE(IGESDimen_NewGeneralNote)) + return 17; + else if (atype == STANDARD_TYPE(IGESDimen_OrdinateDimension)) + return 18; + else if (atype == STANDARD_TYPE(IGESDimen_PointDimension)) + return 19; + else if (atype == STANDARD_TYPE(IGESDimen_RadiusDimension)) + return 20; + else if (atype == STANDARD_TYPE(IGESDimen_Section)) + return 21; + else if (atype == STANDARD_TYPE(IGESDimen_SectionedArea)) + return 22; + else if (atype == STANDARD_TYPE(IGESDimen_WitnessLine)) + return 23; return 0; } diff --git a/src/IGESDraw/IGESDraw_Protocol.cxx b/src/IGESDraw/IGESDraw_Protocol.cxx index 2e0bcacb12..f32e11aedf 100644 --- a/src/IGESDraw/IGESDraw_Protocol.cxx +++ b/src/IGESDraw/IGESDraw_Protocol.cxx @@ -11,6 +11,7 @@ // Alternatively, this file may be used under the terms of Open CASCADE // commercial license or contractual agreement. +#include #include #include @@ -22,7 +23,6 @@ #include #include #include -#include #include #include #include @@ -31,62 +31,51 @@ #include #include -IMPLEMENT_STANDARD_RTTIEXT(IGESDraw_Protocol,IGESData_Protocol) - -static int THE_IGESDraw_Protocol_deja = 0; -static Handle(Standard_Type) atype01,atype02,atype03,atype04,atype05,atype06, - atype07,atype08,atype09,atype10,atype11,atype12,atype13,atype14; +IMPLEMENT_STANDARD_RTTIEXT(IGESDraw_Protocol, IGESData_Protocol) IGESDraw_Protocol::IGESDraw_Protocol() -{ - if (THE_IGESDraw_Protocol_deja) - { - return; - } +{} - THE_IGESDraw_Protocol_deja = 1; - atype01 = STANDARD_TYPE(IGESDraw_CircArraySubfigure); - atype02 = STANDARD_TYPE(IGESDraw_ConnectPoint); - atype03 = STANDARD_TYPE(IGESDraw_Drawing); - atype04 = STANDARD_TYPE(IGESDraw_DrawingWithRotation); - atype05 = STANDARD_TYPE(IGESDraw_LabelDisplay); - atype06 = STANDARD_TYPE(IGESDraw_NetworkSubfigure); - atype07 = STANDARD_TYPE(IGESDraw_NetworkSubfigureDef); - atype08 = STANDARD_TYPE(IGESDraw_PerspectiveView); - atype09 = STANDARD_TYPE(IGESDraw_Planar); - atype10 = STANDARD_TYPE(IGESDraw_RectArraySubfigure); - atype11 = STANDARD_TYPE(IGESDraw_SegmentedViewsVisible); - atype12 = STANDARD_TYPE(IGESDraw_View); - atype13 = STANDARD_TYPE(IGESDraw_ViewsVisible); - atype14 = STANDARD_TYPE(IGESDraw_ViewsVisibleWithAttr); +Standard_Integer IGESDraw_Protocol::NbResources() const +{ + return 1; } - Standard_Integer IGESDraw_Protocol::NbResources () const - { return 1; } - - Handle(Interface_Protocol) IGESDraw_Protocol::Resource - (const Standard_Integer /*num*/) const +Handle(Interface_Protocol) IGESDraw_Protocol::Resource(const Standard_Integer /*num*/) const { Handle(Interface_Protocol) res = IGESDimen::Protocol(); return res; } - Standard_Integer IGESDraw_Protocol::TypeNumber - (const Handle(Standard_Type)& atype) const +Standard_Integer IGESDraw_Protocol::TypeNumber(const Handle(Standard_Type)& atype) const { - if (atype == atype01) return 1; - else if (atype == atype02) return 2; - else if (atype == atype03) return 3; - else if (atype == atype04) return 4; - else if (atype == atype05) return 5; - else if (atype == atype06) return 6; - else if (atype == atype07) return 7; - else if (atype == atype08) return 8; - else if (atype == atype09) return 9; - else if (atype == atype10) return 10; - else if (atype == atype11) return 11; - else if (atype == atype12) return 12; - else if (atype == atype13) return 13; - else if (atype == atype14) return 14; + if (atype == STANDARD_TYPE(IGESDraw_CircArraySubfigure)) + return 1; + else if (atype == STANDARD_TYPE(IGESDraw_ConnectPoint)) + return 2; + else if (atype == STANDARD_TYPE(IGESDraw_Drawing)) + return 3; + else if (atype == STANDARD_TYPE(IGESDraw_DrawingWithRotation)) + return 4; + else if (atype == STANDARD_TYPE(IGESDraw_LabelDisplay)) + return 5; + else if (atype == STANDARD_TYPE(IGESDraw_NetworkSubfigure)) + return 6; + else if (atype == STANDARD_TYPE(IGESDraw_NetworkSubfigureDef)) + return 7; + else if (atype == STANDARD_TYPE(IGESDraw_PerspectiveView)) + return 8; + else if (atype == STANDARD_TYPE(IGESDraw_Planar)) + return 9; + else if (atype == STANDARD_TYPE(IGESDraw_RectArraySubfigure)) + return 10; + else if (atype == STANDARD_TYPE(IGESDraw_SegmentedViewsVisible)) + return 11; + else if (atype == STANDARD_TYPE(IGESDraw_View)) + return 12; + else if (atype == STANDARD_TYPE(IGESDraw_ViewsVisible)) + return 13; + else if (atype == STANDARD_TYPE(IGESDraw_ViewsVisibleWithAttr)) + return 14; return 0; } diff --git a/src/IGESGeom/IGESGeom_Protocol.cxx b/src/IGESGeom/IGESGeom_Protocol.cxx index 6d3dc4e5ca..bf68173cb1 100644 --- a/src/IGESGeom/IGESGeom_Protocol.cxx +++ b/src/IGESGeom/IGESGeom_Protocol.cxx @@ -11,12 +11,13 @@ // Alternatively, this file may be used under the terms of Open CASCADE // commercial license or contractual agreement. +#include #include #include -#include #include #include +#include #include #include #include @@ -28,7 +29,6 @@ #include #include #include -#include #include #include #include @@ -39,80 +39,69 @@ #include #include -IMPLEMENT_STANDARD_RTTIEXT(IGESGeom_Protocol,IGESData_Protocol) - -static int THE_IGESGeom_Protocol_deja = 0; -static Handle(Standard_Type) atype01,atype02,atype03,atype04,atype05,atype06, - atype07,atype08,atype09,atype10,atype11,atype12,atype13,atype14,atype15, - atype16,atype17,atype18,atype19,atype20,atype21,atype22,atype23; +IMPLEMENT_STANDARD_RTTIEXT(IGESGeom_Protocol, IGESData_Protocol) IGESGeom_Protocol::IGESGeom_Protocol() +{} + +Standard_Integer IGESGeom_Protocol::NbResources() const { - if (THE_IGESGeom_Protocol_deja) - { - return; - } - THE_IGESGeom_Protocol_deja = 1; - atype01 = STANDARD_TYPE(IGESGeom_BSplineCurve); - atype02 = STANDARD_TYPE(IGESGeom_BSplineSurface); - atype03 = STANDARD_TYPE(IGESGeom_Boundary); - atype04 = STANDARD_TYPE(IGESGeom_BoundedSurface); - atype05 = STANDARD_TYPE(IGESGeom_CircularArc); - atype06 = STANDARD_TYPE(IGESGeom_CompositeCurve); - atype07 = STANDARD_TYPE(IGESGeom_ConicArc); - atype08 = STANDARD_TYPE(IGESGeom_CopiousData); - atype09 = STANDARD_TYPE(IGESGeom_CurveOnSurface); - atype10 = STANDARD_TYPE(IGESGeom_Direction); - atype11 = STANDARD_TYPE(IGESGeom_Flash); - atype12 = STANDARD_TYPE(IGESGeom_Line); - atype13 = STANDARD_TYPE(IGESGeom_OffsetCurve); - atype14 = STANDARD_TYPE(IGESGeom_OffsetSurface); - atype15 = STANDARD_TYPE(IGESGeom_Plane); - atype16 = STANDARD_TYPE(IGESGeom_Point); - atype17 = STANDARD_TYPE(IGESGeom_RuledSurface); - atype18 = STANDARD_TYPE(IGESGeom_SplineCurve); - atype19 = STANDARD_TYPE(IGESGeom_SplineSurface); - atype20 = STANDARD_TYPE(IGESGeom_SurfaceOfRevolution); - atype21 = STANDARD_TYPE(IGESGeom_TabulatedCylinder); - atype22 = STANDARD_TYPE(IGESGeom_TransformationMatrix); - atype23 = STANDARD_TYPE(IGESGeom_TrimmedSurface); + return 1; } - Standard_Integer IGESGeom_Protocol::NbResources () const - { return 1; } - - Handle(Interface_Protocol) IGESGeom_Protocol::Resource - (const Standard_Integer /*num*/) const +Handle(Interface_Protocol) IGESGeom_Protocol::Resource(const Standard_Integer /*num*/) const { Handle(Interface_Protocol) res = IGESBasic::Protocol(); return res; } - Standard_Integer IGESGeom_Protocol::TypeNumber - (const Handle(Standard_Type)& atype) const +Standard_Integer IGESGeom_Protocol::TypeNumber(const Handle(Standard_Type)& atype) const { - if (atype == atype01) return 1; - else if (atype == atype02) return 2; - else if (atype == atype03) return 3; - else if (atype == atype04) return 4; - else if (atype == atype05) return 5; - else if (atype == atype06) return 6; - else if (atype == atype07) return 7; - else if (atype == atype08) return 8; - else if (atype == atype09) return 9; - else if (atype == atype10) return 10; - else if (atype == atype11) return 11; - else if (atype == atype12) return 12; - else if (atype == atype13) return 13; - else if (atype == atype14) return 14; - else if (atype == atype15) return 15; - else if (atype == atype16) return 16; - else if (atype == atype17) return 17; - else if (atype == atype18 ) return 18; - else if (atype == atype19) return 19; - else if (atype == atype20) return 20; - else if (atype == atype21) return 21; - else if (atype == atype22) return 22; - else if (atype == atype23) return 23; + if (atype == STANDARD_TYPE(IGESGeom_BSplineCurve)) + return 1; + else if (atype == STANDARD_TYPE(IGESGeom_BSplineSurface)) + return 2; + else if (atype == STANDARD_TYPE(IGESGeom_Boundary)) + return 3; + else if (atype == STANDARD_TYPE(IGESGeom_BoundedSurface)) + return 4; + else if (atype == STANDARD_TYPE(IGESGeom_CircularArc)) + return 5; + else if (atype == STANDARD_TYPE(IGESGeom_CompositeCurve)) + return 6; + else if (atype == STANDARD_TYPE(IGESGeom_ConicArc)) + return 7; + else if (atype == STANDARD_TYPE(IGESGeom_CopiousData)) + return 8; + else if (atype == STANDARD_TYPE(IGESGeom_CurveOnSurface)) + return 9; + else if (atype == STANDARD_TYPE(IGESGeom_Direction)) + return 10; + else if (atype == STANDARD_TYPE(IGESGeom_Flash)) + return 11; + else if (atype == STANDARD_TYPE(IGESGeom_Line)) + return 12; + else if (atype == STANDARD_TYPE(IGESGeom_OffsetCurve)) + return 13; + else if (atype == STANDARD_TYPE(IGESGeom_OffsetSurface)) + return 14; + else if (atype == STANDARD_TYPE(IGESGeom_Plane)) + return 15; + else if (atype == STANDARD_TYPE(IGESGeom_Point)) + return 16; + else if (atype == STANDARD_TYPE(IGESGeom_RuledSurface)) + return 17; + else if (atype == STANDARD_TYPE(IGESGeom_SplineCurve)) + return 18; + else if (atype == STANDARD_TYPE(IGESGeom_SplineSurface)) + return 19; + else if (atype == STANDARD_TYPE(IGESGeom_SurfaceOfRevolution)) + return 20; + else if (atype == STANDARD_TYPE(IGESGeom_TabulatedCylinder)) + return 21; + else if (atype == STANDARD_TYPE(IGESGeom_TransformationMatrix)) + return 22; + else if (atype == STANDARD_TYPE(IGESGeom_TrimmedSurface)) + return 23; return 0; } diff --git a/src/IGESGraph/IGESGraph_Protocol.cxx b/src/IGESGraph/IGESGraph_Protocol.cxx index 250a4a3b87..176aa35572 100644 --- a/src/IGESGraph/IGESGraph_Protocol.cxx +++ b/src/IGESGraph/IGESGraph_Protocol.cxx @@ -11,6 +11,7 @@ // Alternatively, this file may be used under the terms of Open CASCADE // commercial license or contractual agreement. +#include #include #include @@ -25,68 +26,57 @@ #include #include #include -#include #include #include #include #include #include -IMPLEMENT_STANDARD_RTTIEXT(IGESGraph_Protocol,IGESData_Protocol) - -static int THE_IGESGraph_Protocol_deja = 0; -static Handle(Standard_Type) atype01,atype02,atype03,atype04,atype05,atype06, - atype07,atype08,atype09,atype10,atype11,atype12,atype13,atype14; +IMPLEMENT_STANDARD_RTTIEXT(IGESGraph_Protocol, IGESData_Protocol) IGESGraph_Protocol::IGESGraph_Protocol() +{} + +Standard_Integer IGESGraph_Protocol::NbResources() const { - if (THE_IGESGraph_Protocol_deja) - { - return; - } - THE_IGESGraph_Protocol_deja = 1; - atype01 = STANDARD_TYPE(IGESGraph_Color); - atype02 = STANDARD_TYPE(IGESGraph_DefinitionLevel); - atype03 = STANDARD_TYPE(IGESGraph_DrawingSize); - atype04 = STANDARD_TYPE(IGESGraph_DrawingUnits); - atype05 = STANDARD_TYPE(IGESGraph_HighLight); - atype06 = STANDARD_TYPE(IGESGraph_IntercharacterSpacing); - atype07 = STANDARD_TYPE(IGESGraph_LineFontDefPattern); - atype08 = STANDARD_TYPE(IGESGraph_LineFontPredefined); - atype09 = STANDARD_TYPE(IGESGraph_LineFontDefTemplate); - atype10 = STANDARD_TYPE(IGESGraph_NominalSize); - atype11 = STANDARD_TYPE(IGESGraph_Pick); - atype12 = STANDARD_TYPE(IGESGraph_TextDisplayTemplate); - atype13 = STANDARD_TYPE(IGESGraph_TextFontDef); - atype14 = STANDARD_TYPE(IGESGraph_UniformRectGrid); + return 1; } - Standard_Integer IGESGraph_Protocol::NbResources () const - { return 1; } - - Handle(Interface_Protocol) IGESGraph_Protocol::Resource - (const Standard_Integer /*num*/) const +Handle(Interface_Protocol) IGESGraph_Protocol::Resource(const Standard_Integer /*num*/) const { Handle(Interface_Protocol) res = IGESBasic::Protocol(); return res; } - Standard_Integer IGESGraph_Protocol::TypeNumber - (const Handle(Standard_Type)& atype) const +Standard_Integer IGESGraph_Protocol::TypeNumber(const Handle(Standard_Type)& atype) const { - if (atype == atype01) return 1; - else if (atype == atype02) return 2; - else if (atype == atype03) return 3; - else if (atype == atype04) return 4; - else if (atype == atype05) return 5; - else if (atype == atype06) return 6; - else if (atype == atype07) return 7; - else if (atype == atype08) return 8; - else if (atype == atype09) return 9; - else if (atype == atype10) return 10; - else if (atype == atype11) return 11; - else if (atype == atype12) return 12; - else if (atype == atype13) return 13; - else if (atype == atype14) return 14; + if (atype == STANDARD_TYPE(IGESGraph_Color)) + return 1; + else if (atype == STANDARD_TYPE(IGESGraph_DefinitionLevel)) + return 2; + else if (atype == STANDARD_TYPE(IGESGraph_DrawingSize)) + return 3; + else if (atype == STANDARD_TYPE(IGESGraph_DrawingUnits)) + return 4; + else if (atype == STANDARD_TYPE(IGESGraph_HighLight)) + return 5; + else if (atype == STANDARD_TYPE(IGESGraph_IntercharacterSpacing)) + return 6; + else if (atype == STANDARD_TYPE(IGESGraph_LineFontDefPattern)) + return 7; + else if (atype == STANDARD_TYPE(IGESGraph_LineFontPredefined)) + return 8; + else if (atype == STANDARD_TYPE(IGESGraph_LineFontDefTemplate)) + return 9; + else if (atype == STANDARD_TYPE(IGESGraph_NominalSize)) + return 10; + else if (atype == STANDARD_TYPE(IGESGraph_Pick)) + return 11; + else if (atype == STANDARD_TYPE(IGESGraph_TextDisplayTemplate)) + return 12; + else if (atype == STANDARD_TYPE(IGESGraph_TextFontDef)) + return 13; + else if (atype == STANDARD_TYPE(IGESGraph_UniformRectGrid)) + return 14; return 0; } diff --git a/src/IGESSolid/IGESSolid_Protocol.cxx b/src/IGESSolid/IGESSolid_Protocol.cxx index bff8bcc78b..9f970e2ca3 100644 --- a/src/IGESSolid/IGESSolid_Protocol.cxx +++ b/src/IGESSolid/IGESSolid_Protocol.cxx @@ -11,6 +11,7 @@ // Alternatively, this file may be used under the terms of Open CASCADE // commercial license or contractual agreement. +#include #include #include @@ -25,7 +26,6 @@ #include #include #include -#include #include #include #include @@ -41,82 +41,71 @@ #include #include -IMPLEMENT_STANDARD_RTTIEXT(IGESSolid_Protocol,IGESData_Protocol) - -static int THE_IGESSolid_Protocol_deja = 0; -static Handle(Standard_Type) atype01,atype02,atype03,atype04,atype05,atype06, - atype07,atype08,atype09,atype10,atype11,atype12,atype13,atype14,atype15, - atype16,atype17,atype18,atype19,atype20,atype21,atype22,atype23,atype24; +IMPLEMENT_STANDARD_RTTIEXT(IGESSolid_Protocol, IGESData_Protocol) IGESSolid_Protocol::IGESSolid_Protocol() +{} + +Standard_Integer IGESSolid_Protocol::NbResources() const { - if (THE_IGESSolid_Protocol_deja) - { - return; - } - THE_IGESSolid_Protocol_deja = 1; - atype01 = STANDARD_TYPE(IGESSolid_Block); - atype02 = STANDARD_TYPE(IGESSolid_BooleanTree); - atype03 = STANDARD_TYPE(IGESSolid_ConeFrustum); - atype04 = STANDARD_TYPE(IGESSolid_ConicalSurface); - atype05 = STANDARD_TYPE(IGESSolid_Cylinder); - atype06 = STANDARD_TYPE(IGESSolid_CylindricalSurface); - atype07 = STANDARD_TYPE(IGESSolid_EdgeList); - atype08 = STANDARD_TYPE(IGESSolid_Ellipsoid); - atype09 = STANDARD_TYPE(IGESSolid_Face); - atype10 = STANDARD_TYPE(IGESSolid_Loop); - atype11 = STANDARD_TYPE(IGESSolid_ManifoldSolid); - atype12 = STANDARD_TYPE(IGESSolid_PlaneSurface); - atype13 = STANDARD_TYPE(IGESSolid_RightAngularWedge); - atype14 = STANDARD_TYPE(IGESSolid_SelectedComponent); - atype15 = STANDARD_TYPE(IGESSolid_Shell); - atype16 = STANDARD_TYPE(IGESSolid_SolidAssembly); - atype17 = STANDARD_TYPE(IGESSolid_SolidInstance); - atype18 = STANDARD_TYPE(IGESSolid_SolidOfLinearExtrusion); - atype19 = STANDARD_TYPE(IGESSolid_SolidOfRevolution); - atype20 = STANDARD_TYPE(IGESSolid_Sphere); - atype21 = STANDARD_TYPE(IGESSolid_SphericalSurface); - atype22 = STANDARD_TYPE(IGESSolid_ToroidalSurface); - atype23 = STANDARD_TYPE(IGESSolid_Torus); - atype24 = STANDARD_TYPE(IGESSolid_VertexList); + return 1; } - Standard_Integer IGESSolid_Protocol::NbResources () const - { return 1; } - - Handle(Interface_Protocol) IGESSolid_Protocol::Resource - (const Standard_Integer /*num*/) const +Handle(Interface_Protocol) IGESSolid_Protocol::Resource(const Standard_Integer /*num*/) const { Handle(Interface_Protocol) res = IGESGeom::Protocol(); return res; } - Standard_Integer IGESSolid_Protocol::TypeNumber - (const Handle(Standard_Type)& atype) const +Standard_Integer IGESSolid_Protocol::TypeNumber(const Handle(Standard_Type)& atype) const { - if (atype == atype01) return 1; - else if (atype == atype02) return 2; - else if (atype == atype03) return 3; - else if (atype == atype04) return 4; - else if (atype == atype05) return 5; - else if (atype == atype06) return 6; - else if (atype == atype07) return 7; - else if (atype == atype08) return 8; - else if (atype == atype09) return 9; - else if (atype == atype10) return 10; - else if (atype == atype11) return 11; - else if (atype == atype12) return 12; - else if (atype == atype13) return 13; - else if (atype == atype14) return 14; - else if (atype == atype15) return 15; - else if (atype == atype16) return 16; - else if (atype == atype17) return 17; - else if (atype == atype18) return 18; - else if (atype == atype19) return 19; - else if (atype == atype20) return 20; - else if (atype == atype21) return 21; - else if (atype == atype22) return 22; - else if (atype == atype23) return 23; - else if (atype == atype24) return 24; + if (atype == STANDARD_TYPE(IGESSolid_Block)) + return 1; + else if (atype == STANDARD_TYPE(IGESSolid_BooleanTree)) + return 2; + else if (atype == STANDARD_TYPE(IGESSolid_ConeFrustum)) + return 3; + else if (atype == STANDARD_TYPE(IGESSolid_ConicalSurface)) + return 4; + else if (atype == STANDARD_TYPE(IGESSolid_Cylinder)) + return 5; + else if (atype == STANDARD_TYPE(IGESSolid_CylindricalSurface)) + return 6; + else if (atype == STANDARD_TYPE(IGESSolid_EdgeList)) + return 7; + else if (atype == STANDARD_TYPE(IGESSolid_Ellipsoid)) + return 8; + else if (atype == STANDARD_TYPE(IGESSolid_Face)) + return 9; + else if (atype == STANDARD_TYPE(IGESSolid_Loop)) + return 10; + else if (atype == STANDARD_TYPE(IGESSolid_ManifoldSolid)) + return 11; + else if (atype == STANDARD_TYPE(IGESSolid_PlaneSurface)) + return 12; + else if (atype == STANDARD_TYPE(IGESSolid_RightAngularWedge)) + return 13; + else if (atype == STANDARD_TYPE(IGESSolid_SelectedComponent)) + return 14; + else if (atype == STANDARD_TYPE(IGESSolid_Shell)) + return 15; + else if (atype == STANDARD_TYPE(IGESSolid_SolidAssembly)) + return 16; + else if (atype == STANDARD_TYPE(IGESSolid_SolidInstance)) + return 17; + else if (atype == STANDARD_TYPE(IGESSolid_SolidOfLinearExtrusion)) + return 18; + else if (atype == STANDARD_TYPE(IGESSolid_SolidOfRevolution)) + return 19; + else if (atype == STANDARD_TYPE(IGESSolid_Sphere)) + return 20; + else if (atype == STANDARD_TYPE(IGESSolid_SphericalSurface)) + return 21; + else if (atype == STANDARD_TYPE(IGESSolid_ToroidalSurface)) + return 22; + else if (atype == STANDARD_TYPE(IGESSolid_Torus)) + return 23; + else if (atype == STANDARD_TYPE(IGESSolid_VertexList)) + return 24; return 0; }