16#include <FMEThirdPartyWarningsDisable.h>
19#include <FMEThirdPartyWarningsRestore.h>
23namespace DICOMTagTools {
80 inline std::ostream&
operator<<(std::ostream& os,
const ML_NAMESPACE::DICOMTagTools::ZTUIndex & ztu)
82 os << ztu.z <<
" " << ztu.t <<
" " << ztu.u <<
":" << ztu.value;
89 inline std::istream&
operator>>(std::istream& is, ML_NAMESPACE::DICOMTagTools::ZTUIndex & ztu)
91 ML_NAMESPACE::DICOMTagTools::ZTUIndex ztuTmp;
93 is >> ztuTmp.z >> ztuTmp.t >> ztuTmp.u >> colonChar >> ztuTmp.value;
94 if (is && (colonChar==
':')){ ztu = ztuTmp; }
UINT64 MLuint64
Introduce platform-independent 64-bit unsigned integer type.
MLEXPORT std::ostream & operator<<(std::ostream &s, const ml::Field &v)
Overloads the operator '<<' for stream output of Field objects.
istream & operator>>(istream &is, ml::FloatingPointVector< T, size, DataContainer > &v)
Reads a vector from std::istream.