mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-16 10:08:36 +03:00
23 lines
451 B
C++
Executable File
23 lines
451 B
C++
Executable File
#include <StepRepr_RepresentationItem.ixx>
|
|
|
|
|
|
StepRepr_RepresentationItem::StepRepr_RepresentationItem () {}
|
|
|
|
void StepRepr_RepresentationItem::Init(
|
|
const Handle(TCollection_HAsciiString)& aName)
|
|
{
|
|
// --- classe own fields ---
|
|
name = aName;
|
|
}
|
|
|
|
|
|
void StepRepr_RepresentationItem::SetName(const Handle(TCollection_HAsciiString)& aName)
|
|
{
|
|
name = aName;
|
|
}
|
|
|
|
Handle(TCollection_HAsciiString) StepRepr_RepresentationItem::Name() const
|
|
{
|
|
return name;
|
|
}
|