X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDictSet.cxx;h=99b890200da1d523d2590459992389715e78b44b;hb=4c9f7341da74192d6a293a0b04ebda4ce5211996;hp=e2c5c909a153fea2868c32700954382ac766e370;hpb=3a2887f6302bed9226c8f432d9bf0428ad1a216f;p=gdcm.git diff --git a/src/gdcmDictSet.cxx b/src/gdcmDictSet.cxx index e2c5c909..99b89020 100644 --- a/src/gdcmDictSet.cxx +++ b/src/gdcmDictSet.cxx @@ -1,20 +1,9 @@ // gdcmDictEntry -#ifdef _MSC_VER -//'identifier' : decorated name length exceeded, name was truncated -//#pragma warning ( disable : 4503 ) -// 'identifier' : class 'type' needs to have dll-interface to be used by -// clients of class 'type2' -#pragma warning ( disable : 4251 ) -// 'identifier' : identifier was truncated to 'number' characters in the -// debug information -#pragma warning ( disable : 4786 ) -#endif //_MSC_VER - +#include "gdcmDictSet.h" +#include "gdcmUtil.h" #include #include // For getenv -#include "gdcmUtil.h" -#include "gdcmDictSet.h" #define PUB_DICT_NAME "DicomV3Dict" #ifndef PUB_DICT_PATH @@ -137,7 +126,7 @@ void gdcmDictSet::LoadDictFromFile(std::string FileName, DictKey Name) { */ void gdcmDictSet::Print(std::ostream& os) { for (DictSetHT::iterator dict = Dicts.begin(); dict != Dicts.end(); ++dict){ - std::os << "Printing dictionary " << dict->first << std::endl; + os << "Printing dictionary " << dict->first << std::endl; dict->second->Print(os); } }