Program: gdcm
Module: $RCSfile: gdcmDicomDir.cxx,v $
Language: C++
- Date: $Date: 2005/02/11 16:55:39 $
- Version: $Revision: 1.132 $
+ Date: $Date: 2005/02/25 15:49:54 $
+ Version: $Revision: 1.133 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
|| first )
{
SetElement(path, GDCM_DICOMDIR_SERIE, *it);
- first = true;
}
// Always Deal with 'IMAGE' Elements
Program: gdcm
Module: $RCSfile: gdcmDictSet.cxx,v $
Language: C++
- Date: $Date: 2005/02/05 01:37:08 $
- Version: $Revision: 1.60 $
+ Date: $Date: 2005/02/25 15:49:54 $
+ Version: $Revision: 1.61 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
std::string DictSet::BuildDictPath()
{
std::string resultPath;
- const char *envPath = 0;
+ const char *envPath;
envPath = getenv("GDCM_DICT_PATH");
if (envPath && (strlen(envPath) != 0))
Program: gdcm
Module: $RCSfile: gdcmDirList.cxx,v $
Language: C++
- Date: $Date: 2005/02/06 14:43:27 $
- Version: $Revision: 1.45 $
+ Date: $Date: 2005/02/25 15:49:55 $
+ Version: $Revision: 1.46 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
// bility of your programs.
struct stat buf;
- dirent *d = 0;
+ dirent *d;
for (d = readdir(dir); d; d = readdir(dir))
{
fileName = dirName + d->d_name;
Program: gdcm
Module: $RCSfile: gdcmDocument.cxx,v $
Language: C++
- Date: $Date: 2005/02/14 10:45:04 $
- Version: $Revision: 1.230 $
+ Date: $Date: 2005/02/25 15:49:55 $
+ Version: $Revision: 1.231 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
void Document::ParseDES(DocEntrySet *set, long offset,
long l_max, bool delim_mode)
{
- DocEntry *newDocEntry = 0;
+ DocEntry *newDocEntry;
ValEntry *newValEntry;
BinEntry *newBinEntry;
SeqEntry *newSeqEntry;
VRKey vr;
- bool used = false;
+ bool used;
while (true)
{