X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmFile.h;h=f958d9a29a6d3b26c94c627f05868470a2501b59;hb=130558c1fc10cbc2d5d58484b310fa86bd20d81b;hp=0f75b016bd9788250b156e917e5e22017b6ff6b2;hpb=327dfe7647e3720b0f3125f9b19397cb9afc0ed3;p=gdcm.git diff --git a/src/gdcmFile.h b/src/gdcmFile.h index 0f75b016..f958d9a2 100644 --- a/src/gdcmFile.h +++ b/src/gdcmFile.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmFile.h,v $ Language: C++ - Date: $Date: 2005/01/06 20:03:27 $ - Version: $Revision: 1.91 $ + Date: $Date: 2005/01/16 04:50:42 $ + Version: $Revision: 1.94 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -31,8 +31,8 @@ class PixelReadConvert; class PixelWriteConvert; class DocEntryArchive; //----------------------------------------------------------------------------- -/* - * In addition to Dicom header exploration, this class is designed +/** + * \brief In addition to Dicom Header exploration, this class is designed * for accessing the image/volume content. One can also use it to * write Dicom/ACR-NEMA/RAW files. */ @@ -52,7 +52,7 @@ public: virtual ~File(); - void Print(std::ostream &os = std::cout); + void Print(std::ostream &os = std::cout, std::string const & indent = ""); /// Accessor to \ref Header Header *GetHeader() { return HeaderInternal; } @@ -86,14 +86,14 @@ public: bool WriteAcr (std::string const &fileName); bool Write (std::string const &fileName); - bool SetEntryByNumber(std::string const &content, - uint16_t group, uint16_t element); - bool SetEntryByNumber(uint8_t *content, int lgth, - uint16_t group, uint16_t element); - bool ReplaceOrCreateByNumber(std::string const &content, - uint16_t group, uint16_t element); - bool ReplaceOrCreateByNumber(uint8_t *binArea, int lgth, - uint16_t group, uint16_t element); + bool SetEntry(std::string const &content, + uint16_t group, uint16_t element); + bool SetEntry(uint8_t *content, int lgth, + uint16_t group, uint16_t element); + bool ReplaceOrCreate(std::string const &content, + uint16_t group, uint16_t element); + bool ReplaceOrCreate(uint8_t *binArea, int lgth, + uint16_t group, uint16_t element); uint8_t* GetLutRGBA();