]> Creatis software - gdcm.git/blob - src/gdcmJPEGFragmentsInfo.h
* src/gdcmDocument.cxx ftell() return properly stored in a long (i.e.
[gdcm.git] / src / gdcmJPEGFragmentsInfo.h
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: gdcmJPEGFragmentsInfo.h,v $
5   Language:  C++
6   Date:      $Date: 2004/10/20 14:30:40 $
7   Version:   $Revision: 1.5 $
8                                                                                 
9   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
10   l'Image). All rights reserved. See Doc/License.txt or
11   http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details.
12                                                                                 
13      This software is distributed WITHOUT ANY WARRANTY; without even
14      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15      PURPOSE.  See the above copyright notices for more information.
16                                                                                 
17 =========================================================================*/
18
19
20 #ifndef GDCMJPEGFRAGMENTSINFO_H
21 #define GDCMJPEGFRAGMENTSINFO_H
22
23 #include "gdcmJPEGFragment.h"
24 #include <list>
25 #include <iostream>
26
27 namespace gdcm 
28 {
29
30 /**
31  * \brief Utility class for gathering the informations of the collection
32  *        of JPEG fragment[s] (see \ref JPEGFragment)  when handling
33  *        "Encapsulated JPEG Compressed Images". 
34  *        The informations on each frame are obtained during the parsing
35  *        of a Document (refer to
36  *         \ref Document::ComputeJPEGFragmentInfo() ).
37  *        They shall be used when (if necessary) decoding the fragments.
38  *
39  *        This class is simply a stl list<> of \ref JPEGFragment.
40  */
41 class GDCM_EXPORT JPEGFragmentsInfo
42 {
43 friend class Document;
44 friend class File;
45 friend class PixelConvert;
46 private:
47    typedef std::list< JPEGFragment* > JPEGFragmentsList;
48    JPEGFragmentsList Fragments;
49 public:
50    ~JPEGFragmentsInfo();
51    void Print( std::string indent = "", std::ostream &os = std::cout );
52 };
53 } // end namespace gdcm
54
55 //-----------------------------------------------------------------------------
56 #endif