X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;ds=inline;f=src%2FgdcmBinEntry.h;h=c3254ad65949b2cedf433dea7745a80337141070;hb=e49dda75179644e228e33af72931535878799dff;hp=e8beab61fcac6c3d90402df840188694caf7967a;hpb=00be59e3db4bb1efcb3ac7980822863d1f7b92e5;p=gdcm.git diff --git a/src/gdcmBinEntry.h b/src/gdcmBinEntry.h index e8beab61..c3254ad6 100644 --- a/src/gdcmBinEntry.h +++ b/src/gdcmBinEntry.h @@ -27,7 +27,7 @@ public: /// when it's not string-translatable (e.g : a LUT table) inline void * GetVoidArea(void) { return voidArea; }; - /// Sets the value (non string) of the current Dicom Header Entry + /// \brief Sets the value (non string) of the current Dicom Header Entry inline void SetVoidArea(void * area) { voidArea = area; }; protected: @@ -35,19 +35,11 @@ protected: private: // Variables - /// \brief unsecure memory area to hold 'non string' values /// (ie : Lookup Tables, overlays, icons) void *voidArea; - - - - - - - }; //-----------------------------------------------------------------------------