]> Creatis software - gdcm.git/commitdiff
avoid 'type qualifier on return type is meaningless' warning with
authorjpr <jpr>
Wed, 7 Jun 2006 12:35:47 +0000 (12:35 +0000)
committerjpr <jpr>
Wed, 7 Jun 2006 12:35:47 +0000 (12:35 +0000)
dash8.kitware -- GDCM-ecc-64bits

src/gdcmDocEntry.h

index 235ff54a9563d0c9f94b50d0c0e166f28aca9c60..410be3dbbb7714c33f59b81ae55ac8bfdb1a1c2d 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmDocEntry.h,v $
   Language:  C++
-  Date:      $Date: 2006/05/06 16:05:16 $
-  Version:   $Revision: 1.63 $
+  Date:      $Date: 2006/06/07 12:35:47 $
+  Version:   $Revision: 1.64 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -48,11 +48,11 @@ public:
    DictEntry * GetDictEntry() { return DicomDict; } 
 
    /// Returns the Dicom Group number of the current Dicom entry
-   const uint16_t GetGroup() const   { return Key[0];  }
+   uint16_t GetGroup() const   { return Key[0];  }
    //const uint16_t &GetGroup() const   { return DicomDict->GetGroup();  }
 
    /// Returns the Dicom Element number of the current Dicom entry
-   const uint16_t GetElement() const { return Key[1];}   
+   uint16_t GetElement() const { return Key[1];}   
    //const uint16_t &GetElement() const { return DicomDict->GetElement();}
 
    /// Returns the 'key' of the current Dicom entry