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