0031007: Coding - eliminate warnings issued while compiling with -pedantic flag
[occt.git] / src / Units / Units_UnitsDictionary.lxx
1 // Created on: 1992-06-24
2 // Created by: Gilles DEBARBOUILLE
3 // Copyright (c) 1992-1999 Matra Datavision
4 // Copyright (c) 1999-2014 OPEN CASCADE SAS
5 //
6 // This file is part of Open CASCADE Technology software library.
7 //
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
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.
13 //
14 // Alternatively, this file may be used under the terms of Open CASCADE
15 // commercial license or contractual agreement.
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
26 inline Handle(Units_QuantitiesSequence) Units_UnitsDictionary::Sequence() const
27 {
28   return thequantitiessequence;
29 }
30
31 //=======================================================================
32 //function : Dump
33 //purpose  : 
34 //=======================================================================
35
36 inline 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     std::cout<<" UNITS DICTIONARY : "<<std::endl;
51     for(;explorer.MoreQuantity();explorer.NextQuantity())
52       {
53         std::cout<<explorer.Quantity()<<std::endl;
54         for(; explorer.MoreUnit(); explorer.NextUnit())
55           std::cout<<"  "<<explorer.Unit()<<std::endl;
56       }
57
58   
59   }
60 }
61 //=======================================================================
62 //function : Dump
63 //purpose  : 
64 //=======================================================================
65
66 inline 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