Files
OCCT/src/StepElement/StepElement_MeasureOrUnspecifiedValue.cxx
dpasukhi a5a7b3185b Coding - Apply .clang-format formatting #286
Update empty method guards to new style with regex (see PR).
Used clang-format 18.1.8.
New actions to validate code formatting is added.
Update .clang-format with disabling of include sorting.
  It is temporary changes, then include will be sorted.
Apply formatting for /src and /tools folder.
The files with .hxx,.cxx,.lxx,.h,.pxx,.hpp,*.cpp extensions.
2025-01-26 00:43:57 +00:00

132 lines
4.7 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";
//=================================================================================================
StepElement_MeasureOrUnspecifiedValue::StepElement_MeasureOrUnspecifiedValue() {}
//=================================================================================================
Standard_Integer StepElement_MeasureOrUnspecifiedValue::CaseNum(
const Handle(Standard_Transient)& /*ent*/) const
{
return 0;
}
//=================================================================================================
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;
}
//=================================================================================================
Handle(StepData_SelectMember) StepElement_MeasureOrUnspecifiedValue::NewMember() const
{
return new StepElement_MeasureOrUnspecifiedValueMember;
}
//=================================================================================================
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);
}
//=================================================================================================
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;
}
//=================================================================================================
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);
}
//=================================================================================================
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;
}