1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00
occt/src/StepElement/StepElement_MeasureOrUnspecifiedValue.cxx
abv 42cf5bc1ca 0024002: Overall code and build procedure refactoring -- automatic
Automatic upgrade of OCCT code by command "occt_upgrade . -nocdl":
- WOK-generated header files from inc and sources from drv are moved to src
- CDL files removed
- All packages are converted to nocdlpack
2015-07-12 07:42:38 +03:00

136 lines
5.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 <Standard_Transient.hxx>
#include <StepData_SelectMember.hxx>
#include <StepElement_MeasureOrUnspecifiedValue.hxx>
#include <StepElement_MeasureOrUnspecifiedValueMember.hxx>
#include <TCollection_HAsciiString.hxx>
static Standard_CString aCDM = "CONTEXT_DEPENDENT_MEASURE";
static Standard_CString anUV = "UNSPECIFIED_VALUE";
//=======================================================================
//function : StepElement_MeasureOrUnspecifiedValue
//purpose :
//=======================================================================
StepElement_MeasureOrUnspecifiedValue::StepElement_MeasureOrUnspecifiedValue ()
{
}
//=======================================================================
//function : CaseNum
//purpose :
//=======================================================================
Standard_Integer StepElement_MeasureOrUnspecifiedValue::CaseNum (const Handle(Standard_Transient)& /*ent*/) const
{
return 0;
}
//=======================================================================
//function : CaseMem
//purpose :
//=======================================================================
Standard_Integer StepElement_MeasureOrUnspecifiedValue::CaseMem (const Handle(StepData_SelectMember)& ent) const
{
if(ent.IsNull()) return 0;
if(ent->Matches(aCDM)) return 1;
else if(ent->Matches(anUV)) return 2;
else return 0;
}
//=======================================================================
//function : NewMember
//purpose :
//=======================================================================
Handle(StepData_SelectMember) StepElement_MeasureOrUnspecifiedValue::NewMember() const
{
return new StepElement_MeasureOrUnspecifiedValueMember;
}
//=======================================================================
//function : SetContextDependentMeasure
//purpose :
//=======================================================================
void StepElement_MeasureOrUnspecifiedValue::SetContextDependentMeasure (const Standard_Real val)
{
Handle(StepElement_MeasureOrUnspecifiedValueMember) SelMem = Handle(StepElement_MeasureOrUnspecifiedValueMember)::DownCast(Value());
if(SelMem.IsNull()) return;
Handle(TCollection_HAsciiString) name = new TCollection_HAsciiString("CONTEXT_DEPENDENT_MEASURE");
SelMem->SetName(name->ToCString());
SelMem->SetReal(val);
}
//=======================================================================
//function : ContextDependentMeasure
//purpose :
//=======================================================================
Standard_Real StepElement_MeasureOrUnspecifiedValue::ContextDependentMeasure () const
{
Handle(StepElement_MeasureOrUnspecifiedValueMember) SelMem = Handle(StepElement_MeasureOrUnspecifiedValueMember)::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("CONTEXT_DEPENDENT_MEASURE");
if(name->IsDifferent(nameitem)) return 0;
Standard_Real val = SelMem->Real();
return val;
}
//=======================================================================
//function : SetUnspecifiedValue
//purpose :
//=======================================================================
void StepElement_MeasureOrUnspecifiedValue::SetUnspecifiedValue (const StepElement_UnspecifiedValue val)
{
Handle(StepElement_MeasureOrUnspecifiedValueMember) SelMem = Handle(StepElement_MeasureOrUnspecifiedValueMember)::DownCast(Value());
if(SelMem.IsNull()) return;
Handle(TCollection_HAsciiString) name = new TCollection_HAsciiString("UNSPECIFIED_VALUE");
SelMem->SetName(name->ToCString());
SelMem->SetEnum((Standard_Integer)val);
}
//=======================================================================
//function : UnspecifiedValue
//purpose :
//=======================================================================
StepElement_UnspecifiedValue StepElement_MeasureOrUnspecifiedValue::UnspecifiedValue () const
{
Handle(StepElement_MeasureOrUnspecifiedValueMember) SelMem = Handle(StepElement_MeasureOrUnspecifiedValueMember)::DownCast(Value());
if(SelMem.IsNull()) return StepElement_Unspecified;
Handle(TCollection_HAsciiString) name = new TCollection_HAsciiString;
name->AssignCat(SelMem->Name());
Handle(TCollection_HAsciiString) nameitem = new TCollection_HAsciiString("UNSPECIFIED_VALUE");
if(name->IsDifferent(nameitem)) return StepElement_Unspecified;
Standard_Integer numit = SelMem->Enum();
StepElement_UnspecifiedValue val;
switch(numit) {
case 1 : val = StepElement_Unspecified; break;
default : return StepElement_Unspecified;break;
}
return val;
}