Program: gdcm
Module: $RCSfile: gdcmElementSet.cxx,v $
Language: C++
- Date: $Date: 2004/06/22 14:03:30 $
- Version: $Revision: 1.10 $
+ Date: $Date: 2004/06/22 14:37:04 $
+ Version: $Revision: 1.11 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
gdcmDocEntry *e;
for (TagDocEntryHT::iterator i = tagHT.begin(); i != tagHT.end(); ++i)
{
- e=i->second;
- e->WriteCommonPart(fp, filetype);
- std::cout<<e->GetKey() << " " << std::hex << e->GetVR() << " "
- << e->GetName()
- << std::endl;
-
-// e->Write(fp,filetype); // This will be the right way to proceed !
-
+ e=i->second;
+ e->WriteCommonPart(fp, filetype);
+ std::cout<<e->GetKey() << " " << std::hex << e->GetVR() << " "
+ << e->GetName()
+ << std::endl;
+
+// e->Write(fp,filetype); // This will be the right way to proceed !
+
if (gdcmBinEntry* BinEntry = dynamic_cast< gdcmBinEntry* >(e) ) {
BinEntry->Write(fp,filetype);
- continue;
+ continue;
}
- if (gdcmValEntry* ValEntry = dynamic_cast< gdcmValEntry* >(e) ) {
- ValEntry->Write(fp,filetype);
- continue;
+ if (gdcmValEntry* ValEntry = dynamic_cast< gdcmValEntry* >(e) ) {
+ ValEntry->Write(fp);
+ continue;
}
if (gdcmSeqEntry* SeqEntry = dynamic_cast< gdcmSeqEntry* >(e) ) {
SeqEntry->Write(fp,filetype);
- continue;
+ continue;
}
}
}
Program: gdcm
Module: $RCSfile: gdcmSQItem.cxx,v $
Language: C++
- Date: $Date: 2004/06/22 14:16:45 $
- Version: $Revision: 1.12 $
+ Date: $Date: 2004/06/22 14:37:04 $
+ Version: $Revision: 1.13 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
return;
}
if (gdcmValEntry* ValEntry = dynamic_cast< gdcmValEntry* >(Entry) ) {
- ValEntry->Write(fp,filetype);
+ ValEntry->Write(fp);
return;
}
if (gdcmSeqEntry* SeqEntry = dynamic_cast< gdcmSeqEntry* >(Entry) ) {
Program: gdcm
Module: $RCSfile: gdcmValEntry.cxx,v $
Language: C++
- Date: $Date: 2004/06/22 14:03:30 $
- Version: $Revision: 1.11 $
+ Date: $Date: 2004/06/22 14:37:04 $
+ Version: $Revision: 1.12 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
/*
* \brief canonical Writer
*/
-void gdcmValEntry::Write(FILE *fp, FileType filetype) {
+void gdcmValEntry::Write(FILE *fp) {
std::string vr=GetVR();
int lgr=GetLength();
if (vr == "US" || vr == "SS") {
Program: gdcm
Module: $RCSfile: gdcmValEntry.h,v $
Language: C++
- Date: $Date: 2004/06/22 13:47:33 $
- Version: $Revision: 1.13 $
+ Date: $Date: 2004/06/22 14:37:04 $
+ Version: $Revision: 1.14 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
inline void SetValue(std::string val) { value = val; };
virtual void Print(std::ostream &os = std::cout);
- virtual void gdcmValEntry::Write(FILE *fp, FileType filetype);
+ virtual void gdcmValEntry::Write(FILE *fp);
protected:
/// \brief for 'non string' values. Will be move to gdcmBinEntry, later