]> Creatis software - gdcm.git/blobdiff - src/gdcmElementSet.h
BUG: Fix bug for Philips NTSCAN, this was fixed everywhere except the main tree...
[gdcm.git] / src / gdcmElementSet.h
index 6678c05c366c38027afc4e324b60c2ae67f4eb56..cfc921bd52a70c28479459d12b7c1f295afc7fe9 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmElementSet.h,v $
   Language:  C++
-  Date:      $Date: 2004/12/16 11:37:03 $
-  Version:   $Revision: 1.27 $
+  Date:      $Date: 2005/01/11 15:15:38 $
+  Version:   $Revision: 1.29 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -34,7 +34,13 @@ class SeqEntry;
 typedef std::map<TagKey, DocEntry *> TagDocEntryHT;
 
 //-----------------------------------------------------------------------------
-
+/**
+ * \brief
+ * \ref ElementSet is based on the STL map<> container
+ * (see \ref ElementSet::TagHT), as opposed to \ref SQItem
+ * which is based on an STL list container (see \ref ListDocEntry).
+ * It contains the 'zero-level- DocEntry (out of any Dicom Sequence)
+ */
 class GDCM_EXPORT ElementSet : public DocEntrySet
 {
 public:
@@ -52,7 +58,7 @@ public:
    /// Accessor to \ref TagHT
    // Do not expose this to user (public API) ! 
    // A test is using it thus put it in public (matt)
-   TagDocEntryHT const & GetTagHT() const { return TagHT; };
+   TagDocEntryHT const &GetTagHT() const { return TagHT; };
 
    void Initialize();
    DocEntry *GetNextEntry();