blob: 562d8dd405d28277c8a834b0fc8a6456b85b47dd (
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
41
42
43
44
45
46
47
48
49
50
51
52
53
|
// File: Units_Quantity.lxx
// Created: Wed Jun 24 12:48:36 1992
// Author: Gilles DEBARBOUILLE
// <gde@phobox>
#include <Units_UnitsSequence.hxx>
#include <Units_Dimensions.hxx>
#include <TCollection_HAsciiString.hxx>
//=======================================================================
//function : Units_Quantity
//purpose :
//=======================================================================
inline Units_Quantity::Units_Quantity(const Standard_CString aname,
const Handle(Units_Dimensions)& adimensions,
const Handle(Units_UnitsSequence)& aunitssequence)
{
thename = new TCollection_HAsciiString(aname);
thedimensions = adimensions;
theunitssequence = aunitssequence;
}
//=======================================================================
//function : Name
//purpose :
//=======================================================================
inline TCollection_AsciiString Units_Quantity::Name() const
{
return thename->String();
}
//=======================================================================
//function : Dimensions
//purpose :
//=======================================================================
inline Handle(Units_Dimensions) Units_Quantity::Dimensions() const
{
return thedimensions;
}
//=======================================================================
//function : Sequence
//purpose :
//=======================================================================
inline Handle(Units_UnitsSequence) Units_Quantity::Sequence() const
{
return theunitssequence;
}
|