X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmJPEGFragment.h;h=b8e8ff0b786464de335449537134bf3fdb644fd7;hb=1d69b92978803204089d270599133917d944c651;hp=7c515c145a3db30357899cdff357dbaafa2874e4;hpb=ac11759a2c7fcb32a6e0d2efdc8bb03982ae349e;p=gdcm.git diff --git a/src/gdcmJPEGFragment.h b/src/gdcmJPEGFragment.h index 7c515c14..b8e8ff0b 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/10/12 04:35:46 $ + Version: $Revision: 1.2 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -21,6 +21,8 @@ #define GDCMJPEGFRAGMENT_H #include "gdcmCommon.h" +namespace gdcm +{ /** * \brief Utility class for summerizing the informations of a JPEG @@ -30,22 +32,23 @@ * - 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; +friend class Document; +friend class File; +friend class PixelConvert; long Offset; long Length; - gdcmJPEGFragment() + JPEGFragment() { Offset = 0; Length = 0; } }; +} // end namespace gdcm //----------------------------------------------------------------------------- #endif