]> Creatis software - gdcm.git/blobdiff - src/gdcmPixelWriteConvert.h
STYLE: Remove old comments
[gdcm.git] / src / gdcmPixelWriteConvert.h
index c82cfd5b4bbfd5661866ba9dd2abbebabcf13b30..7239238ea96944be1934725adc4a7ce8af9b15b8 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmPixelWriteConvert.h,v $
   Language:  C++
-  Date:      $Date: 2004/12/16 13:46:37 $
-  Version:   $Revision: 1.3 $
+  Date:      $Date: 2005/01/11 15:15:38 $
+  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
@@ -25,7 +25,7 @@
 
 namespace gdcm
 {
-/*
+/**
  * \brief Utility container for gathering the various forms the pixel data
  *        migth take during the user demanded processes.
  */
@@ -36,28 +36,28 @@ public:
    virtual ~PixelWriteConvert();
 
    // Set/Get of images and their size
-   void SetReadData(uint8_tdata,size_t size);
-   uint8_tGetReadData() { return ReadData; }
+   void SetReadData(uint8_t *data,size_t size);
+   uint8_t *GetReadData() { return ReadData; }
    size_t   GetReadDataSize() { return ReadDataSize; }
 
-   void SetUserData(uint8_tdata,size_t size);
-   uint8_tGetUserData() { return UserData; }
+   void SetUserData(uint8_t *data,size_t size);
+   uint8_t *GetUserData() { return UserData; }
    size_t   GetUserDataSize() { return UserDataSize; }
 
    // Get the used image and its size
-   uint8_tGetData();
+   uint8_t *GetData();
    size_t   GetDataSize();
 
 private:
 // Variables
    /// Pixel data represented as RGB after LUT color interpretation.
-   uint8_tReadData;
-   /// Size of \ref RGB image.
+   uint8_t *ReadData;
+   /// Size of RGB image.
    size_t   ReadDataSize;
 
    /// User pixel data
-   uint8_tUserData;
-   /// Size of \ref User image.
+   uint8_t *UserData;
+   /// Size of User image.
    size_t   UserDataSize;
 };
 } // end namespace gdcm