X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=gdcmPython%2F__init__.py;h=3cbeb9cf18b236957a6c9245fc11e37b287fa503;hb=d3e997d981d84fece924c52c8b513bccc6cd371a;hp=bba4be47f5bf5e623e6bcc2e73bd91e6e1755ee1;hpb=bf43331ab3558e3ae695b8e778166525401710f9;p=gdcm.git diff --git a/gdcmPython/__init__.py b/gdcmPython/__init__.py index bba4be47..3cbeb9cf 100644 --- a/gdcmPython/__init__.py +++ b/gdcmPython/__init__.py @@ -70,12 +70,14 @@ except ImportError,e: raise ImportError, "gdcm extension not imported." ### Expose only the necessary stuff -gdcmHeader = gdcm.gdcmHeader -gdcmDictSet = gdcm.gdcmDictSet -gdcmFile = gdcm.gdcmFile +gdcmGlobal = gdcm.gdcmGlobal +gdcmDictSet = gdcm.gdcmDictSet +gdcmHeader = gdcm.gdcmHeader +gdcmHeaderHelper = gdcm.gdcmHeaderHelper +gdcmFile = gdcm.gdcmFile -def GetPubDictTagNames(): - return gdcm.cvar.gdcmGlob.GetDicts().GetPubDictTagNames() +def GetPubDictEntryNames(): + return gdcm.cvar.gdcmGlob.GetDicts().GetPubDictEntryNames() -def GetPubDictTagNamesByCategory(): - return gdcm.cvar.gdcmGlob.GetDicts().GetPubDictTagNamesByCategory() +def GetPubDictEntryNamesByCategory(): + return gdcm.cvar.gdcmGlob.GetDicts().GetPubDictEntryNamesByCategory()