X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmRLEFramesInfo.h;h=5afa003e99f36d435e9e6fb11fb22bfc0894187b;hb=6fc40309997e3c20fc494201644a3e8094f0c971;hp=0e3f608a514c2f5dec8ed04732eef175b53206f3;hpb=01b26529fd830405f78ca1dc1fd7d2d7558a8a6e;p=gdcm.git diff --git a/src/gdcmRLEFramesInfo.h b/src/gdcmRLEFramesInfo.h index 0e3f608a..5afa003e 100644 --- a/src/gdcmRLEFramesInfo.h +++ b/src/gdcmRLEFramesInfo.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmRLEFramesInfo.h,v $ Language: C++ - Date: $Date: 2004/10/08 08:42:11 $ - Version: $Revision: 1.2 $ + Date: $Date: 2004/10/20 14:30:40 $ + Version: $Revision: 1.6 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -22,29 +22,35 @@ #include "gdcmRLEFrame.h" #include +namespace gdcm +{ /** * \brief Utility class for gathering the informations of the collection - * of RLE frame[s] (see \ref gdcmRLEFrame) when handling + * of RLE frame[s] (see \ref RLEFrame) when handling * "Encapsulated RLE Compressed Images" (see PS 3.5-2003 annex G). * Note: a classical image can be considered as the degenerated case * of a multiframe image. In this case the collection is limited * to a single individual frame. * The informations on each frame are obtained during the parsing - * of a gdcmDocument (refer to \ref gdcmDocument::Parse7FE0() ). + * of a Document (refer to + * \ref Document::ComputeRLEInfo() ). * They shall be used when (if necessary) decoding the frames. * - * This class is simply a stl list<> of \ref gdcmRLEFrame. + * This class is simply a stl list<> of \ref RLEFrame. */ -class GDCM_EXPORT gdcmRLEFramesInfo +class GDCM_EXPORT RLEFramesInfo { - typedef std::list< gdcmRLEFrame* > RLEFrameList; -friend class gdcmDocument; -friend class gdcmFile; + typedef std::list< RLEFrame* > RLEFrameList; +friend class Document; +friend class File; +friend class PixelConvert; RLEFrameList Frames; public: - ~gdcmRLEFramesInfo(); + ~RLEFramesInfo(); + void Print( std::string indent = "", std::ostream &os = std::cout ); }; +} // end namespace gdcm //----------------------------------------------------------------------------- #endif