blob: a3a2071ab29fbc71ea5650d603f5fa5beef6146f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
//--------------------------------------------------------------------
//
// File Name : IGESBasic_AssocGroupType.cxx
// Date :
// Author : CKY / Contract Toubro-Larsen
// Copyright : MATRA-DATAVISION 1993
//
//--------------------------------------------------------------------
#include <IGESBasic_AssocGroupType.ixx>
IGESBasic_AssocGroupType::IGESBasic_AssocGroupType () { }
void IGESBasic_AssocGroupType::Init
(const Standard_Integer nbDataFields,
const Standard_Integer aType, const Handle(TCollection_HAsciiString)& aName)
{
theNbData = nbDataFields;
theType = aType;
theName = aName;
InitTypeAndForm(406,23);
}
Standard_Integer IGESBasic_AssocGroupType::NbData () const
{
return theNbData;
}
Standard_Integer IGESBasic_AssocGroupType::AssocType () const
{
return theType;
}
Handle(TCollection_HAsciiString) IGESBasic_AssocGroupType::Name () const
{
return theName;
}
|