X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=Example%2FAnonymizeNoLoad.cxx;h=3fa8500583f2e5cbf000660614440308e99440c9;hb=fa8fa610de8d935491343df2d8a543ff6fdb6e69;hp=cf6f22ee5d80c7035ac8ca9cf5dd0077de3d916b;hpb=c4fa2e74a4ce56a0a8db54e4a70d404bec9fc8dd;p=gdcm.git diff --git a/Example/AnonymizeNoLoad.cxx b/Example/AnonymizeNoLoad.cxx index cf6f22ee..3fa85005 100644 --- a/Example/AnonymizeNoLoad.cxx +++ b/Example/AnonymizeNoLoad.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: AnonymizeNoLoad.cxx,v $ Language: C++ - Date: $Date: 2005/08/30 14:40:28 $ - Version: $Revision: 1.11 $ + Date: $Date: 2005/08/30 15:13:05 $ + Version: $Revision: 1.12 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -75,15 +75,15 @@ int main(int argc, char *argv[]) return 0; } - int loadMode = GDCM_LD_ALL; + int loadMode = gdcm::LD_ALL; if ( am->ArgMgrDefined("noshadowseq") ) - loadMode |= GDCM_LD_NOSHADOWSEQ; + loadMode |= gdcm::LD_NOSHADOWSEQ; else { if ( am->ArgMgrDefined("noshadow") ) - loadMode |= GDCM_LD_NOSHADOW; + loadMode |= gdcm::LD_NOSHADOW; if ( am->ArgMgrDefined("noseq") ) - loadMode |= GDCM_LD_NOSEQ; + loadMode |= gdcm::LD_NOSEQ; } int rubOutNb;