X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmUtil.h;h=ecda0167c6d94aa946c17e54e9344770ed31cfad;hb=f8be63ebb26fa8fc3381c4ac129138fabf229412;hp=592f8b025a90b777e45a644fc127b59e3ed746b1;hpb=60fd8c21b0c2c57f5bd2bf7a38c04fff86d14dd7;p=gdcm.git diff --git a/src/gdcmUtil.h b/src/gdcmUtil.h index 592f8b02..ecda0167 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/08/25 14:55:47 $ - Version: $Revision: 1.62 $ + Date: $Date: 2005/10/27 17:04:36 $ + Version: $Revision: 1.65 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -41,7 +41,7 @@ public: std::vector &tokens, const std::string &delimiters = " "); static int CountSubstring (const std::string &str, - const std::string &subStr); + const std::string &subStr); static std::string CreateCleanString(std::string const &s); static std::string CreateCleanString(uint8_t *s, int l); @@ -76,6 +76,27 @@ public: static void SetFileMetaInformationVersion( uint16_t fmiv ) { FileMetaInformationVersion = (uint8_t *)&fmiv; } +// ----------------- to be removed later -------------------------- +//To perform a full check of inline functions on all the platforms, +// we put here the two 'static' functions +// hifpswap and hNoifpswap in a .h +// They will be remove ASAP + + static inline void hifpswap(double *a, double *b) + { + double tmp; + tmp = *a; + *a = *b; + *b = tmp; + } + static void hNoifpswap(double *a, double *b) + { + double tmp; + tmp = *a; + *a = *b; + *b = tmp; + } +// ------------ end of functions to remove -------------------- private: static std::string GetIPAddress(); //Do not expose this method @@ -88,6 +109,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);