mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-09 13:22:24 +03:00
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.
119 lines
3.9 KiB
C++
119 lines
3.9 KiB
C++
// Created on: 2000-05-10
|
|
// Created by: Andrey BETENEV
|
|
// Copyright (c) 2000-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) V1.1
|
|
|
|
#include <Interface_EntityIterator.hxx>
|
|
#include "RWStepAP214_RWExternallyDefinedClass.pxx"
|
|
#include <StepAP214_ExternallyDefinedClass.hxx>
|
|
#include <StepBasic_ExternallyDefinedItem.hxx>
|
|
#include <StepBasic_ExternalSource.hxx>
|
|
#include <StepData_StepReaderData.hxx>
|
|
#include <StepData_StepWriter.hxx>
|
|
|
|
//=================================================================================================
|
|
|
|
RWStepAP214_RWExternallyDefinedClass::RWStepAP214_RWExternallyDefinedClass() {}
|
|
|
|
//=================================================================================================
|
|
|
|
void RWStepAP214_RWExternallyDefinedClass::ReadStep(
|
|
const Handle(StepData_StepReaderData)& data,
|
|
const Standard_Integer num,
|
|
Handle(Interface_Check)& ach,
|
|
const Handle(StepAP214_ExternallyDefinedClass)& ent) const
|
|
{
|
|
// Check number of parameters
|
|
if (!data->CheckNbParams(num, 4, ach, "externally_defined_class"))
|
|
return;
|
|
|
|
// Inherited fields of Group
|
|
|
|
Handle(TCollection_HAsciiString) aGroup_Name;
|
|
data->ReadString(num, 1, "group.name", ach, aGroup_Name);
|
|
|
|
Handle(TCollection_HAsciiString) aGroup_Description;
|
|
Standard_Boolean hasGroup_Description = Standard_True;
|
|
if (data->IsParamDefined(num, 2))
|
|
{
|
|
data->ReadString(num, 2, "group.description", ach, aGroup_Description);
|
|
}
|
|
else
|
|
{
|
|
hasGroup_Description = Standard_False;
|
|
}
|
|
|
|
// Inherited fields of ExternallyDefinedItem
|
|
|
|
StepBasic_SourceItem aExternallyDefinedItem_ItemId;
|
|
data->ReadEntity(num, 3, "externally_defined_item.item_id", ach, aExternallyDefinedItem_ItemId);
|
|
|
|
Handle(StepBasic_ExternalSource) aExternallyDefinedItem_Source;
|
|
data->ReadEntity(num,
|
|
4,
|
|
"externally_defined_item.source",
|
|
ach,
|
|
STANDARD_TYPE(StepBasic_ExternalSource),
|
|
aExternallyDefinedItem_Source);
|
|
|
|
// Initialize entity
|
|
ent->Init(aGroup_Name,
|
|
hasGroup_Description,
|
|
aGroup_Description,
|
|
aExternallyDefinedItem_ItemId,
|
|
aExternallyDefinedItem_Source);
|
|
}
|
|
|
|
//=================================================================================================
|
|
|
|
void RWStepAP214_RWExternallyDefinedClass::WriteStep(
|
|
StepData_StepWriter& SW,
|
|
const Handle(StepAP214_ExternallyDefinedClass)& ent) const
|
|
{
|
|
|
|
// Inherited fields of Group
|
|
|
|
SW.Send(ent->StepBasic_Group::Name());
|
|
|
|
if (ent->StepBasic_Group::HasDescription())
|
|
{
|
|
SW.Send(ent->StepBasic_Group::Description());
|
|
}
|
|
else
|
|
SW.SendUndef();
|
|
|
|
// Inherited fields of ExternallyDefinedItem
|
|
|
|
SW.Send(ent->ExternallyDefinedItem()->ItemId().Value());
|
|
|
|
SW.Send(ent->ExternallyDefinedItem()->Source());
|
|
}
|
|
|
|
//=================================================================================================
|
|
|
|
void RWStepAP214_RWExternallyDefinedClass::Share(
|
|
const Handle(StepAP214_ExternallyDefinedClass)& ent,
|
|
Interface_EntityIterator& iter) const
|
|
{
|
|
|
|
// Inherited fields of Group
|
|
|
|
// Inherited fields of ExternallyDefinedItem
|
|
|
|
iter.AddItem(ent->ExternallyDefinedItem()->ItemId().Value());
|
|
|
|
iter.AddItem(ent->ExternallyDefinedItem()->Source());
|
|
}
|