X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDataEntry.h;h=0a891f5eff3ff858c5ad347e440a63abeb11f6c2;hb=ffaf0119eb35e6a5b8460036fbaf6fa7e701e0cc;hp=d3a37de21a015dd102af0f5d91392446d150cc35;hpb=fafcabd41c8bd44143874bb4f4ef267e9a718864;p=gdcm.git diff --git a/src/gdcmDataEntry.h b/src/gdcmDataEntry.h index d3a37de2..0a891f5e 100644 --- a/src/gdcmDataEntry.h +++ b/src/gdcmDataEntry.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDataEntry.h,v $ Language: C++ - Date: $Date: 2006/01/20 09:17:25 $ - Version: $Revision: 1.12 $ + Date: $Date: 2006/07/10 08:27:28 $ + Version: $Revision: 1.15 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -21,6 +21,7 @@ #include "gdcmDocEntry.h" +#include // for GetDSValue #include namespace gdcm @@ -39,10 +40,13 @@ class GDCM_EXPORT DataEntry : public DocEntry public: /// \brief Contructs a DataEntry with a RefCounter from DictEntry - static DataEntry *New(DictEntry *e) {return new DataEntry(e);} +// static DataEntry *New(DictEntry *e) {return new DataEntry(e);} /// \brief Contructs a DataEntry with a RefCounter from DocEntry static DataEntry *New(DocEntry *d) {return new DataEntry(d);} - +/// \brief Contructs a DataEntry with a RefCounter from elementary items + static DataEntry *New(uint16_t group,uint16_t elem, VRKey const &vr) + {return new DataEntry(group,elem,vr);} + // Print void Print(std::ostream &os = std::cout, std::string const &indent = ""); @@ -62,8 +66,8 @@ public: void SetValue(const uint32_t &id,const double &val); double GetValue(const uint32_t &id) const; - uint32_t GetValueCount(void) const; - bool IsValueCountValid() const; + uint32_t GetValueCount() const; + bool IsValueCountValid() /*const*/; // GetVM may update the pointer DicomDict void SetString(std::string const &value); std::string const &GetString() const; @@ -106,7 +110,7 @@ public: // Flags /// \brief sets the 'pixel data flag' void SetFlag(const TValueFlag &flag) { Flag = flag; } - /// \brief returns the 'pixel data flag' + /// \brief returns the 'pixel data flag' const TValueFlag &GetFlag() const { return Flag; } /// \brief true id Entry is a Pixel Data entry bool IsPixelData() { return (Flag &FLAG_PIXELDATA) != 0; } @@ -120,14 +124,17 @@ public: static void SetMaxSizePrintEntry(const uint32_t &size) { MaxSizePrintEntry = size; } + bool GetDSValue(std::vector &valueVector); + protected: - DataEntry(DictEntry *e); - DataEntry(DocEntry *d); + // DataEntry(DictEntry *e); + DataEntry(DocEntry *d); + DataEntry(uint16_t group,uint16_t elem,VRKey const &vr); ~DataEntry(); // Methods : - void NewBinArea(void); - void DeleteBinArea(void); + void NewBinArea( ); + void DeleteBinArea( ); // Members : /// \brief memory area to hold 'non std::string' representable values @@ -137,7 +144,8 @@ protected: bool SelfArea; /// \brief std::string representable value of the Entry. /// Parts of a multivaluated data are separated by back-slash - mutable std::string StrArea; + //mutable std::string StrArea; + mutable std::string *StrArea; // to avoid allocating useless std::string private: /// \brief 0 for straight entries, FLAG_PIXELDATA for Pixel Data entries