1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-06-05 11:24:17 +03:00
occt/src/StepElement/StepElement_ElementAspectMember.cxx
abv ed4415982c 0024624: Lost word in license statement in source files
License statement text corrected; compiler warnings caused by Bison 2.41 disabled for MSVC; a few other compiler warnings on 54-bit Windows eliminated by appropriate type cast
Wrong license statements corrected in several files.
Copyright and license statements added in XSD and GLSL files.
Copyright year updated in some files.
Obsolete documentation files removed from DrawResources.
2014-03-25 16:38:55 +04:00

126 lines
4.3 KiB
C++

// Created on: 2002-12-10
// Created by: data exchange team
// Copyright (c) 2002-2014 OPEN CASCADE SAS
//
// This file is part of Open CASCADE Technology software library.
//
// This library is free software; you can redistribute it and/or modify it under
// the terms of the GNU Lesser General Public License version 2.1 as published
// by the Free Software Foundation, with special exception defined in the file
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
// distribution for complete text of the license and disclaimer of any warranty.
//
// Alternatively, this file may be used under the terms of Open CASCADE
// commercial license or contractual agreement.
// Generator: ExpToCas (EXPRESS -> CASCADE/XSTEP Translator) V2.0
#include <StepElement_ElementAspectMember.ixx>
#include <TCollection_HAsciiString.hxx>
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);
}