X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDict.h;h=66f0df52ed2207d1a0cefe565150beb13e813353;hb=0d33ba5ffb1c6beac21f33bd3e3aad67b7608c9d;hp=1e1f0754e17e2e5bce3da000978df99639df9592;hpb=65467b71ee500909b0ef7c31d442ca0c160d6a15;p=gdcm.git diff --git a/src/gdcmDict.h b/src/gdcmDict.h index 1e1f0754..66f0df52 100644 --- a/src/gdcmDict.h +++ b/src/gdcmDict.h @@ -54,12 +54,18 @@ public: * \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)