From 36065b288af82c4259a56523a3bd5fb4a529d7b5 Mon Sep 17 00:00:00 2001 From: jpr Date: Fri, 26 Mar 2004 13:49:32 +0000 Subject: [PATCH] some more doxygenation --- src/gdcmUtil.cxx | 23 ++++++++++++++++++----- 1 file changed, 18 insertions(+), 5 deletions(-) diff --git a/src/gdcmUtil.cxx b/src/gdcmUtil.cxx index ae7f0675..a2c491cc 100644 --- a/src/gdcmUtil.cxx +++ b/src/gdcmUtil.cxx @@ -40,7 +40,7 @@ gdcmGlobal gdcmGlob; /** * \ingroup gdcmGlobal - * \brief constructor : populates the + * \brief constructor : populates the various H Tables */ gdcmGlobal::gdcmGlobal(void) { if (VR || TS || Dicts || ddElem) @@ -61,19 +61,31 @@ gdcmGlobal::~gdcmGlobal() { delete TS; delete ddElem; } - +/** + * \ingroup gdcmGlobal + * \brief returns a pointer to the 'Value Representation Table' + */ gdcmVR *gdcmGlobal::GetVR(void) { return VR; } - +/** + * \ingroup gdcmGlobal + * \brief returns a pointer to the 'Transfert Syntax Table' + */ gdcmTS *gdcmGlobal::GetTS(void) { return TS; } - +/** + * \ingroup gdcmGlobal + * \brief returns a pointer to Dictionaries Table + */ gdcmDictSet *gdcmGlobal::GetDicts(void) { return Dicts; } - +/** + * \ingroup gdcmGlobal + * \brief returns a pointer to the DicomDir related elements Table + */ gdcmDicomDirElement *gdcmGlobal::GetDicomDirElements(void) { return ddElem; } @@ -85,6 +97,7 @@ gdcmDicomDirElement *gdcmGlobal::GetDicomDirElements(void) { * from anywhere by whomsoever they can help. */ + /** * \ingroup Globals * \brief Because is not yet available in g++2.96 -- 2.48.1