X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmRLEFramesInfo.h;h=2c66578c0c4a5564e4cbea51ff99fc7a1db2b313;hb=5a7f506da1ee16d6e742c4e95f7f1b09826d8980;hp=b5f60727f851df43dc4a3fdbebbdb1d6082b6078;hpb=b7e5f2772866e8cca5941e2daf611cc96a0e2d11;p=gdcm.git diff --git a/src/gdcmRLEFramesInfo.h b/src/gdcmRLEFramesInfo.h index b5f60727..2c66578c 100644 --- a/src/gdcmRLEFramesInfo.h +++ b/src/gdcmRLEFramesInfo.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmRLEFramesInfo.h,v $ Language: C++ - Date: $Date: 2005/02/11 16:58:49 $ - Version: $Revision: 1.19 $ + Date: $Date: 2007/05/23 14:18:11 $ + Version: $Revision: 1.23 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -24,7 +24,7 @@ #include -namespace gdcm +namespace GDCM_NAME_SPACE { /** * \brief Utility class for gathering the informations of the collection @@ -42,20 +42,22 @@ namespace gdcm */ class GDCM_EXPORT RLEFramesInfo { -public: +friend class PixelReadConvert; +friend class File; + +private: ~RLEFramesInfo(); void Print( std::ostream &os = std::cout, std::string indent = "" ); bool DecompressRLEFile( std::ifstream *fp, uint8_t *subRaw, int xSize, - int ySize, int zSize, int bitsAllocated ); - bool ConvertRLE16BitsFromRLE8Bits( uint8_t *subRaw, int xSize, int ySize, - int numberOfFrames ); + int ySize, int zSize, int tSize, int bitsAllocated ); + bool ConvertRLE16BitsFromRLE8Bits( uint8_t *subRaw, int xSize, int ySize, + int tSize, int numberOfFrames); void AddFrame(RLEFrame *frame); RLEFrame *GetFirstFrame(); RLEFrame *GetNextFrame(); -private: typedef std::list RLEFrameList; RLEFrameList Frames;