1 /*=========================================================================
4 Module: $RCSfile: gdcmDicomEntry.cxx,v $
6 Date: $Date: 2007/05/23 14:18:09 $
7 Version: $Revision: 1.5 $
9 Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
10 l'Image). All rights reserved. See Doc/License.txt or
11 http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details.
13 This software is distributed WITHOUT ANY WARRANTY; without even
14 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 PURPOSE. See the above copyright notices for more information.
17 =========================================================================*/
19 #include "gdcmDicomEntry.h"
20 //#include "gdcmDebug.h"
21 //#include "gdcmUtil.h"
23 //#include <iomanip> // for std::ios::left, ...
25 //#include <stdio.h> // for sprintf
27 namespace GDCM_NAME_SPACE
29 //-----------------------------------------------------------------------------
30 // Constructor / Destructor
33 * @param group DICOM-Group Number
34 * @param elem DICOM-Element Number
35 * @param vr Value Representation
37 DicomEntry::DicomEntry(const uint16_t &group,const uint16_t &elem,
40 //Tag.SetGroupElement(group);
41 //Tag.SetElement(elem);
42 Tag.SetGroupElement(group,elem);
49 DicomEntry::~DicomEntry()
53 //-----------------------------------------------------------------------------
56 //-----------------------------------------------------------------------------
59 //-----------------------------------------------------------------------------
62 //-----------------------------------------------------------------------------
65 * \brief Prints an entry of the Dicom DictionaryEntry
66 * @param os ostream we want to print in
67 * @param indent Indentation string to be prepended during printing
69 void DicomEntry::Print(std::ostream &os, std::string const & )
72 os << " [" << VR << "] ";
75 //-----------------------------------------------------------------------------
76 } // end namespace gdcm