]> Creatis software - gdcm.git/blob - src/gdcmVRKey.h
COMP: That was simply a typo
[gdcm.git] / src / gdcmVRKey.h
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: gdcmVRKey.h,v $
5   Language:  C++
6   Date:      $Date: 2005/10/19 16:49:05 $
7   Version:   $Revision: 1.3 $
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 GDCMVRKEY_H
20 #define GDCMVRKEY_H
21
22 #include "gdcmCommon.h"
23
24 #include <assert.h>
25 #include <iostream>
26 #include <iomanip> // for std::ios::left, ...
27
28 namespace gdcm 
29 {
30 //-----------------------------------------------------------------------------
31 class VRKey
32 {
33 public :
34    inline VRKey() { key[0] = key[1] = ' ';}
35    inline VRKey(const char *_key) { key[0] = _key[0]; key[1] = _key[1];}
36    inline VRKey(const std::string &_key) { key[0] = _key[0]; key[1] = _key[1];}
37
38    inline std::string str() const { return std::string(key,2); }
39
40    friend std::ostream& operator<<(std::ostream& _os, const VRKey &_val);
41    friend std::istream& operator>>(std::istream& _is, VRKey &_val);
42
43    inline VRKey &operator=(const VRKey &_val)
44    {
45       key[0] = _val.key[0];
46       key[1] = _val.key[1];
47       return *this;
48    }
49    inline VRKey &operator=(const std::string &_val)
50    {
51       key[0] = _val[0];
52       key[1] = _val[1];
53       return *this;
54    }
55    inline VRKey &operator=(const char *_val)
56    {
57       key[0] = _val[0];
58       key[1] = _val[1];
59       return *this;
60    }
61
62    inline const char &operator[](const unsigned int &_id) const
63    {
64       assert(_id<2);
65       return key[_id];
66    }
67    inline char &operator[](const unsigned int &_id)
68    {
69       assert(_id<2);
70       return key[_id];
71    }
72
73    inline bool operator==(const VRKey &_val) const
74    {
75       return key[0] == _val.key[0] && key[1] == _val.key[1];
76    }
77    inline bool operator==(const std::string &_val) const
78    {
79       return key[0] == _val[0] && key[1] == _val[1];
80    }
81    inline bool operator==(const char *_val) const
82    {
83       return key[0] == _val[0] && key[1] == _val[1];
84    }
85
86    inline bool operator!=(const VRKey &_val) const
87    {
88       return key[0] != _val.key[0] || key[1] != _val.key[1];
89    }
90    inline bool operator!=(const std::string &_val) const
91    {
92       return key[0] != _val[0] || key[1] != _val[1];
93    }
94    inline bool operator!=(const char *_val) const
95    {
96       return key[0] != _val[0] || key[1] != _val[1];
97    }
98
99    inline bool operator<(const VRKey &_val) const
100    {
101       return key[0] < _val[0] || (key[0] == _val[0] && key[1] < _val[1]);
102    }
103
104 private :
105    char key[2];
106 };
107
108 //-----------------------------------------------------------------------------
109 inline std::ostream& operator<<(std::ostream& _os, const VRKey &_val)
110 {
111    _os << _val.key[0] << _val.key[1];
112    return _os;
113 }
114
115 inline std::istream& operator>>(std::istream& _is, VRKey &_val)
116 {
117    _is >> _val.key[0] >> _val.key[1];
118    return _is;
119 }
120
121 //-----------------------------------------------------------------------------
122
123 } // end namespace gdcm
124
125 //-----------------------------------------------------------------------------
126 #endif