]> Creatis software - gdcm.git/blobdiff - src/gdcmJPEGFragment.h
STYLE: Remove old comments
[gdcm.git] / src / gdcmJPEGFragment.h
index e6d74eb8d408fc8954c890a3a2a7da4fe438d8f5..fa99e09d4a3c42314ffef2ccbd76bf893fdca411 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmJPEGFragment.h,v $
   Language:  C++
-  Date:      $Date: 2005/01/31 04:00:04 $
-  Version:   $Revision: 1.15 $
+  Date:      $Date: 2005/09/02 07:10:03 $
+  Version:   $Revision: 1.18 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -28,7 +28,8 @@
 namespace gdcm 
 {
 /**
- * \brief Utility class for summerizing the informations of a JPEG
+ * \brief *very* internal class . Shouldn't appear here !
+ *         Utility class for summerizing the informations of a JPEG
  *        fragment of an "Encapsulated JPEG Compressed Image".
  *        This information is a mix of:
  *        - the fragment offset
@@ -43,17 +44,19 @@ class GDCM_EXPORT JPEGFragment
 public:
    JPEGFragment();
    void Print( std::ostream &os = std::cout, std::string indent = "" );
-   void DecompressJPEGFramesFromFile(std::ifstream *fp, uint8_t *buffer, int nBits, int & statesuspension);
+   void DecompressJPEGFramesFromFile(std::ifstream *fp, 
+                                     uint8_t *buffer, int nBits, 
+                                     int &statesuspension);
 
-   bool ReadJPEGFile8 (std::ifstream* fp, void* image_buffer, int & statesuspension );
-   bool ReadJPEGFile12 (std::ifstream* fp, void* image_buffer, int & statesuspension );
-   bool ReadJPEGFile16 (std::ifstream* fp, void* image_buffer, int & statesuspension );
+   bool ReadJPEGFile8  (std::ifstream *fp, void *image_buffer, int &statesuspension );
+   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;