X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=Example%2FPrintDicomDir.cxx;h=c3060c9295d2424fba4370317d7580b2d6350139;hb=1d69b92978803204089d270599133917d944c651;hp=852ba533ccfff87269dd986668292fc99e3e03a2;hpb=ac11759a2c7fcb32a6e0d2efdc8bb03982ae349e;p=gdcm.git diff --git a/Example/PrintDicomDir.cxx b/Example/PrintDicomDir.cxx index 852ba533..c3060c92 100644 --- a/Example/PrintDicomDir.cxx +++ b/Example/PrintDicomDir.cxx @@ -10,13 +10,13 @@ using namespace std; int main(int argc, char* argv[]) { - gdcmDicomDir *e1; + gdcm::DicomDir *e1; - ListDicomDirPatient::iterator itPatient; - ListDicomDirStudy::iterator itStudy; - ListDicomDirSerie::iterator itSerie; - ListDicomDirImage::iterator itImage; - TSKey v; + gdcm::ListDicomDirPatient::iterator itPatient; + gdcm::ListDicomDirStudy::iterator itStudy; + gdcm::ListDicomDirSerie::iterator itSerie; + gdcm::ListDicomDirImage::iterator itImage; + gdcm::TSKey v; std::string file; if (argc > 1) @@ -26,7 +26,7 @@ int main(int argc, char* argv[]) file += "/DICOMDIR"; } - e1 = new gdcmDicomDir( file ); + e1 = new gdcm::DicomDir( file ); if (argc > 2) { int level = atoi(argv[2]);