]> Creatis software - gdcm.git/blobdiff - src/gdcmSQItem.cxx
Apply Laurent Guigues' advice to avoid icc warnings.
[gdcm.git] / src / gdcmSQItem.cxx
index 1dff9cd878cf60e9fe10554fe5152aa672376fff..431ac51e1702320ba439dc4557effbe70d50d815 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmSQItem.cxx,v $
   Language:  C++
-  Date:      $Date: 2005/10/27 09:52:33 $
-  Version:   $Revision: 1.78 $
+  Date:      $Date: 2005/11/07 09:46:37 $
+  Version:   $Revision: 1.79 $
   
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -99,6 +99,29 @@ void SQItem::WriteContent(std::ofstream *fp, FileType filetype)
    } 
 }
 
+/**
+ * \brief   Compute the full length of the SQItem (not only value
+ *          length) depending on the VR.
+ */
+uint32_t SQItem::ComputeFullLength()
+{
+   uint32_t l = 8;  // Item Starter length
+   for (ListDocEntry::iterator it = DocEntries.begin();  
+                               it != DocEntries.end();
+                             ++it)
+   {   
+      // we skip delimitors (start and end one) because 
+      // we force them as 'no length'
+      if ( (*it)->GetGroup() == 0xfffe )
+      {
+         continue;
+      }
+      l += (*it)->ComputeFullLength();
+   }
+   l += 8; // 'Item Delimitation' item 
+   return l;  
+}
+
 /**
  * \brief   Inserts *in the right place* any Entry (Dicom Element)
  *          into the Sequence Item