mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +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.
144 lines
4.7 KiB
C++
144 lines
4.7 KiB
C++
// Created on: 2000-05-11
|
|
// Created by: data exchange team
|
|
// 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 "RWStepBasic_RWDocumentFile.pxx"
|
|
#include <StepBasic_CharacterizedObject.hxx>
|
|
#include <StepBasic_DocumentFile.hxx>
|
|
#include <StepBasic_DocumentType.hxx>
|
|
#include <StepData_StepReaderData.hxx>
|
|
#include <StepData_StepWriter.hxx>
|
|
|
|
//=================================================================================================
|
|
|
|
RWStepBasic_RWDocumentFile::RWStepBasic_RWDocumentFile() {}
|
|
|
|
//=================================================================================================
|
|
|
|
void RWStepBasic_RWDocumentFile::ReadStep(const Handle(StepData_StepReaderData)& data,
|
|
const Standard_Integer num,
|
|
Handle(Interface_Check)& ach,
|
|
const Handle(StepBasic_DocumentFile)& ent) const
|
|
{
|
|
// Check number of parameters
|
|
if (!data->CheckNbParams(num, 6, ach, "document_file"))
|
|
return;
|
|
|
|
// Inherited fields of Document
|
|
|
|
Handle(TCollection_HAsciiString) aDocument_Id;
|
|
data->ReadString(num, 1, "document.id", ach, aDocument_Id);
|
|
|
|
Handle(TCollection_HAsciiString) aDocument_Name;
|
|
data->ReadString(num, 2, "document.name", ach, aDocument_Name);
|
|
|
|
Handle(TCollection_HAsciiString) aDocument_Description;
|
|
Standard_Boolean hasDocument_Description = Standard_True;
|
|
if (data->IsParamDefined(num, 3))
|
|
{
|
|
data->ReadString(num, 3, "document.description", ach, aDocument_Description);
|
|
}
|
|
else
|
|
{
|
|
hasDocument_Description = Standard_False;
|
|
}
|
|
|
|
Handle(StepBasic_DocumentType) aDocument_Kind;
|
|
data->ReadEntity(num,
|
|
4,
|
|
"document.kind",
|
|
ach,
|
|
STANDARD_TYPE(StepBasic_DocumentType),
|
|
aDocument_Kind);
|
|
|
|
// Inherited fields of CharacterizedObject
|
|
|
|
Handle(TCollection_HAsciiString) aCharacterizedObject_Name;
|
|
data->ReadString(num, 5, "characterized_object.name", ach, aCharacterizedObject_Name);
|
|
|
|
Handle(TCollection_HAsciiString) aCharacterizedObject_Description;
|
|
Standard_Boolean hasCharacterizedObject_Description = Standard_True;
|
|
if (data->IsParamDefined(num, 6))
|
|
{
|
|
data->ReadString(num,
|
|
6,
|
|
"characterized_object.description",
|
|
ach,
|
|
aCharacterizedObject_Description);
|
|
}
|
|
else
|
|
{
|
|
hasCharacterizedObject_Description = Standard_False;
|
|
}
|
|
|
|
// Initialize entity
|
|
ent->Init(aDocument_Id,
|
|
aDocument_Name,
|
|
hasDocument_Description,
|
|
aDocument_Description,
|
|
aDocument_Kind,
|
|
aCharacterizedObject_Name,
|
|
hasCharacterizedObject_Description,
|
|
aCharacterizedObject_Description);
|
|
}
|
|
|
|
//=================================================================================================
|
|
|
|
void RWStepBasic_RWDocumentFile::WriteStep(StepData_StepWriter& SW,
|
|
const Handle(StepBasic_DocumentFile)& ent) const
|
|
{
|
|
|
|
// Inherited fields of Document
|
|
|
|
SW.Send(ent->StepBasic_Document::Id());
|
|
|
|
SW.Send(ent->StepBasic_Document::Name());
|
|
|
|
if (ent->StepBasic_Document::HasDescription())
|
|
{
|
|
SW.Send(ent->StepBasic_Document::Description());
|
|
}
|
|
else
|
|
SW.SendUndef();
|
|
|
|
SW.Send(ent->StepBasic_Document::Kind());
|
|
|
|
// Inherited fields of CharacterizedObject
|
|
|
|
SW.Send(ent->CharacterizedObject()->Name());
|
|
|
|
if (ent->CharacterizedObject()->HasDescription())
|
|
{
|
|
SW.Send(ent->CharacterizedObject()->Description());
|
|
}
|
|
else
|
|
SW.SendUndef();
|
|
}
|
|
|
|
//=================================================================================================
|
|
|
|
void RWStepBasic_RWDocumentFile::Share(const Handle(StepBasic_DocumentFile)& ent,
|
|
Interface_EntityIterator& iter) const
|
|
{
|
|
|
|
// Inherited fields of Document
|
|
|
|
iter.AddItem(ent->StepBasic_Document::Kind());
|
|
|
|
// Inherited fields of CharacterizedObject
|
|
}
|