]> Creatis software - gdcm.git/blobdiff - src/gdcmHeader.h
*** empty log message ***
[gdcm.git] / src / gdcmHeader.h
index 1e67bc4f84bd5d18596bd54861d9f73c5773752d..08b5388b5636efcb35fd8e927dd0b56f920b8b5d 100644 (file)
@@ -97,6 +97,8 @@ public:
    inline virtual bool SetEntryByName(std::string content,std::string tagName)
       { return(gdcmParser::SetEntryByName(content,tagName)); }
 
+  inline virtual bool SetEntryLengthByNumber(guint32 l,guint16 group, guint16 element)
+      { return(gdcmParser::SetEntryLengthByNumber(l,group,element)); }
 
    inline virtual void UpdateShaEntries(void)
       { gdcmParser::UpdateShaEntries(); }
@@ -104,11 +106,14 @@ public:
 // Read (used in gdcmFile)
    void SetImageDataSize(size_t ExpectedSize);
 
+   bool operator<(gdcmHeader &header);
+
 protected:
    int write(std::ostream&);   
    int anonymize(std::ostream&);  // FIXME : anonymize should be a friend ?
 
 private:
+
 };
 
 //-----------------------------------------------------------------------------