mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
The necessary classes for GeneralProperty support were added. The ReadMetadata method was created for reading and saving attributes.
138 lines
5.1 KiB
C++
138 lines
5.1 KiB
C++
// Copyright (c) 2024 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 <StepBasic_GeneralProperty.hxx>
|
|
#include <StepBasic_GeneralPropertyRelationship.hxx>
|
|
#include <TCollection_HAsciiString.hxx>
|
|
|
|
IMPLEMENT_STANDARD_RTTIEXT(StepBasic_GeneralPropertyRelationship, Standard_Transient)
|
|
|
|
//=======================================================================
|
|
//function : StepBasic_GeneralPropertyRelationship
|
|
//purpose :
|
|
//=======================================================================
|
|
StepBasic_GeneralPropertyRelationship::StepBasic_GeneralPropertyRelationship ()
|
|
{
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : Init
|
|
//purpose :
|
|
//=======================================================================
|
|
void StepBasic_GeneralPropertyRelationship::Init(const Handle(TCollection_HAsciiString)& aName,
|
|
const Standard_Boolean hasDescription,
|
|
const Handle(TCollection_HAsciiString)& aDescription,
|
|
const Handle(StepBasic_GeneralProperty)& aRelatingGeneralProperty,
|
|
const Handle(StepBasic_GeneralProperty)& aRelatedGeneralProperty)
|
|
{
|
|
theName = aName;
|
|
|
|
defDescription = hasDescription;
|
|
if (defDescription) {
|
|
theDescription = aDescription;
|
|
}
|
|
else theDescription.Nullify();
|
|
|
|
theRelatingGeneralProperty = aRelatingGeneralProperty;
|
|
|
|
theRelatedGeneralProperty = aRelatedGeneralProperty;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : Name
|
|
//purpose :
|
|
//=======================================================================
|
|
Handle(TCollection_HAsciiString) StepBasic_GeneralPropertyRelationship::Name() const
|
|
{
|
|
return theName;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : SetName
|
|
//purpose :
|
|
//=======================================================================
|
|
void StepBasic_GeneralPropertyRelationship::SetName(const Handle(TCollection_HAsciiString)& aName)
|
|
{
|
|
theName = aName;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : HasDescription
|
|
//purpose :
|
|
//=======================================================================
|
|
Standard_Boolean StepBasic_GeneralPropertyRelationship::HasDescription() const
|
|
{
|
|
return defDescription;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : Description
|
|
//purpose :
|
|
//=======================================================================
|
|
Handle(TCollection_HAsciiString) StepBasic_GeneralPropertyRelationship::Description() const
|
|
{
|
|
return theDescription;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : SetDescription
|
|
//purpose :
|
|
//=======================================================================
|
|
void StepBasic_GeneralPropertyRelationship::SetDescription (const Handle(TCollection_HAsciiString)& aDescription)
|
|
{
|
|
defDescription = true;
|
|
if (aDescription.IsNull())
|
|
{
|
|
defDescription = false;
|
|
}
|
|
theDescription = aDescription;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : RelatingGeneralProperty
|
|
//purpose :
|
|
//=======================================================================
|
|
Handle(StepBasic_GeneralProperty) StepBasic_GeneralPropertyRelationship::RelatingGeneralProperty() const
|
|
{
|
|
return theRelatingGeneralProperty;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : SetRelatingGeneralProperty
|
|
//purpose :
|
|
//=======================================================================
|
|
void StepBasic_GeneralPropertyRelationship::SetRelatingGeneralProperty(const Handle(StepBasic_GeneralProperty)& aRelatingGeneralProperty)
|
|
{
|
|
theRelatingGeneralProperty = aRelatingGeneralProperty;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : RelatedGeneralProperty
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
Handle(StepBasic_GeneralProperty) StepBasic_GeneralPropertyRelationship::RelatedGeneralProperty() const
|
|
{
|
|
return theRelatedGeneralProperty;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : SetRelatedGeneralProperty
|
|
//purpose :
|
|
//=======================================================================
|
|
void StepBasic_GeneralPropertyRelationship::SetRelatedGeneralProperty(const Handle(StepBasic_GeneralProperty)& aRelatedGeneralProperty)
|
|
{
|
|
theRelatedGeneralProperty = aRelatedGeneralProperty;
|
|
}
|