mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
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
123 lines
3.4 KiB
C++
123 lines
3.4 KiB
C++
// Copyright (c) 1999-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.
|
|
|
|
|
|
#include <Interface_Check.hxx>
|
|
#include <Interface_EntityIterator.hxx>
|
|
#include <RWStepBasic_RWLocalTime.hxx>
|
|
#include <StepBasic_CoordinatedUniversalTimeOffset.hxx>
|
|
#include <StepBasic_LocalTime.hxx>
|
|
#include <StepData_StepReaderData.hxx>
|
|
#include <StepData_StepWriter.hxx>
|
|
|
|
RWStepBasic_RWLocalTime::RWStepBasic_RWLocalTime () {}
|
|
|
|
void RWStepBasic_RWLocalTime::ReadStep
|
|
(const Handle(StepData_StepReaderData)& data,
|
|
const Standard_Integer num,
|
|
Handle(Interface_Check)& ach,
|
|
const Handle(StepBasic_LocalTime)& ent) const
|
|
{
|
|
|
|
|
|
// --- Number of Parameter Control ---
|
|
|
|
if (!data->CheckNbParams(num,4,ach,"local_time")) return;
|
|
|
|
// --- own field : hourComponent ---
|
|
|
|
Standard_Integer aHourComponent;
|
|
//szv#4:S4163:12Mar99 `Standard_Boolean stat1 =` not needed
|
|
data->ReadInteger (num,1,"hour_component",ach,aHourComponent);
|
|
|
|
// --- own field : minuteComponent ---
|
|
|
|
Standard_Integer aMinuteComponent;
|
|
Standard_Boolean hasAminuteComponent = Standard_True;
|
|
if (data->IsParamDefined(num,2)) {
|
|
//szv#4:S4163:12Mar99 `Standard_Boolean stat2 =` not needed
|
|
data->ReadInteger (num,2,"minute_component",ach,aMinuteComponent);
|
|
}
|
|
else {
|
|
hasAminuteComponent = Standard_False;
|
|
aMinuteComponent = 0;
|
|
}
|
|
|
|
// --- own field : secondComponent ---
|
|
|
|
Standard_Real aSecondComponent;
|
|
Standard_Boolean hasAsecondComponent = Standard_True;
|
|
if (data->IsParamDefined(num,3)) {
|
|
//szv#4:S4163:12Mar99 `Standard_Boolean stat3 =` not needed
|
|
data->ReadReal (num,3,"second_component",ach,aSecondComponent);
|
|
}
|
|
else {
|
|
hasAsecondComponent = Standard_False;
|
|
aSecondComponent = 0.;
|
|
}
|
|
|
|
// --- own field : zone ---
|
|
|
|
Handle(StepBasic_CoordinatedUniversalTimeOffset) aZone;
|
|
//szv#4:S4163:12Mar99 `Standard_Boolean stat4 =` not needed
|
|
data->ReadEntity(num, 4,"zone", ach, STANDARD_TYPE(StepBasic_CoordinatedUniversalTimeOffset), aZone);
|
|
|
|
//--- Initialisation of the read entity ---
|
|
|
|
|
|
ent->Init(aHourComponent, hasAminuteComponent, aMinuteComponent, hasAsecondComponent, aSecondComponent, aZone);
|
|
}
|
|
|
|
|
|
void RWStepBasic_RWLocalTime::WriteStep
|
|
(StepData_StepWriter& SW,
|
|
const Handle(StepBasic_LocalTime)& ent) const
|
|
{
|
|
|
|
// --- own field : hourComponent ---
|
|
|
|
SW.Send(ent->HourComponent());
|
|
|
|
// --- own field : minuteComponent ---
|
|
|
|
Standard_Boolean hasAminuteComponent = ent->HasMinuteComponent();
|
|
if (hasAminuteComponent) {
|
|
SW.Send(ent->MinuteComponent());
|
|
}
|
|
else {
|
|
SW.SendUndef();
|
|
}
|
|
|
|
// --- own field : secondComponent ---
|
|
|
|
Standard_Boolean hasAsecondComponent = ent->HasSecondComponent();
|
|
if (hasAsecondComponent) {
|
|
SW.Send(ent->SecondComponent());
|
|
}
|
|
else {
|
|
SW.SendUndef();
|
|
}
|
|
|
|
// --- own field : zone ---
|
|
|
|
SW.Send(ent->Zone());
|
|
}
|
|
|
|
|
|
void RWStepBasic_RWLocalTime::Share(const Handle(StepBasic_LocalTime)& ent, Interface_EntityIterator& iter) const
|
|
{
|
|
|
|
iter.GetOneItem(ent->Zone());
|
|
}
|
|
|