X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmUtil.h;h=9ef1c976134b930cd8cedb05fbc496b12c9d9dfe;hb=359ebc818c100156bd8f7a3a8783f2c538474990;hp=ea5a3170136ed8247ab085abb2a1a1e2a231520d;hpb=6f38e3557850c8eee0c60860dcad4c7c365edea0;p=gdcm.git diff --git a/src/gdcmUtil.h b/src/gdcmUtil.h index ea5a3170..9ef1c976 100644 --- a/src/gdcmUtil.h +++ b/src/gdcmUtil.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmUtil.h,v $ Language: C++ - Date: $Date: 2005/10/23 14:51:01 $ - Version: $Revision: 1.64 $ + Date: $Date: 2005/11/29 13:02:47 $ + Version: $Revision: 1.66 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -82,14 +82,29 @@ public: // hifpswap and hNoifpswap in a .h // They will be remove ASAP - static inline void hifpswap(double *a, double *b) + inline void hifpswap(double *a, double *b) { double tmp; tmp = *a; *a = *b; *b = tmp; } - static void hNoifpswap(double *a, double *b) + void hNoifpswap(double *a, double *b) + { + double tmp; + tmp = *a; + *a = *b; + *b = tmp; + } + void hfpswap(double *a, double *b); + static inline void sthifpswap(double *a, double *b) + { + double tmp; + tmp = *a; + *a = *b; + *b = tmp; + } + static void sthNoifpswap(double *a, double *b) { double tmp; tmp = *a; @@ -109,6 +124,7 @@ private: GDCM_EXPORT std::ostream &binary_write(std::ostream &os, const uint16_t &val); GDCM_EXPORT std::ostream &binary_write(std::ostream &os, const uint32_t &val); +GDCM_EXPORT std::ostream &binary_write(std::ostream &os, const double &val); GDCM_EXPORT std::ostream &binary_write(std::ostream &os, const char *val); GDCM_EXPORT std::ostream &binary_write(std::ostream &os, std::string const &val); GDCM_EXPORT std::ostream &binary_write(std::ostream &os, const uint8_t *val, size_t len);