1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-05-06 10:36:12 +03:00
occt/src/StepElement/StepElement_SurfaceElementPurpose.cxx
bugmaster b311480ed5 0023024: Update headers of OCCT files
Added appropriate copyright and license information in source files
2012-03-21 19:43:04 +04:00

139 lines
6.0 KiB
C++
Executable File

// Created on: 2002-12-10
// Created by: data exchange team
// Copyright (c) 2002-2012 OPEN CASCADE SAS
//
// The content of this file is subject to the Open CASCADE Technology Public
// License Version 6.5 (the "License"). You may not use the content of this file
// except in compliance with the License. Please obtain a copy of the License
// at http://www.opencascade.org and read it completely before using this file.
//
// The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
// main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
//
// The Original Code and all software distributed under the License is
// distributed on an "AS IS" basis, without warranty of any kind, and the
// Initial Developer hereby disclaims all such warranties, including without
// limitation, any warranties of merchantability, fitness for a particular
// purpose or non-infringement. Please see the License for the specific terms
// and conditions governing the rights and limitations under the License.
// Generator: ExpToCas (EXPRESS -> CASCADE/XSTEP Translator) V2.0
#include <StepElement_SurfaceElementPurpose.ixx>
#include <StepElement_SurfaceElementPurposeMember.hxx>
#include <TCollection_HAsciiString.hxx>
//=======================================================================
//function : StepElement_SurfaceElementPurpose
//purpose :
//=======================================================================
StepElement_SurfaceElementPurpose::StepElement_SurfaceElementPurpose ()
{
}
//=======================================================================
//function : CaseNum
//purpose :
//=======================================================================
Standard_Integer StepElement_SurfaceElementPurpose::CaseNum (const Handle(Standard_Transient)& ent) const
{
return 0;
}
//=======================================================================
//function : CaseMem
//purpose :
//=======================================================================
Standard_Integer StepElement_SurfaceElementPurpose::CaseMem (const Handle(StepData_SelectMember)& ent) const
{
if(ent.IsNull()) return 0;
if(ent->Matches("EnumeratedSurfaceElementPurpose")) return 1;
else if(ent->Matches("ApplicationDefinedElementPurpose")) return 2;
else return 0;
}
//=======================================================================
//function : NewMember
//purpose :
//=======================================================================
Handle(StepData_SelectMember) StepElement_SurfaceElementPurpose::NewMember() const
{
return new StepElement_SurfaceElementPurposeMember;
}
//=======================================================================
//function : SetEnumeratedSurfaceElementPurpose
//purpose :
//=======================================================================
void StepElement_SurfaceElementPurpose::SetEnumeratedSurfaceElementPurpose (const StepElement_EnumeratedSurfaceElementPurpose val)
{
Handle(StepElement_SurfaceElementPurposeMember) SelMem = Handle(StepElement_SurfaceElementPurposeMember)::DownCast(Value());
if(SelMem.IsNull()) return;
Handle(TCollection_HAsciiString) name = new TCollection_HAsciiString("EnumeratedSurfaceElementPurpose");
SelMem->SetName(name->ToCString());
SelMem->SetEnum((Standard_Integer)val);
}
//=======================================================================
//function : EnumeratedSurfaceElementPurpose
//purpose :
//=======================================================================
StepElement_EnumeratedSurfaceElementPurpose StepElement_SurfaceElementPurpose::EnumeratedSurfaceElementPurpose () const
{
Handle(StepElement_SurfaceElementPurposeMember) SelMem = Handle(StepElement_SurfaceElementPurposeMember)::DownCast(Value());
if(SelMem.IsNull()) return StepElement_MembraneDirect;
Handle(TCollection_HAsciiString) name = new TCollection_HAsciiString;
name->AssignCat(SelMem->Name());
Handle(TCollection_HAsciiString) nameitem = new TCollection_HAsciiString("EnumeratedSurfaceElementPurpose");
if(name->IsDifferent(nameitem)) return StepElement_MembraneDirect;
Standard_Integer numit = SelMem->Enum();
StepElement_EnumeratedSurfaceElementPurpose val;
switch(numit) {
case 1 : val = StepElement_MembraneDirect; break;
case 2 : val = StepElement_MembraneShear; break;
case 3 : val = StepElement_BendingDirect; break;
case 4 : val = StepElement_BendingTorsion; break;
case 5 : val = StepElement_NormalToPlaneShear; break;
default : return StepElement_MembraneDirect;break;
}
return val;
}
//=======================================================================
//function : SetApplicationDefinedElementPurpose
//purpose :
//=======================================================================
void StepElement_SurfaceElementPurpose::SetApplicationDefinedElementPurpose (const Handle(TCollection_HAsciiString) &val)
{
Handle(StepElement_SurfaceElementPurposeMember) SelMem = Handle(StepElement_SurfaceElementPurposeMember)::DownCast(Value());
if(SelMem.IsNull()) return;
Handle(TCollection_HAsciiString) name = new TCollection_HAsciiString("ApplicationDefinedElementPurpose");
SelMem->SetName(name->ToCString());
SelMem->SetString(val->ToCString());
}
//=======================================================================
//function : ApplicationDefinedElementPurpose
//purpose :
//=======================================================================
Handle(TCollection_HAsciiString) StepElement_SurfaceElementPurpose::ApplicationDefinedElementPurpose () const
{
Handle(StepElement_SurfaceElementPurposeMember) SelMem = Handle(StepElement_SurfaceElementPurposeMember)::DownCast(Value());
if(SelMem.IsNull()) return 0;
Handle(TCollection_HAsciiString) name = new TCollection_HAsciiString;
name->AssignCat(SelMem->Name());
Handle(TCollection_HAsciiString) nameitem = new TCollection_HAsciiString("ApplicationDefinedElementPurpose");
if(name->IsDifferent(nameitem)) return 0;
Handle(TCollection_HAsciiString) val = new TCollection_HAsciiString;
val->AssignCat(SelMem->String());
return val;
}