Program: gdcm
Module: $RCSfile: gdcmElementSet.cxx,v $
Language: C++
- Date: $Date: 2005/02/04 14:49:01 $
- Version: $Revision: 1.54 $
+ Date: $Date: 2005/02/04 23:49:23 $
+ Version: $Revision: 1.55 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
// an other iterator is needed to allow user iterate
// at the same time both on DocEntries and ValEntries
ItValEntryTagHT = ItTagHT;
- if ( valEntry = dynamic_cast<gdcm::ValEntry*>(d))
+ if ( (valEntry = dynamic_cast<gdcm::ValEntry*>(d)))
return valEntry;
return GetNextValEntry();
}
++ItValEntryTagHT;
while( d )
{
- if ( valEntry = dynamic_cast<gdcm::ValEntry*>(d))
+ if ( (valEntry = dynamic_cast<gdcm::ValEntry*>(d)))
return valEntry;
else
return GetNextValEntry();
Program: gdcm
Module: $RCSfile: gdcmJpeg.cxx,v $
Language: C++
- Date: $Date: 2005/02/04 23:45:22 $
- Version: $Revision: 1.43 $
+ Date: $Date: 2005/02/04 23:49:23 $
+ Version: $Revision: 1.44 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
/* And we're done! */
- return true; //???
+ return true;
}
//-----------------------------------------------------------------------------
Program: gdcm
Module: $RCSfile: gdcmSQItem.cxx,v $
Language: C++
- Date: $Date: 2005/02/04 14:49:01 $
- Version: $Revision: 1.67 $
+ Date: $Date: 2005/02/04 23:49:23 $
+ Version: $Revision: 1.68 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
// an other iterator is needed to allow user iterate
// at the same time both on DocEntries and ValEntries
ItValEntries = ItDocEntries;
- if ( valEntry = dynamic_cast<gdcm::ValEntry*>(d))
+ if ( (valEntry = dynamic_cast<gdcm::ValEntry*>(d)))
return valEntry;
return GetNextValEntry();
}
++ItValEntries;
while( d )
{
- if ( valEntry = dynamic_cast<gdcm::ValEntry*>(d))
+ if ( (valEntry = dynamic_cast<gdcm::ValEntry*>(d)))
return valEntry;
else
return GetNextValEntry();