X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;ds=sidebyside;f=src%2FgdcmGlobal.cxx;h=a3a46599e12984cf7965514d5b624e854ea5fc6a;hb=d6fa71b6fa0186d6d85edc308741c58f03adf1f3;hp=6231e2a29b0a74a4ce502f6aeeccc579c35dad69;hpb=e9a27a25c5f3c9933e6fe2ba1ef53e2797006727;p=gdcm.git diff --git a/src/gdcmGlobal.cxx b/src/gdcmGlobal.cxx index 6231e2a2..a3a46599 100644 --- a/src/gdcmGlobal.cxx +++ b/src/gdcmGlobal.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmGlobal.cxx,v $ Language: C++ - Date: $Date: 2005/01/10 20:52:39 $ - Version: $Revision: 1.13 $ + Date: $Date: 2005/01/18 08:01:41 $ + 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 @@ -39,39 +39,33 @@ const std::string GDCM_NOTLOADED = "gdcm::NotLoaded"; const std::string GDCM_UNREAD = "gdcm::UnRead"; /** - * \ingroup Globals * \brief Pointer to a container, holding _all_ the Dicom Dictionaries. */ DictSet *Global::Dicts = (DictSet *)0; /** - * \ingroup Globals * \brief Pointer to a hash table containing the 'Value Representations'. */ VR *Global::ValRes = (VR *)0; /** - * \ingroup Globals * \brief Pointer to a hash table containing the Transfer Syntax codes * and their english description */ TS *Global::TranSyn = (TS *)0; /** - * \ingroup Globals * \brief Pointer to the hash table containing the Dicom Elements * necessary to describe each part of a DICOMDIR */ DicomDirElement *Global::ddElem = (DicomDirElement *)0; /** - * \ingroup Globals * \brief Global container */ Global Glob; /** - * \ingroup Global * \brief constructor : populates the various H Tables */ Global::Global() @@ -88,7 +82,6 @@ Global::Global() } /** - * \ingroup Global * \brief canonical destructor */ Global::~Global() @@ -99,7 +92,6 @@ Global::~Global() delete ddElem; } /** - * \ingroup Global * \brief returns a pointer to the 'Value Representation Table' */ VR *Global::GetVR() @@ -107,15 +99,13 @@ VR *Global::GetVR() return ValRes; } /** - * \ingroup Global - * \brief returns a pointer to the 'Transfert Syntax Table' + * \brief returns a pointer to the 'Transfer Syntax Table' */ TS *Global::GetTS() { return TranSyn; } /** - * \ingroup Global * \brief returns a pointer to Dictionaries Table */ DictSet *Global::GetDicts() @@ -123,7 +113,6 @@ DictSet *Global::GetDicts() return Dicts; } /** - * \ingroup Global * \brief returns a pointer to the DicomDir related elements Table */ DicomDirElement *Global::GetDicomDirElements()