X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmElementSet.h;h=4123aaeefd7d1f0db08152fbaf451658ff045756;hb=227ec8332a0a6a8eda9b049e3efee59fc164ac88;hp=0ed6c70b1db735ffebb281164fe4390727e8ab85;hpb=d8f46bac2d1f45d76b1cd57ac129c75fb3fe6806;p=gdcm.git diff --git a/src/gdcmElementSet.h b/src/gdcmElementSet.h index 0ed6c70b..4123aaee 100644 --- a/src/gdcmElementSet.h +++ b/src/gdcmElementSet.h @@ -3,12 +3,12 @@ Program: gdcm Module: $RCSfile: gdcmElementSet.h,v $ Language: C++ - Date: $Date: 2004/09/03 14:04:02 $ - Version: $Revision: 1.14 $ + Date: $Date: 2004/09/27 08:39:07 $ + Version: $Revision: 1.17 $ 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. + http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details. This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR @@ -45,18 +45,23 @@ public: virtual void Print(std::ostream &os = std::cout); virtual void Write(FILE *fp, FileType filetype); - /// Accessor to \ref gdcmElementSet::tagHT + /// Accessor to \ref TagHT // Do not expose this to user (public API) ! - //I re-add it temporaryly JPRx + // I re-add it temporaryly JPRx TagDocEntryHT &GetEntry() { return TagHT; }; + protected: // Variables /// Hash Table (map), to provide fast access TagDocEntryHT TagHT; private: - //friend class gdcmDicomDir; + /// Just for following ::GetTagHT() + friend class gdcmDocument; + + /// Accessor to \ref TagHT + TagDocEntryHT* GetTagHT() { return &TagHT; }; }; //-----------------------------------------------------------------------------