]> Creatis software - gdcm.git/blob - src/gdcmTagKey.h
Apply Laurent Guigues' advice to avoid icc warnings.
[gdcm.git] / src / gdcmTagKey.h
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: gdcmTagKey.h,v $
5   Language:  C++
6   Date:      $Date: 2005/11/08 09:35:44 $
7   Version:   $Revision: 1.10 $
8                                                                                 
9   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
10   l'Image). All rights reserved. See Doc/License.txt or
11   http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details.
12                                                                                 
13      This software is distributed WITHOUT ANY WARRANTY; without even
14      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15      PURPOSE.  See the above copyright notices for more information.
16                                                                                 
17 =========================================================================*/
18
19 #ifndef GDCMTAGKEY_H
20 #define GDCMTAGKEY_H
21
22 #include "gdcmCommon.h"
23
24 #include <assert.h>
25 #include <iostream>
26 #include <iomanip> // for std::ios::left, ...
27 #include <stdio.h> // for ugly sprintf
28
29 namespace gdcm 
30 {
31 //-----------------------------------------------------------------------------
32 class TagKey
33 {
34 public :
35    TagKey(uint16_t gr, uint16_t elt) { tag[0] = gr;tag[1] = elt;}
36    TagKey() { tag[0] = tag[1] = 0x0000;}
37
38    friend std::ostream& operator<<(std::ostream& _os, const TagKey &_val);
39
40    std::string str() const
41    {
42       char res[10];
43       sprintf(res,"%04x|%04x",tag[0],tag[1]);
44       return std::string(res);
45    }
46
47    void SetGroup(uint16_t group) { tag[0] = group; }
48    uint16_t GetGroup() const { return tag[0]; }
49
50    void SetElement(uint16_t elem) { tag[1] = elem; }
51    uint16_t GetElement() const { return tag[1]; }
52
53    TagKey &operator=(const TagKey &_val)
54    {
55       tag[0] = _val.tag[0];
56       tag[1] = _val.tag[1];
57       return *this;
58    }
59
60    TagKey(const TagKey &_val)
61    {
62      tag[0] = _val[0];
63      tag[1] = _val[1];
64    }
65
66    const uint16_t &operator[](const unsigned int &_id) const
67    {
68       assert(_id<2);
69       return tag[_id];
70    }
71    const uint16_t &operator[](const unsigned int &_id)
72    {
73       assert(_id<2);
74       return tag[_id];
75    }
76
77    bool operator==(const TagKey &_val) const
78    {
79       return tag[0] == _val.tag[0] && tag[1] == _val.tag[1];
80    }
81
82    bool operator!=(const TagKey &_val) const
83    {
84       return tag[0] != _val.tag[0] || tag[1] != _val.tag[1];
85    }
86
87    bool operator<(const TagKey &_val) const
88    {
89       return tag[0] < _val.tag[0] 
90         || (tag[0] == _val.tag[0] && tag[1] < _val.tag[1]);
91    }
92
93 private :
94    uint16_t tag[2];
95 };
96
97 //-----------------------------------------------------------------------------
98 inline std::ostream& operator<<(std::ostream& _os, const TagKey &_val)
99 {
100    _os.setf( std::ios::right);
101    _os << std::hex << std::setw( 4 ) << std::setfill( '0' )
102        << _val.tag[0] << '|' << std::setw( 4 ) << std::setfill( '0' )
103        << _val.tag[1] << std::setfill( ' ' ) << std::dec;
104    return _os;
105 }
106
107 //-----------------------------------------------------------------------------
108
109 } // end namespace gdcm
110
111 //-----------------------------------------------------------------------------
112 #endif