0024624: Lost word in license statement in source files
[occt.git] / src / IGESDefs / IGESDefs_UnitsData.cxx
1 // Created by: CKY / Contract Toubro-Larsen
2 // Copyright (c) 1993-1999 Matra Datavision
3 // Copyright (c) 1999-2014 OPEN CASCADE SAS
4 //
5 // This file is part of Open CASCADE Technology software library.
6 //
7 // This library is free software; you can redistribute it and/or modify it under
8 // the terms of the GNU Lesser General Public License version 2.1 as published
9 // by the Free Software Foundation, with special exception defined in the file
10 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
11 // distribution for complete text of the license and disclaimer of any warranty.
12 //
13 // Alternatively, this file may be used under the terms of Open CASCADE
14 // commercial license or contractual agreement.
15
16 //--------------------------------------------------------------------
17 //--------------------------------------------------------------------
18
19 #include <IGESDefs_UnitsData.ixx>
20
21
22 IGESDefs_UnitsData::IGESDefs_UnitsData ()    {  }
23
24
25     void  IGESDefs_UnitsData::Init
26   (const Handle(Interface_HArray1OfHAsciiString)& unitTypes,
27    const Handle(Interface_HArray1OfHAsciiString)& unitValues,
28    const Handle(TColStd_HArray1OfReal)& unitScales)
29 {
30   Standard_Integer length = unitTypes->Length();
31   if ( unitTypes->Lower()  != 1  ||
32       (unitValues->Lower() != 1 || unitValues->Length() != length) ||
33       (unitScales->Lower() != 1 || unitScales->Length() != length) )
34     Standard_DimensionMismatch::Raise("IGESDefs_UnitsData : Init");
35   theUnitTypes   = unitTypes;
36   theUnitValues  = unitValues;
37   theUnitScales  = unitScales;
38   InitTypeAndForm(316,0);
39 }
40
41     Standard_Integer  IGESDefs_UnitsData::NbUnits () const 
42 {
43   return theUnitTypes->Length();
44 }
45
46     Handle(TCollection_HAsciiString)  IGESDefs_UnitsData::UnitType
47   (const Standard_Integer UnitNum) const 
48 {
49   return theUnitTypes->Value(UnitNum);
50 }
51
52     Handle(TCollection_HAsciiString)  IGESDefs_UnitsData::UnitValue
53   (const Standard_Integer UnitNum) const 
54 {
55   return theUnitValues->Value(UnitNum);
56 }
57
58     Standard_Real  IGESDefs_UnitsData::ScaleFactor
59   (const Standard_Integer UnitNum) const 
60 {
61   return theUnitScales->Value(UnitNum);
62 }