X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmElementSet.h;h=0c58214d7de0ab18104709fec7e5fdc6eb28db2c;hb=8a806c5653d7832005f2c6f658cf8b5fa612f656;hp=df2f32a822f2bf0e65b149357acb10b3bdf81fc6;hpb=0793477ed396d4a70bf7e77a53b33fc357d26e26;p=gdcm.git diff --git a/src/gdcmElementSet.h b/src/gdcmElementSet.h index df2f32a8..0c58214d 100644 --- a/src/gdcmElementSet.h +++ b/src/gdcmElementSet.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmElementSet.h,v $ Language: C++ - Date: $Date: 2004/09/10 14:32:04 $ - Version: $Revision: 1.15 $ + Date: $Date: 2004/09/17 13:11:16 $ + 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 @@ -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 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; }; }; //-----------------------------------------------------------------------------