Program: gdcm
Module: $RCSfile: gdcmDebug.h,v $
Language: C++
- Date: $Date: 2005/02/01 10:29:54 $
- Version: $Revision: 1.27 $
+ Date: $Date: 2005/02/01 13:11:49 $
+ Version: $Revision: 1.28 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
//-----------------------------------------------------------------------------
/**
- * \ingroup Debug
* \brief Debug is an object for debugging in program.
* It has 2 debugging modes :
* - error : for bad library use, seriously wrong DICOM
Program: gdcm
Module: $RCSfile: gdcmDicomDir.h,v $
Language: C++
- Date: $Date: 2005/02/01 10:29:54 $
- Version: $Revision: 1.51 $
+ Date: $Date: 2005/02/01 13:11:49 $
+ 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
//-----------------------------------------------------------------------------
/**
- * \ingroup DicomDir
* \brief DicomDir defines an object representing a DICOMDIR in memory
- * as a tree-like structure DicomDirPatient -> DicomDirStudy -> DicomDirSerie
- * -> DicomDirImage
- *
+ * as a tree-like structure DicomDirPatient
+ * -> DicomDirStudy
+ * -> DicomDirSerie
+ * -> DicomDirImage
*/
class GDCM_EXPORT DicomDir: public Document
{
Program: gdcm
Module: $RCSfile: gdcmDicomDirElement.h,v $
Language: C++
- Date: $Date: 2005/01/26 09:49:53 $
- Version: $Revision: 1.23 $
+ Date: $Date: 2005/02/01 13:11:49 $
+ Version: $Revision: 1.24 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
void Print(std::ostream &os);
/**
- * \ingroup DicomDirElement
* \brief returns a reference to the chained List
* related to the META Elements of a DICOMDIR.
*/
Program: gdcm
Module: $RCSfile: gdcmDicomDirImage.h,v $
Language: C++
- Date: $Date: 2005/01/20 16:16:42 $
- Version: $Revision: 1.15 $
+ Date: $Date: 2005/02/01 13:11:49 $
+ Version: $Revision: 1.16 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
{
//-----------------------------------------------------------------------------
/**
- * \ingroup DicomDirImage
* \brief describes an IMAGE within a SERIE
* (DicomDirSerie) of a given DICOMDIR (DicomDir)
*/
DicomDirImage(bool empty=false);
~DicomDirImage();
- void Print(std::ostream &os = std::cout, std::string const & indent = "" );
+ void Print(std::ostream &os = std::cout, std::string const &indent = "" );
};
} // end namespace gdcm
//-----------------------------------------------------------------------------
Program: gdcm
Module: $RCSfile: gdcmDicomDirMeta.h,v $
Language: C++
- Date: $Date: 2005/01/20 16:16:42 $
- Version: $Revision: 1.17 $
+ Date: $Date: 2005/02/01 13:11:49 $
+ Version: $Revision: 1.18 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
//-----------------------------------------------------------------------------
/**
- * \ingroup DicomDirMeta
* \brief Meta Elements (group 0002) of a DicomDir
*/
class GDCM_EXPORT DicomDirMeta : public DicomDirObject
DicomDirMeta(bool empty=false);
~DicomDirMeta();
- virtual void Print(std::ostream &os = std::cout, std::string const & indent = "" );
+ virtual void Print(std::ostream &os = std::cout, std::string const &indent = "" );
virtual void WriteContent(std::ofstream *fp, FileType t);
};
} // end namespace gdcm
Program: gdcm
Module: $RCSfile: gdcmDicomDirObject.h,v $
Language: C++
- Date: $Date: 2005/01/20 16:16:42 $
- Version: $Revision: 1.14 $
+ Date: $Date: 2005/02/01 13:11:49 $
+ Version: $Revision: 1.15 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
typedef std::list<DicomDirObject *> ListContent;
//-----------------------------------------------------------------------------
/**
- * \ingroup DicomDirObject
* \brief Parent object for DicomDirPatient, DicomDirStudy,
* DicomDirSerie, DicomDirImage, of a DicomDir
*/
protected:
// Constructor and destructor are protected to avoid end user to
// instanciate from this class.
- // NO ! DicomDir needs to instanciate it!
DicomDirObject(int depth = 1);
~DicomDirObject();
Program: gdcm
Module: $RCSfile: gdcmDictEntry.h,v $
Language: C++
- Date: $Date: 2005/02/01 10:41:33 $
- Version: $Revision: 1.32 $
+ Date: $Date: 2005/02/01 13:11:49 $
+ Version: $Revision: 1.33 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
//-----------------------------------------------------------------------------
/**
- * \ingroup DictEntry
* \brief
* the DictEntry in an element contained by the Dict.
* It contains :
Program: gdcm
Module: $RCSfile: gdcmDictSet.h,v $
Language: C++
- Date: $Date: 2005/01/20 11:39:49 $
- Version: $Revision: 1.39 $
+ Date: $Date: 2005/02/01 13:11:49 $
+ Version: $Revision: 1.40 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
//-----------------------------------------------------------------------------
/**
- * \ingroup DictSet
* \brief Container for managing a set of loaded dictionaries (Dict).
* \note Hopefully, sharing dictionaries should avoid
* \par reloading an already loaded dictionary (saving time)
DictSet();
~DictSet();
- void Print(std::ostream &os = std::cout, std::string const & indent = "" );
+ void Print(std::ostream &os = std::cout, std::string const &indent = "" );
// Probabely useless !
//EntryNamesList *GetPubDictEntryNames();
Program: gdcm
Module: $RCSfile: gdcmDirList.h,v $
Language: C++
- Date: $Date: 2005/02/01 09:46:15 $
- Version: $Revision: 1.21 $
+ Date: $Date: 2005/02/01 13:11:49 $
+ Version: $Revision: 1.22 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
// so GDCM_EXPORT keyword was removed for this class only
/**
- * \ingroup DirList
* \brief List containing the file headers of all the gdcm readable files
* found by exploring recursively a root directory.
*/
Program: gdcm
Module: $RCSfile: gdcmUtil.h,v $
Language: C++
- Date: $Date: 2005/01/28 09:37:29 $
- Version: $Revision: 1.51 $
+ Date: $Date: 2005/02/01 13:11:49 $
+ 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
namespace gdcm
{
/**
- * \ingroup Globals Utility functions
* \brief Here are some utility functions, belonging to the Util class,
* dealing with strings, file names... that can be called
* from anywhere by whomsoever they can help.
GDCM_EXPORT std::ostream &binary_write(std::ostream &os, const uint16_t &val);
GDCM_EXPORT std::ostream &binary_write(std::ostream &os, const uint32_t &val);
GDCM_EXPORT std::ostream &binary_write(std::ostream &os, const char *val);
- GDCM_EXPORT std::ostream &binary_write(std::ostream &os, std::string const & val);
+ GDCM_EXPORT std::ostream &binary_write(std::ostream &os, std::string const &val);
} // end namespace gdcm
//-----------------------------------------------------------------------------
#endif