summaryrefslogtreecommitdiff
path: root/src/IGESAppli/IGESAppli_PinNumber.cxx
blob: 15de894ad21ebbbbeec579a0fdc758019d83b151 (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
//--------------------------------------------------------------------
//
//  File Name : IGESAppli_PinNumber.cxx
//  Date      :
//  Author    : CKY / Contract Toubro-Larsen
//  Copyright : MATRA-DATAVISION 1993
//
//--------------------------------------------------------------------

#include <IGESAppli_PinNumber.ixx>


    IGESAppli_PinNumber::IGESAppli_PinNumber ()    {  }


    void  IGESAppli_PinNumber::Init
  (const Standard_Integer nbPropVal,
   const Handle(TCollection_HAsciiString)& aValue)
{
  thePinNumber        = aValue;
  theNbPropertyValues = nbPropVal;
  InitTypeAndForm(406,8);
}


    Standard_Integer  IGESAppli_PinNumber::NbPropertyValues () const
{
  return theNbPropertyValues;
}

    Handle(TCollection_HAsciiString)  IGESAppli_PinNumber::PinNumberVal () const
{
  return thePinNumber;
}