X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmFileHelper.h;h=4848a946b4faa6393daa61250dad16a457e3e503;hb=7350639601914cd8ab02bfb0d6668c5bf56ce2f4;hp=13134d77e95819fd47f36a419811dad8f8f1f5b6;hpb=c094e185dd6404df031524ccae8e1b51e3b84871;p=gdcm.git diff --git a/src/gdcmFileHelper.h b/src/gdcmFileHelper.h index 13134d77..4848a946 100644 --- a/src/gdcmFileHelper.h +++ b/src/gdcmFileHelper.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmFileHelper.h,v $ Language: C++ - Date: $Date: 2005/01/21 11:40:55 $ - Version: $Revision: 1.3 $ + Date: $Date: 2005/01/25 15:44:24 $ + Version: $Revision: 1.7 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -27,6 +27,7 @@ namespace gdcm class File; class ValEntry; class BinEntry; +class SeqEntry; class PixelReadConvert; class PixelWriteConvert; class DocEntryArchive; @@ -54,6 +55,18 @@ public: void Print(std::ostream &os = std::cout, std::string const & indent = ""); + // File methods + bool SetValEntry(std::string const &content, + uint16_t group, uint16_t elem); + bool SetBinEntry(uint8_t *content, int lgth, + uint16_t group, uint16_t elem); + + ValEntry *InsertValEntry(std::string const &content, + uint16_t group, uint16_t elem); + BinEntry *InsertBinEntry(uint8_t *binArea, int lgth, + uint16_t group, uint16_t elem); + SeqEntry *InsertSeqEntry(uint16_t group, uint16_t elem); + /// Accessor to \ref File File *GetFile() { return FileInternal; } @@ -66,14 +79,14 @@ public: void SetImageData(uint8_t *data, size_t expectedSize); - // User datas + // User data void SetUserData(uint8_t *data, size_t expectedSize); uint8_t* GetUserData(); size_t GetUserDataSize(); - // RBG datas (from file + // RBG data (from file uint8_t* GetRGBData(); size_t GetRGBDataSize(); - // RAW datas (from file + // RAW data (from file uint8_t* GetRawData(); size_t GetRawDataSize(); @@ -86,19 +99,10 @@ public: bool WriteAcr (std::string const &fileName); bool Write (std::string const &fileName); - bool SetEntry(std::string const &content, - uint16_t group, uint16_t elem); - bool SetEntry(uint8_t *content, int lgth, - uint16_t group, uint16_t elem); - bool ReplaceOrCreate(std::string const &content, - uint16_t group, uint16_t elem); - bool ReplaceOrCreate(uint8_t *binArea, int lgth, - uint16_t group, uint16_t elem); - uint8_t* GetLutRGBA(); // Write mode - void SetWriteModeToRaw() { SetWriteMode(WMODE_RAW); }; + void SetWriteModeToRaw() { SetWriteMode(WMODE_RAW); }; void SetWriteModeToRGB() { SetWriteMode(WMODE_RGB); }; void SetWriteMode(FileMode mode) { WriteMode = mode; }; FileMode GetWriteMode() { return WriteMode; }; @@ -139,7 +143,7 @@ private: /// gdcm::File to use to load the file File *FileInternal; - /// \brief Whether the underlying \ref Header was loaded by + /// \brief Whether the underlying \ref gdcm::File was loaded by /// the constructor or passed to the constructor. When false /// the destructor is in charge of deletion. bool SelfHeader;