X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmBase.h;h=0036ba22115edd06e1ef5c07ebabe298d6803f80;hb=d9145e01b1e8f7f5378def524f6ffd5f9491abaf;hp=35198eb9f2127c197015bc3fd7b45128737a7e9c;hpb=e8caac199c2683cb0f118c42c61dc6aec85b1eec;p=gdcm.git diff --git a/src/gdcmBase.h b/src/gdcmBase.h index 35198eb9..0036ba22 100644 --- a/src/gdcmBase.h +++ b/src/gdcmBase.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmBase.h,v $ Language: C++ - Date: $Date: 2005/01/16 04:50:40 $ - Version: $Revision: 1.3 $ + Date: $Date: 2005/01/30 17:30:57 $ + Version: $Revision: 1.5 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -27,7 +27,6 @@ namespace gdcm //----------------------------------------------------------------------------- /** * \brief Base class of all gdcm classes - * * Contains the Print related methods : * - Print * - SetPrintLevel / GetPrintLevel @@ -38,17 +37,18 @@ public: Base( ); virtual ~Base(); - virtual void Print(std::ostream &os = std::cout, std::string const & indent = "" ); + virtual void Print(std::ostream &os = std::cout, + std::string const & indent = "" ); /// \brief Sets the print level for the Dicom Header Elements /// \note 0 for Light Print; 1 for 'medium' Print, 2 for Heavy void SetPrintLevel(int level) { PrintLevel = level; }; - /// \brief Gets the print level for the Dicom Header Elements + /// \brief Gets the print level for the Dicom Entries int GetPrintLevel() { return PrintLevel; }; protected: - /// \brief Amount of printed details for each Header Entry (Dicom Element): + /// \brief Amount of printed details for each Dicom Entries : /// 0 : stands for the least detail level. int PrintLevel; };