mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-05-18 07:57:31 +08:00
35 lines
900 B
C++
Executable File
35 lines
900 B
C++
Executable File
#include <StepRepr_FunctionallyDefinedTransformation.ixx>
|
|
|
|
|
|
StepRepr_FunctionallyDefinedTransformation::StepRepr_FunctionallyDefinedTransformation () {}
|
|
|
|
void StepRepr_FunctionallyDefinedTransformation::Init(
|
|
const Handle(TCollection_HAsciiString)& aName,
|
|
const Handle(TCollection_HAsciiString)& aDescription)
|
|
{
|
|
// --- classe own fields ---
|
|
name = aName;
|
|
description = aDescription;
|
|
}
|
|
|
|
|
|
void StepRepr_FunctionallyDefinedTransformation::SetName(const Handle(TCollection_HAsciiString)& aName)
|
|
{
|
|
name = aName;
|
|
}
|
|
|
|
Handle(TCollection_HAsciiString) StepRepr_FunctionallyDefinedTransformation::Name() const
|
|
{
|
|
return name;
|
|
}
|
|
|
|
void StepRepr_FunctionallyDefinedTransformation::SetDescription(const Handle(TCollection_HAsciiString)& aDescription)
|
|
{
|
|
description = aDescription;
|
|
}
|
|
|
|
Handle(TCollection_HAsciiString) StepRepr_FunctionallyDefinedTransformation::Description() const
|
|
{
|
|
return description;
|
|
}
|