X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;ds=sidebyside;f=src%2FgdcmJPEGFragment.h;h=a446d9c77f098befd64f4d4c5ec586658183f63f;hb=ba8a9ca0672ca189114be7abdef289648fdfdef6;hp=9b1b646a99faf9ddd7ec38acd4d1f070979aa037;hpb=91e773ef94e63d181ea8e2a322ced8bf0427aa27;p=gdcm.git diff --git a/src/gdcmJPEGFragment.h b/src/gdcmJPEGFragment.h index 9b1b646a..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/14 22:35:01 $ - Version: $Revision: 1.3 $ + 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,8 @@ #include "gdcmCommon.h" +#include + namespace gdcm { @@ -38,16 +40,17 @@ namespace gdcm */ class GDCM_EXPORT JPEGFragment { -friend class Document; -friend class File; -friend class PixelConvert; +public: + JPEGFragment(); + void Print( std::string indent = "", std::ostream &os = std::cout ); + +private: long Offset; long Length; - JPEGFragment() - { - Offset = 0; - Length = 0; - } + +friend class Document; +friend class File; +friend class PixelReadConvert; }; } // end namespace gdcm