]> Creatis software - gdcm.git/blobdiff - src/gdcmRLEFramesInfo.h
BUG: Fix bug for Philips NTSCAN, this was fixed everywhere except the main tree...
[gdcm.git] / src / gdcmRLEFramesInfo.h
index 8994ed8e483afa17d0e40042f202ccdc73993583..d8cb65effef8f04d332f463aa9074fdd2f6b41d1 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmRLEFramesInfo.h,v $
   Language:  C++
-  Date:      $Date: 2004/10/10 16:44:00 $
-  Version:   $Revision: 1.4 $
+  Date:      $Date: 2004/12/03 20:16:58 $
+  Version:   $Revision: 1.8 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
 #define GDCMRLEFRAMESINFO_H
 
 #include "gdcmRLEFrame.h"
+
 #include <list>
 
+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::ComputeRLEInfo() ).
+ *        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;
-friend class gdcmPixelConvert;
+   typedef std::list< RLEFrame* > RLEFrameList;
+friend class Document;
+friend class File;
+friend class PixelReadConvert;
    RLEFrameList Frames;
 public:
-   ~gdcmRLEFramesInfo();
+   ~RLEFramesInfo();
+   void Print( std::string indent = "", std::ostream &os = std::cout );
 };
+} // end namespace gdcm
 
 //-----------------------------------------------------------------------------
 #endif