]> Creatis software - gdcm.git/blobdiff - src/gdcmDocument.h
Now, TestCopyDicom deals with private Entries
[gdcm.git] / src / gdcmDocument.h
index 448d9803b86fdbf613874dd9472c68e2bb66a76e..7c2ef447404ac2fd449a0237b733751c85d2aa42 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmDocument.h,v $
   Language:  C++
-  Date:      $Date: 2004/08/31 14:24:47 $
-  Version:   $Revision: 1.32 $
+  Date:      $Date: 2004/09/14 16:47:08 $
+  Version:   $Revision: 1.36 $
  
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -50,10 +50,6 @@ private:
    /// \brief Optional "shadow dictionary" (private elements) used to parse
    /// this header
    gdcmDict *RefShaDict;
-   
-   /// \brief Equals =1 if user wants to skip shadow groups while parsing
-   /// (to save space)
-   int IgnoreShadow;
 
    /// \brief Size threshold above which an element value will NOT be loaded
    /// in memory (to avoid loading the image/volume itself). By default,
@@ -139,9 +135,15 @@ public:
    gdcmValEntry* ReplaceOrCreateByNumber(std::string const & value,
                                          uint16_t group, uint16_t elem);
 
+   gdcmValEntry* ReplaceOrCreateByNumber(std::string const & value,
+                                         uint16_t group, uint16_t elem,
+                                         std::string const & VR);
+   
    gdcmBinEntry* ReplaceOrCreateByNumber(void *voidArea, int lgth,
                                          uint16_t group, uint16_t elem);
+
    gdcmSeqEntry* ReplaceOrCreateByNumber(uint16_t group, uint16_t elem);
+
    bool ReplaceIfExistByNumber ( std::string const & value,
                                  uint16_t group,
                                  uint16_t elem );
@@ -165,14 +167,14 @@ protected:
    
    void Parse7FE0 ();   
    // Entry
-   int CheckIfEntryExistByNumber(uint16_t group, uint16_t elem ); // int !
+   bool CheckIfEntryExistByNumber(uint16_t group, uint16_t elem );
 public:
    virtual std::string GetEntryByName    (TagName const & tagName);
    virtual std::string GetEntryVRByName  (TagName const & tagName);
    virtual std::string GetEntryByNumber  (uint16_t group, uint16_t elem);
    virtual std::string GetEntryVRByNumber(uint16_t group, uint16_t elem);
    virtual int     GetEntryLengthByNumber(uint16_t group, uint16_t elem);
-protected:
+//protected:
    virtual bool SetEntryByName  (std::string const & content, 
                                  std::string const & tagName);
    virtual bool SetEntryByNumber(std::string const & content,