Program: gdcm
Module: $RCSfile: gdcmVRKey.h,v $
Language: C++
- Date: $Date: 2005/10/19 16:51:11 $
- Version: $Revision: 1.4 $
+ Date: $Date: 2005/10/23 15:01:34 $
+ Version: $Revision: 1.5 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
inline std::string str() const { return std::string(key,2); }
- friend std::ostream& operator<<(std::ostream& _os, const VRKey &_val);
- friend std::istream& operator>>(std::istream& _is, VRKey &_val);
+ friend std::ostream &operator<<(std::ostream &_os, const VRKey &_val);
+ friend std::istream &operator>>(std::istream &_is, VRKey &_val);
inline VRKey &operator=(const VRKey &_val)
{
key[1] = _val.key[1];
return *this;
}
+
inline VRKey &operator=(const std::string &_val)
{
key[0] = _val[0];
key[1] = _val[1];
return *this;
}
+
inline VRKey &operator=(const char *_val)
{
key[0] = _val[0];
assert(_id<2);
return key[_id];
}
+
inline char &operator[](const unsigned int &_id)
{
assert(_id<2);
{
return key[0] == _val.key[0] && key[1] == _val.key[1];
}
+
inline bool operator==(const std::string &_val) const
{
return key[0] == _val[0] && key[1] == _val[1];
}
+
inline bool operator==(const char *_val) const
{
return key[0] == _val[0] && key[1] == _val[1];
{
return key[0] != _val.key[0] || key[1] != _val.key[1];
}
+
inline bool operator!=(const std::string &_val) const
{
return key[0] != _val[0] || key[1] != _val[1];
};
//-----------------------------------------------------------------------------
-inline std::ostream& operator<<(std::ostream& _os, const VRKey &_val)
+inline std::ostream &operator<<(std::ostream &_os, const VRKey &_val)
{
_os << _val.key[0] << _val.key[1];
return _os;
}
-inline std::istream& operator>>(std::istream& _is, VRKey &_val)
+inline std::istream &operator>>(std::istream &_is, VRKey &_val)
{
_is >> _val.key[0] >> _val.key[1];
return _is;