Program: gdcm
Module: $RCSfile: gdcmDicomDirElement.cxx,v $
Language: C++
- Date: $Date: 2005/10/19 12:01:50 $
- Version: $Revision: 1.40 $
+ Date: $Date: 2005/10/26 08:04:15 $
+ Version: $Revision: 1.41 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
* \brief Print all
* @param os The output stream to be written to.
*/
-void DicomDirElement::Print(std::ostream &os)
+void DicomDirElement::Print(std::ostream &os,std::string const &)
{
std::ostringstream s;
std::list<DicomElement>::iterator it;
Program: gdcm
Module: $RCSfile: gdcmDicomDirElement.h,v $
Language: C++
- Date: $Date: 2005/10/25 14:52:33 $
- Version: $Revision: 1.33 $
+ Date: $Date: 2005/10/26 08:04:15 $
+ Version: $Revision: 1.34 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
/**
* \brief canonical Printer
*/
- void Print(std::ostream &os);
+ virtual void Print(std::ostream &os = std::cout,
+ std::string const &indent = "" );
/**
* \brief returns a reference to the chained List
Program: gdcm
Module: $RCSfile: gdcmDictGroupName.cxx,v $
Language: C++
- Date: $Date: 2005/10/23 15:32:30 $
- Version: $Revision: 1.5 $
+ Date: $Date: 2005/10/26 08:04:15 $
+ Version: $Revision: 1.6 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
* \brief Print all
* @param os The output stream to be written to.
*/
-void DictGroupName::Print(std::ostream &os)
+void DictGroupName::Print(std::ostream &os,std::string const &)
{
std::ostringstream s;
Program: gdcm
Module: $RCSfile: gdcmDictGroupName.h,v $
Language: C++
- Date: $Date: 2005/10/25 14:52:34 $
- Version: $Revision: 1.4 $
+ Date: $Date: 2005/10/26 08:04:15 $
+ Version: $Revision: 1.5 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
public:
static DictGroupName *New() {return new DictGroupName();}
- void Print(std::ostream &os = std::cout);
+ virtual void Print(std::ostream &os = std::cout,
+ std::string const &indent = "" );
const TagName &GetName(uint16_t group);
Program: gdcm
Module: $RCSfile: gdcmTS.cxx,v $
Language: C++
- Date: $Date: 2005/10/25 17:51:17 $
- Version: $Revision: 1.51 $
+ Date: $Date: 2005/10/26 08:04:16 $
+ Version: $Revision: 1.52 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
* \brief Print all
* @param os The output stream to be written to.
*/
-void TS::Print(std::ostream &os)
+void TS::Print(std::ostream &os,std::string const &)
{
std::ostringstream s;
Program: gdcm
Module: $RCSfile: gdcmTS.h,v $
Language: C++
- Date: $Date: 2005/10/25 14:52:35 $
- Version: $Revision: 1.22 $
+ Date: $Date: 2005/10/26 08:04:16 $
+ Version: $Revision: 1.23 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
public:
static TS *New() {return new TS();}
- void Print(std::ostream &os = std::cout);
+ virtual void Print(std::ostream &os = std::cout,
+ std::string const &indent = "" );
int Count(TSKey const &key);
TSAtr const &GetValue(TSKey const &key);
Program: gdcm
Module: $RCSfile: gdcmVR.cxx,v $
Language: C++
- Date: $Date: 2005/10/23 14:56:27 $
- Version: $Revision: 1.46 $
+ Date: $Date: 2005/10/26 08:04:16 $
+ Version: $Revision: 1.47 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
* \brief Print all
* @param os The output stream to be written to.
*/
-void VR::Print(std::ostream &os)
+void VR::Print(std::ostream &os,std::string const &)
{
for (VRHT::iterator it = vr.begin(); it != vr.end(); ++it)
{
Program: gdcm
Module: $RCSfile: gdcmVR.h,v $
Language: C++
- Date: $Date: 2005/10/25 14:52:35 $
- Version: $Revision: 1.25 $
+ Date: $Date: 2005/10/26 08:04:16 $
+ Version: $Revision: 1.26 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
public:
static VR *New() {return new VR();}
- void Print(std::ostream &os = std::cout);
+ virtual void Print(std::ostream &os = std::cout,
+ std::string const &indent = "" );
/// \brief Get the count for an element
int Count(VRKey const &key) { return vr.count(key); };