X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;ds=sidebyside;f=src%2FgdcmContentEntry.h;h=0b61d9c1908c224994cde0fd73d653ad37210aaf;hb=06a0fef14384fff540b619069c11e9dfaae2bbc6;hp=da8db0ed38092ec8cb651c91e015a0d5b6a4cabc;hpb=643a8d9fe7dc8470db4cf7a6de639beebb339076;p=gdcm.git diff --git a/src/gdcmContentEntry.h b/src/gdcmContentEntry.h index da8db0ed..0b61d9c1 100644 --- a/src/gdcmContentEntry.h +++ b/src/gdcmContentEntry.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmContentEntry.h,v $ Language: C++ - Date: $Date: 2005/01/28 15:10:56 $ - Version: $Revision: 1.3 $ + Date: $Date: 2005/09/02 07:10:03 $ + Version: $Revision: 1.6 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -39,13 +39,12 @@ class GDCM_EXPORT ContentEntry : public DocEntry public: virtual void WriteContent(std::ofstream *fp, FileType filetype) = 0; - // Accessors are protected, not to be invoked by end user /// Sets the value (string) of the current Dicom entry - virtual void SetValue(std::string const &val) { Value = val; }; - - /// \brief Returns the 'Value' (e.g. "Dupond Marcel") converted + virtual void SetValue(std::string const &val) { Value = val; } + /// \brief Returns the 'Value' (e.g. "Dupond^Marcel") converted /// into a 'string', event if it's physically stored on disk as an integer - std::string const &GetValue() const { return Value; }; + /// (e.g. : 0x000c returned as "12") + std::string const &GetValue() const { return Value; } void Copy(DocEntry *doc);