+ gdcm::File *f = new gdcm::File(fileName);</TT> <br>
+ (old style still available)
+
+ <LI> User is now allowed to tell <TT>gdcm::DicomDir</TT> constructor
+ he doesn't want to deal with <TT>SeqEntry</TT>
+ (every time it's possible) <br> and/or he doesn't
+ want to deal with <TT>Shadow groups</TT> (every time it's
+ possible)<br>
+ use : <br><TT>
+ gdcm::DicomDir *dcmdir = new gdcm::DicomDir( );<br>
+ dcmdir->SetParseDir(true);<br>
+ dcmdir->SetLoadMode(NO_SEQ | NO_SHADOW);<br>
+ dcmdir->Load(dirName);<br>
+ </TT>
+ instead of : <br>
+ <TT>
+ gdcm::DicomDir *dcmdir = new gdcm::DicomDir(dirName, true);</TT><br>
+ (old style still available)