]> Creatis software - gdcm.git/blobdiff - src/gdcmJPEGFragment.h
Remove some useless seekg, tellg.
[gdcm.git] / src / gdcmJPEGFragment.h
index 70f3312bc79f4a29da4be8739a4ee1a235016617..18cd2a0112529014e192bfa2af4c97bed80fc769 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmJPEGFragment.h,v $
   Language:  C++
-  Date:      $Date: 2005/02/06 14:43:27 $
-  Version:   $Revision: 1.17 $
+  Date:      $Date: 2005/11/28 17:24:21 $
+  Version:   $Revision: 1.20 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -20,7 +20,7 @@
 #ifndef GDCMJPEGFRAGMENT_H
 #define GDCMJPEGFRAGMENT_H
 
-#include "gdcmCommon.h"
+#include "gdcmBase.h"
 
 #include <iostream>
 #include <fstream>
@@ -39,11 +39,11 @@ namespace gdcm
  *        a given Document as they are JPEG fragments and they are
  *        collected in a \ref JPEGFragmentsInfo )
  */
-class GDCM_EXPORT JPEGFragment
+   class GDCM_EXPORT JPEGFragment : public Base
 {
 public:
    JPEGFragment();
-   void Print( std::ostream &os = std::cout, std::string indent = "" );
+   void Print( std::ostream &os = std::cout, std::string const &indent = "" );
    void DecompressJPEGFramesFromFile(std::ifstream *fp, 
                                      uint8_t *buffer, int nBits, 
                                      int &statesuspension);
@@ -52,11 +52,11 @@ public:
    bool ReadJPEGFile12 (std::ifstream *fp, void *image_buffer, int &statesuspension );
    bool ReadJPEGFile16 (std::ifstream *fp, void *image_buffer, int &statesuspension );
 
-   void SetLength(uint32_t length) { Length = length; };
-   uint32_t GetLength()            { return Length;   };
-   void SetOffset(uint32_t offset) { Offset = offset; };
-   uint32_t GetOffset()            { return Offset;   };
-   uint8_t *GetImage()             { return pImage;   };
+   void SetLength(uint32_t length) { Length = length; }
+   uint32_t GetLength()            { return Length;   }
+   void SetOffset(uint32_t offset) { Offset = offset; }
+   uint32_t GetOffset()            { return Offset;   }
+   uint8_t *GetImage()             { return pImage;   }
 
 private:
    uint32_t Offset;