1 /*=========================================================================
4 Module: $RCSfile: gdcmBinEntry.h,v $
6 Date: $Date: 2005/01/06 20:03:26 $
7 Version: $Revision: 1.29 $
9 Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
10 l'Image). All rights reserved. See Doc/License.txt or
11 http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details.
13 This software is distributed WITHOUT ANY WARRANTY; without even
14 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 PURPOSE. See the above copyright notices for more information.
17 =========================================================================*/
19 #ifndef GDCMBINENTRY_H
20 #define GDCMBINENTRY_H
22 #include "gdcmValEntry.h"
28 //-----------------------------------------------------------------------------
31 * \brief The dicom header of a Dicom file contains a set of such entries
32 * (when successfuly parsed against a given Dicom dictionary)
33 * This one contains a 'string value'.
35 class GDCM_EXPORT BinEntry : public ValEntry
38 BinEntry( DictEntry *e );
39 BinEntry( DocEntry *d );
43 void Print( std::ostream &os = std::cout );
44 void WriteContent( std::ofstream *fp, FileType ft);
46 /// \brief Returns the area value of the current Dicom Header Entry
47 /// when it's not string-translatable (e.g : a LUT table)
48 uint8_t *GetBinArea() { return BinArea; }
49 void SetBinArea( uint8_t *area, bool self = true );
51 /// Sets the value (string) of the current Dicom Document Entry
52 virtual void SetValue(std::string const &val) { SetValueOnly(val); };
54 /// \brief unsecure memory area to hold 'non string' values
55 /// (ie : Lookup Tables, overlays, icons)
59 } // end namespace gdcm
60 //-----------------------------------------------------------------------------