]> Creatis software - gdcm.git/blobdiff - src/gdcmDict.h
sub-minor ... and so forth
[gdcm.git] / src / gdcmDict.h
index 8add2a6bfe75bda9e4ae4b21f89599e1b36a9561..66f0df52ed2207d1a0cefe565150beb13e813353 100644 (file)
@@ -42,24 +42,30 @@ public:
        bool RemoveEntry (guint16 group, guint16 element);
 
 // Tag
-       gdcmDictEntry * GetTagByName(TagName name);
-       gdcmDictEntry * GetTagByNumber(guint16 group, guint16 element);
+       gdcmDictEntry *GetDictEntryByName(TagName name);
+       gdcmDictEntry *GetDictEntryByNumber(guint16 group, guint16 element);
 
-   std::list<std::string> *GetTagNames(void);
+   std::list<std::string> *GetDictEntryNames(void);
    std::map<std::string, std::list<std::string> > *
-        GetTagNamesByCategory(void);
+        GetDictEntryNamesByCategory(void);
 
    /**
     * \ingroup gdcmDict
     * \brief   returns a ref to the Dicom Dictionary H table (map)
     * return the Dicom Dictionary H table
     */
-   inline TagKeyHT & gdcmDict::GetEntries(void)  { return KeyHt; }
+   inline TagKeyHT & GetEntriesByKey(void)  { return KeyHt; }
+
+   /**
+    * \ingroup gdcmDict
+    * \brief   returns a ref to the Dicom Dictionary H table (map)
+    * return the Dicom Dictionary H table
+    */
+   inline TagNameHT & GetEntriesByName(void)  { return NameHt; }
  
 private:
-   std::string name;
+   /// ASCII file holding the Dictionnary
    std::string filename;
-
    /// Access through TagKey (see alternate access with NameHt)
        TagKeyHT  KeyHt;
    /// Access through TagName (see alternate access with KeyHt)