]> Creatis software - gdcm.git/blobdiff - src/gdcmBinEntry.h
BUG: was leading zeroes in numeric components. This is illegal, according to PS 3...
[gdcm.git] / src / gdcmBinEntry.h
index f79e3e34438c427f22cfb7a3ec0026fd95f29b35..7ff241cb1c557fa5e24bc06cb9bb405a7c28242c 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmBinEntry.h,v $
   Language:  C++
-  Date:      $Date: 2004/11/16 16:20:23 $
-  Version:   $Revision: 1.25 $
+  Date:      $Date: 2005/01/21 11:40:55 $
+  Version:   $Revision: 1.32 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -20,7 +20,6 @@
 #define GDCMBINENTRY_H
 
 #include "gdcmValEntry.h"
-
 #include <iostream>
 
 namespace gdcm 
@@ -28,31 +27,35 @@ namespace gdcm
 
 //-----------------------------------------------------------------------------
 /**
- * \ingroup BinEntry
- * \brief   The dicom header of a Dicom file contains a set of such entries
+ * \brief   Any Dicom Document (File or DicomDir) contains 
+ *           a set of DocEntry entries 
  *          (when successfuly parsed against a given Dicom dictionary)
- *          This one contains a 'string value'.
+ *          BinEntry is a specialisation of ValEntry (for non std::string
+ *          representable values)
  */
 class GDCM_EXPORT BinEntry  : public ValEntry
 {
 public:
-   BinEntry( DictEntrye );
-   BinEntry( DocEntryd ); 
+   BinEntry( DictEntry *e );
+   BinEntry( DocEntry *d ); 
 
    ~BinEntry();
    
-   void Print( std::ostream &os = std::cout );
-   void Write( std::ofstream*, FileType );
+   void Print( std::ostream &os = std::cout, std::string const & indent = "" );
+   void WriteContent( std::ofstream *fp, FileType ft);
 
-   /// \brief Returns the area value of the current Dicom Header Entry
+   /// \brief Returns the area value of the current Dicom Entry
    ///  when it's not string-translatable (e.g : a LUT table)         
-   uint8_tGetBinArea()  { return BinArea; }
-   void  SetBinArea( uint8_tarea, bool self = true );
+   uint8_t *GetBinArea()  { return BinArea; }
+   void  SetBinArea( uint8_t *area, bool self = true );
 
+   /// Sets the value (string) of the current Dicom Entry
+   virtual void SetValue(std::string const &val) { SetValueOnly(val); };
 private:
    /// \brief unsecure memory area to hold 'non string' values 
    ///       (ie : Lookup Tables, overlays, icons)   
-   uint8_tBinArea;
+   uint8_t *BinArea;
    bool SelfArea;
 };
 } // end namespace gdcm