]> Creatis software - gdcm.git/blobdiff - src/gdcmJPEGFragmentsInfo.h
* src/gdcmDocument.cxx ftell() return properly stored in a long (i.e.
[gdcm.git] / src / gdcmJPEGFragmentsInfo.h
index 53e876991201963f03ac511a2601664335a77f34..0ae0ac8d1ae5c89040f4b5ac823d9267eeb6c2d1 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmJPEGFragmentsInfo.h,v $
   Language:  C++
-  Date:      $Date: 2004/10/12 04:35:46 $
-  Version:   $Revision: 1.2 $
+  Date:      $Date: 2004/10/20 14:30:40 $
+  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,6 +22,8 @@
 
 #include "gdcmJPEGFragment.h"
 #include <list>
+#include <iostream>
+
 namespace gdcm 
 {
 
@@ -38,13 +40,15 @@ namespace gdcm
  */
 class GDCM_EXPORT JPEGFragmentsInfo
 {
-   typedef std::list< JPEGFragment* > JPEGFragmentsList;
 friend class Document;
 friend class File;
 friend class PixelConvert;
+private:
+   typedef std::list< JPEGFragment* > JPEGFragmentsList;
    JPEGFragmentsList Fragments;
 public:
    ~JPEGFragmentsInfo();
+   void Print( std::string indent = "", std::ostream &os = std::cout );
 };
 } // end namespace gdcm