X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmRLEFrame.h;h=21b2dd30c1ec01fc09d3fd65d8124cb6cc49bd98;hb=575572bc10483ad3116ad7fb73197fa2c3f2ee34;hp=f7dcf0d5575ed2f88d88faa9dc2f5bd25e9bc8e8;hpb=e28b183ba68aa3cc84a44a779a31f9d906a1ad2f;p=gdcm.git diff --git a/src/gdcmRLEFrame.h b/src/gdcmRLEFrame.h index f7dcf0d5..21b2dd30 100644 --- a/src/gdcmRLEFrame.h +++ b/src/gdcmRLEFrame.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmRLEFrame.h,v $ Language: C++ - Date: $Date: 2004/10/18 12:49:23 $ - Version: $Revision: 1.6 $ + Date: $Date: 2004/12/03 20:16:58 $ + Version: $Revision: 1.10 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -22,6 +22,8 @@ #include "gdcmCommon.h" +#include + namespace gdcm { /** @@ -43,12 +45,13 @@ namespace gdcm class GDCM_EXPORT RLEFrame { friend class Document; -friend class File; -friend class PixelConvert; - int NumberFragments; +friend class PixelReadConvert; + unsigned int NumberFragments; long Offset[15]; long Length[15]; +public: RLEFrame() { NumberFragments = 0; } + void Print( std::string indent = "", std::ostream &os = std::cout ); }; } // end namespace gdcm