]> Creatis software - gdcm.git/blobdiff - src/gdcmDocEntry.h
Returning a const ref is quicker than returning a value.
[gdcm.git] / src / gdcmDocEntry.h
index 950cc1d8d11b00fdc1d9fa5c0bb3744ca391d69b..6d4c119f1cf9be02263670462bc9d44f9229909f 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmDocEntry.h,v $
   Language:  C++
-  Date:      $Date: 2006/04/11 16:03:26 $
-  Version:   $Revision: 1.62 $
+  Date:      $Date: 2006/07/06 15:06:35 $
+  Version:   $Revision: 1.65 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -48,15 +48,15 @@ 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 const &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 const &GetElement() const { return Key[1];}   
    //const uint16_t &GetElement() const { return DicomDict->GetElement();}
 
    /// Returns the 'key' of the current Dicom entry
-   TagKey GetKey() const { return Key; }   
+   TagKey const &GetKey() const { return Key; }   
    //TagKey GetKey() const { return DicomDict->GetKey(); }
 
    /// \brief Returns the 'Name' '(e.g. "Patient's Name") found in the Dicom
@@ -76,7 +76,7 @@ public:
 
    /// Sets the 'Value Multiplicity' of the current Dicom entry
    //void SetVM( TagName const &v) { DicomDict->SetVM(v); } 
-   void SetVM( TagName &v) { std::cout << "-----------------FIXME : SetVM "; }
+   void SetVM( TagName &) { std::cout << "-----------------FIXME : SetVM "; }
     
    /// \brief Returns offset (since the beginning of the file, including
    /// the File Preamble, if any) of the value of the current Dicom entry