X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=Example%2FTestValidate.cxx;h=c2913b6512fb95097d3510a495b025ce4f9de75b;hb=d37154e4495e1e1c18c44f6cae6ef2ff8a2891cf;hp=8cbd611320d60cc2cbd8120452bd9e5e10a23ecc;hpb=3406c4fd40fed23d938a1c72d985417ce46c3bc0;p=gdcm.git diff --git a/Example/TestValidate.cxx b/Example/TestValidate.cxx index 8cbd6113..c2913b65 100755 --- a/Example/TestValidate.cxx +++ b/Example/TestValidate.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: TestValidate.cxx,v $ Language: C++ - Date: $Date: 2005/11/18 11:09:06 $ - Version: $Revision: 1.3 $ + Date: $Date: 2007/05/23 14:18:04 $ + Version: $Revision: 1.4 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -29,10 +29,10 @@ int main(int argc, char *argv[]) const char *filename = argv[1]; - gdcm::File *input = gdcm::File::New( ); + GDCM_NAME_SPACE::File *input = GDCM_NAME_SPACE::File::New( ); input->SetFileName(filename); input->Load(); - gdcm::Validator *v = gdcm::Validator::New(); + GDCM_NAME_SPACE::Validator *v = GDCM_NAME_SPACE::Validator::New(); v->SetInput( input ); return 0;