mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-07 18:30:55 +03:00
The copying permission statements at the beginning of source files updated to refer to LGPL. Copyright dates extended till 2014 in advance.
144 lines
4.9 KiB
C++
144 lines
4.9 KiB
C++
// Created on: 2003-01-28
|
|
// Created by: data exchange team
|
|
// Copyright (c) 2003-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 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.2
|
|
|
|
#include <StepBasic_DocumentProductAssociation.ixx>
|
|
|
|
//=======================================================================
|
|
//function : StepBasic_DocumentProductAssociation
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
StepBasic_DocumentProductAssociation::StepBasic_DocumentProductAssociation ()
|
|
{
|
|
defDescription = Standard_False;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : Init
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void StepBasic_DocumentProductAssociation::Init (const Handle(TCollection_HAsciiString) &aName,
|
|
const Standard_Boolean hasDescription,
|
|
const Handle(TCollection_HAsciiString) &aDescription,
|
|
const Handle(StepBasic_Document) &aRelatingDocument,
|
|
const StepBasic_ProductOrFormationOrDefinition &aRelatedProduct)
|
|
{
|
|
|
|
theName = aName;
|
|
|
|
defDescription = hasDescription;
|
|
if (defDescription) {
|
|
theDescription = aDescription;
|
|
}
|
|
else theDescription.Nullify();
|
|
|
|
theRelatingDocument = aRelatingDocument;
|
|
|
|
theRelatedProduct = aRelatedProduct;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : Name
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
Handle(TCollection_HAsciiString) StepBasic_DocumentProductAssociation::Name () const
|
|
{
|
|
return theName;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : SetName
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void StepBasic_DocumentProductAssociation::SetName (const Handle(TCollection_HAsciiString) &aName)
|
|
{
|
|
theName = aName;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : Description
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
Handle(TCollection_HAsciiString) StepBasic_DocumentProductAssociation::Description () const
|
|
{
|
|
return theDescription;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : SetDescription
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void StepBasic_DocumentProductAssociation::SetDescription (const Handle(TCollection_HAsciiString) &aDescription)
|
|
{
|
|
theDescription = aDescription;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : HasDescription
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
Standard_Boolean StepBasic_DocumentProductAssociation::HasDescription () const
|
|
{
|
|
return defDescription;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : RelatingDocument
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
Handle(StepBasic_Document) StepBasic_DocumentProductAssociation::RelatingDocument () const
|
|
{
|
|
return theRelatingDocument;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : SetRelatingDocument
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void StepBasic_DocumentProductAssociation::SetRelatingDocument (const Handle(StepBasic_Document) &aRelatingDocument)
|
|
{
|
|
theRelatingDocument = aRelatingDocument;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : RelatedProduct
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
StepBasic_ProductOrFormationOrDefinition StepBasic_DocumentProductAssociation::RelatedProduct () const
|
|
{
|
|
return theRelatedProduct;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : SetRelatedProduct
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void StepBasic_DocumentProductAssociation::SetRelatedProduct (const StepBasic_ProductOrFormationOrDefinition &aRelatedProduct)
|
|
{
|
|
theRelatedProduct = aRelatedProduct;
|
|
}
|