From: jpr Date: Wed, 16 Feb 2005 16:41:00 +0000 (+0000) Subject: Fix wrong comment (-> wrong Doxygenation) about the meaning of X-Git-Tag: Version1.2.bp~874 X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=commitdiff_plain;h=734d4b750f28e40ed4ca0fb60364be89972ea50d;p=gdcm.git Fix wrong comment (-> wrong Doxygenation) about the meaning of SetWriteModeToRaw() : Tells the writer we want to keep 'Grey pixels + Palettes color' when possible (as opposed to convert 'Palettes color' to RGB) NOT Tells the writer we want to write only the pixels (no header) --- diff --git a/src/gdcmFileHelper.h b/src/gdcmFileHelper.h index a6bc806d..f59147eb 100644 --- a/src/gdcmFileHelper.h +++ b/src/gdcmFileHelper.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmFileHelper.h,v $ Language: C++ - Date: $Date: 2005/02/09 16:28:41 $ - Version: $Revision: 1.12 $ + Date: $Date: 2005/02/16 16:41:00 $ + Version: $Revision: 1.13 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -96,10 +96,11 @@ public: // Write mode - /// \brief Tells the writer we want to write a Raw File (no header) + /// \brief Tells the writer we want to keep 'Grey pixels + Palettes color' + /// when possible (as opposed to convert 'Palettes color' to RGB) void SetWriteModeToRaw() { SetWriteMode(WMODE_RAW); }; /// \brief Tells the writer we want to write RGB image when possible - /// (as opposite to 'Grey pixels + Palettes color') + /// (as opposed to 'Grey pixels + Palettes color') void SetWriteModeToRGB() { SetWriteMode(WMODE_RGB); }; /// \brief Sets the Write Mode ( ) void SetWriteMode(FileMode mode) { WriteMode = mode; };