X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;ds=sidebyside;f=src%2FgdcmJPEGFragment.h;h=a446d9c77f098befd64f4d4c5ec586658183f63f;hb=446ab2af0e3045cd559b086ced08a8cc5a61d2e2;hp=7c515c145a3db30357899cdff357dbaafa2874e4;hpb=da6bc02a3bb5627685bd70f5503305a7f9b3d7cd;p=gdcm.git diff --git a/src/gdcmJPEGFragment.h b/src/gdcmJPEGFragment.h index 7c515c14..a446d9c7 100644 --- a/src/gdcmJPEGFragment.h +++ b/src/gdcmJPEGFragment.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmJPEGFragment.h,v $ Language: C++ - Date: $Date: 2004/10/10 16:44:00 $ - Version: $Revision: 1.1 $ + Date: $Date: 2004/12/03 20:16:58 $ + 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,6 +22,11 @@ #include "gdcmCommon.h" +#include + +namespace gdcm +{ + /** * \brief Utility class for summerizing the informations of a JPEG * fragment of an "Encapsulated JPEG Compressed Image". @@ -30,22 +35,24 @@ * - the fragment length * * Each instance of this class (they can be as many instances for - * a given gdcmDocument as they are JPEG fragments and they are - * collected in a \ref gdcmJPEGFragmentsInfo ) + * a given Document as they are JPEG fragments and they are + * collected in a \ref JPEGFragmentsInfo ) */ -class GDCM_EXPORT gdcmJPEGFragment +class GDCM_EXPORT JPEGFragment { -friend class gdcmDocument; -friend class gdcmFile; -friend class gdcmPixelConvert; +public: + JPEGFragment(); + void Print( std::string indent = "", std::ostream &os = std::cout ); + +private: long Offset; long Length; - gdcmJPEGFragment() - { - Offset = 0; - Length = 0; - } + +friend class Document; +friend class File; +friend class PixelReadConvert; }; +} // end namespace gdcm //----------------------------------------------------------------------------- #endif