X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmUtil.h;h=08e26fb39feb817fa827201200f6a8972fecc073;hb=b8a5842638a6d29023d5440c09b08c94b0cbcc75;hp=325bde910b5bdf53f33cb03e3b8ce960b633d05c;hpb=541ed5b2824ff14630565a474b1406e58b677662;p=gdcm.git diff --git a/src/gdcmUtil.h b/src/gdcmUtil.h index 325bde91..08e26fb3 100644 --- a/src/gdcmUtil.h +++ b/src/gdcmUtil.h @@ -1,4 +1,4 @@ -// gdcmUtil.h +// $Header: /cvs/public/gdcm/src/gdcmUtil.h,v 1.10 2003/05/21 16:26:28 regrain Exp $ #ifndef GDCMUTIL_H #define GDCMUTIL_H @@ -7,7 +7,7 @@ #include #include #include "gdcmVR.h" -using namespace std; +#include "gdcmDictSet.h" class gdcmDebug { private: @@ -24,17 +24,19 @@ public: class gdcmGlobal { private: static gdcmVR *VR; + static gdcmDictSet *Dicts; public: gdcmGlobal(void); - ~gdcmGlobal(void); + ~gdcmGlobal(); static gdcmVR * GetVR(void); + static gdcmDictSet * GetDicts(void); }; -istream & eatwhite(istream & is); +std::istream & eatwhite(std::istream & is); -void Tokenize (const string& str, - vector& tokens, - const string& delimiters = " "); +void Tokenize (const std::string& str, + std::vector& tokens, + const std::string& delimiters = " "); extern gdcmDebug dbg;