X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmRLEFramesInfo.h;h=d5ff6e103b6abcb0157fc70390181b32167bc085;hb=40b909789581894e57a0d8f22d6f1f91f55e7f84;hp=3bc1058ad711ca44975f04ca42808ee040c3c37c;hpb=64f79e8efbfae49231d1f469aa4fcc4acf0da70c;p=gdcm.git diff --git a/src/gdcmRLEFramesInfo.h b/src/gdcmRLEFramesInfo.h index 3bc1058a..d5ff6e10 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/06 09:58:08 $ - Version: $Revision: 1.1 $ + Date: $Date: 2004/10/12 04:35:47 $ + Version: $Revision: 1.5 $ 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,34 @@ #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 - * "Encapsulated RLE Compressed Images" (see PS-3.3 annex G). + * 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(); }; +} // end namespace gdcm //----------------------------------------------------------------------------- #endif