X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmRLEFramesInfo.h;h=56724c2ebc1356267baccbf66fdf0671bdce3aa8;hb=d7531a8099267279c067b9115309cdc10f8eb46d;hp=c9036b6c494f0da143735ff25a30792a69c706a9;hpb=fefc9b7857bfe001051ec94a59256f6c7b684277;p=gdcm.git diff --git a/src/gdcmRLEFramesInfo.h b/src/gdcmRLEFramesInfo.h index c9036b6c..56724c2e 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/06 14:43:28 $ - Version: $Revision: 1.18 $ + Date: $Date: 2005/11/18 14:33:24 $ + Version: $Revision: 1.20 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -42,20 +42,23 @@ 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 numberOfFrames ); void AddFrame(RLEFrame *frame); RLEFrame *GetFirstFrame(); RLEFrame *GetNextFrame(); -private: +//private:: typedef std::list RLEFrameList; RLEFrameList Frames;