X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDicomDirElement.cxx;h=e7a1fdb14078dbe4a7bb188163191ea5e01c3c5c;hb=00b6e0ddcbdbd41252e03732783f65efe5f52526;hp=f0f82ed195fe3a2e061f6142ee1c146d7db4b331;hpb=8b0d3c6c373474dc31af9eb56cf949298a723a76;p=gdcm.git diff --git a/src/gdcmDicomDirElement.cxx b/src/gdcmDicomDirElement.cxx index f0f82ed1..e7a1fdb1 100644 --- a/src/gdcmDicomDirElement.cxx +++ b/src/gdcmDicomDirElement.cxx @@ -1,5 +1,21 @@ -// gdcmDicomDirElement.cxx -//----------------------------------------------------------------------------- +/*========================================================================= + + Program: gdcm + Module: $RCSfile: gdcmDicomDirElement.cxx,v $ + Language: C++ + Date: $Date: 2004/06/23 03:36:24 $ + 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 + http://www.creatis.insa-lyon.fr/Public/Gdcm/License.htm for details. + + This software is distributed WITHOUT ANY WARRANTY; without even + the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR + PURPOSE. See the above copyright notices for more information. + +=========================================================================*/ + #include #include // For sprintf #include @@ -10,20 +26,14 @@ #include "gdcmDictSet.h" -/** - * \ingroup gdcmDicomDirElement - * \brief Class for the chained lists from the file 'Dicts/DicomDir.dic' - */ - //----------------------------------------------------------------------------- // Constructor / Destructor /** - * \ingroup gdcmDicomDirElement * \brief constructor : populates the chained lists * from the file 'Dicts/DicomDir.dic' */ - gdcmDicomDirElement::gdcmDicomDirElement(void) { +gdcmDicomDirElement::gdcmDicomDirElement() { std::string filename=gdcmDictSet::BuildDictPath() + std::string(DICT_ELEM); std::ifstream from(filename.c_str()); dbg.Error(!from, "gdcmDicomDirElement::gdcmDicomDirElement: can't open dictionary",filename.c_str()); @@ -69,7 +79,7 @@ * \ingroup gdcmDicomDirElement * \brief canonical destructor */ - gdcmDicomDirElement::~gdcmDicomDirElement() { +gdcmDicomDirElement::~gdcmDicomDirElement() { DicomDirMetaList.clear(); DicomDirPatientList.clear(); DicomDirStudyList.clear();