Integration of OCCT 6.5.0 from SVN
[occt.git] / src / IGESAppli / IGESAppli_ReferenceDesignator.cxx
1 //--------------------------------------------------------------------
2 //
3 //  File Name : IGESAppli_ReferenceDesignator.cxx
4 //  Date      :
5 //  Author    : CKY / Contract Toubro-Larsen
6 //  Copyright : MATRA-DATAVISION 1993
7 //
8 //--------------------------------------------------------------------
9
10 #include <IGESAppli_ReferenceDesignator.ixx>
11 #include <IGESData_LevelListEntity.hxx>
12
13
14     IGESAppli_ReferenceDesignator::IGESAppli_ReferenceDesignator ()    {  }
15
16
17     void  IGESAppli_ReferenceDesignator::Init
18   (const Standard_Integer nbPropVal,
19    const Handle(TCollection_HAsciiString)& aText)
20 {
21   theRefDesigText     = aText;
22   theNbPropertyValues = nbPropVal;
23   InitTypeAndForm(406,7);
24 }
25
26
27     Standard_Integer  IGESAppli_ReferenceDesignator::NbPropertyValues () const
28 {
29   return theNbPropertyValues;
30 }
31
32     Handle(TCollection_HAsciiString)
33     IGESAppli_ReferenceDesignator::RefDesignatorText () const
34 {
35   return theRefDesigText;
36 }