Warnings on vc14 were eliminated
[occt.git] / src / Units / Units_UnitsDictionary.lxx
CommitLineData
b311480e 1// Created on: 1992-06-24
2// Created by: Gilles DEBARBOUILLE
3// Copyright (c) 1992-1999 Matra Datavision
973c2be1 4// Copyright (c) 1999-2014 OPEN CASCADE SAS
b311480e 5//
973c2be1 6// This file is part of Open CASCADE Technology software library.
b311480e 7//
d5f74e42 8// This library is free software; you can redistribute it and/or modify it under
9// the terms of the GNU Lesser General Public License version 2.1 as published
973c2be1 10// by the Free Software Foundation, with special exception defined in the file
11// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12// distribution for complete text of the license and disclaimer of any warranty.
b311480e 13//
973c2be1 14// Alternatively, this file may be used under the terms of Open CASCADE
15// commercial license or contractual agreement.
7fd59977 16
17#include <Units_QuantitiesSequence.hxx>
18#include <Units_Quantity.hxx>
19#include <Units_Explorer.hxx>
20
21//=======================================================================
22//function : Sequence
23//purpose :
24//=======================================================================
25
26inline Handle(Units_QuantitiesSequence) Units_UnitsDictionary::Sequence() const
27{
28 return thequantitiessequence;
29}
30
31//=======================================================================
32//function : Dump
33//purpose :
34//=======================================================================
35
36inline void Units_UnitsDictionary::Dump(const Standard_Integer alevel) const
37{
38 Standard_Integer index;
39 switch (alevel) {
40 case 2:
41 if( !thequantitiessequence.IsNull() ) {
42 for(index=1;index<=thequantitiessequence->Length();index++)
43 thequantitiessequence->Value(index)->Dump(0,1);
44 }
45 break;
46
47 case 1:
48 default:
49 Units_Explorer explorer(this);
50 cout<<" UNITS DICTIONARY : "<<endl;
51 for(;explorer.MoreQuantity();explorer.NextQuantity())
52 {
53 cout<<explorer.Quantity()<<endl;;
54 for(; explorer.MoreUnit(); explorer.NextUnit())
55 cout<<" "<<explorer.Unit()<<endl;
56 }
57
58
59 }
60}
61//=======================================================================
62//function : Dump
63//purpose :
64//=======================================================================
65
66inline void Units_UnitsDictionary::Dump(const Handle(Units_Dimensions)& adimensions) const
67{
68 Standard_Integer index;
69 for(index=1;index<=thequantitiessequence->Length();index++)
70 {
71 if(thequantitiessequence->Value(index)->Dimensions()->IsEqual(adimensions))
72 thequantitiessequence->Value(index)->Dump(0,1);
73 }
74}
75