// File: StepElement_ElementAspectMember.cxx // Created: Tue Dec 10 18:12:58 2002 // Author: data exchange team // Generator: ExpToCas (EXPRESS -> CASCADE/XSTEP Translator) V2.0 // Copyright: Open CASCADE 2002 #include #include static Standard_CString aElementVolume = "ELEMENT_VOLUME"; static Standard_CString aVolume3dFace = "VOLUME_3D_FACE"; static Standard_CString aVolume2dFace = "VOLUME_2D_FACE"; static Standard_CString aVolume3dEdge = "VOLUME_3D_EDGE"; static Standard_CString aVolume2dEdge = "VOLUME_2D_EDGE"; static Standard_CString aSurface3dFace = "SURFACE_3D_FACE"; static Standard_CString aSurface2dFace = "SURFACE_2D_FACE"; static Standard_CString aSurface3dEdge = "SURFACE_3D_EDGE"; static Standard_CString aSurface2dEdge = "SURFACE_2D_EDGE"; static Standard_CString aCurveEdge = "CURVE_EDGE"; //======================================================================= //function : StepElement_ElementAspectMember //purpose : //======================================================================= StepElement_ElementAspectMember::StepElement_ElementAspectMember () : mycase(0) { } //======================================================================= //function : HasName //purpose : //======================================================================= Standard_Boolean StepElement_ElementAspectMember::HasName() const { return mycase >0; } //======================================================================= //function : Name //purpose : //======================================================================= Standard_CString StepElement_ElementAspectMember::Name() const { switch(mycase) { case 1 : return aElementVolume; case 2 : return aVolume3dFace; case 3 : return aVolume2dFace; case 4 : return aVolume3dEdge; case 5 : return aVolume2dEdge; case 6 : return aSurface3dFace; case 7 : return aSurface2dFace; case 8 : return aSurface3dEdge; case 9 : return aSurface2dEdge; case 10 : return aCurveEdge; default : break; } return ""; } //======================================================================= //function : CompareNames //purpose : //======================================================================= static Standard_Integer CompareNames(const Standard_CString name,Standard_Integer &numen) { Standard_Integer thecase =0; if (!name || name[0] == '\0') thecase = 0; else if(!strcmp (name,aElementVolume)) { thecase = 1; numen = 1; } else if(!strcmp (name,aVolume3dFace)) thecase = 2; else if(!strcmp (name,aVolume2dFace)) thecase = 3; else if(!strcmp (name,aVolume3dEdge)) thecase = 4; else if(!strcmp (name,aVolume2dEdge)) thecase = 5; else if(!strcmp (name,aSurface3dFace)) thecase = 6; else if(!strcmp (name,aSurface2dFace)) thecase = 7; else if(!strcmp (name,aSurface3dEdge)) thecase = 8; else if(!strcmp (name,aSurface2dEdge)) thecase = 9; else if(!strcmp (name,aCurveEdge)) { thecase = 10; numen = 1; } return thecase; } //======================================================================= //function : SetName //purpose : //======================================================================= Standard_Boolean StepElement_ElementAspectMember::SetName(const Standard_CString name) { Standard_Integer numit =0; mycase = CompareNames(name,numit); if(numit) SetInteger(numit); return (mycase >0); } //======================================================================= //function : Matches //purpose : //======================================================================= Standard_Boolean StepElement_ElementAspectMember::Matches(const Standard_CString name) const { Standard_Integer numit =0; Standard_Integer thecase = CompareNames(name,numit); return (mycase==thecase); }