/usr/include/gdcm-2.6/gdcmDictEntry.h is in libgdcm2-dev 2.6.6-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 | /*=========================================================================
Program: GDCM (Grassroots DICOM). A DICOM library
Copyright (c) 2006-2011 Mathieu Malaterre
All rights reserved.
See Copyright.txt or http://gdcm.sourceforge.net/Copyright.html for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
#ifndef GDCMDICTENTRY_H
#define GDCMDICTENTRY_H
#include "gdcmVR.h"
#include "gdcmVM.h"
#include <string>
#include <iostream>
#include <iomanip>
namespace gdcm
{
/**
* \brief Class to represent an Entry in the Dict
* \details Does not really exist within the DICOM definition, just a way to minimize
* storage and have a mapping from gdcm::Tag to the needed information
* \note bla
* TODO FIXME: Need a PublicDictEntry...indeed DictEntry has a notion of retired which
* does not exist in PrivateDictEntry...
*
* \see gdcm::Dict
*/
class GDCM_EXPORT DictEntry
{
public:
DictEntry(const char *name = "", const char *keyword = "", VR const &vr = VR::INVALID, VM const &vm = VM::VM0, bool ret = false):
Name(name),
Keyword(keyword),
ValueRepresentation(vr),
ValueMultiplicity(vm),
Retired(ret),
GroupXX(false),
ElementXX(false)
{
}
friend std::ostream& operator<<(std::ostream& _os, const DictEntry &_val);
/// Set/Get VR
const VR &GetVR() const { return ValueRepresentation; }
void SetVR(const VR & vr) { ValueRepresentation = vr; }
// bool IsValid() const { return ValueRepresentation != VR::VR_END; }
// !Name.empty() /*&& ValueRepresentation && ValueMultiplicity*/; }
/// Set/Get VM
const VM &GetVM() const { return ValueMultiplicity; }
void SetVM(VM const & vm) { ValueMultiplicity = vm; }
/// Set/Get Name
const char *GetName() const { return Name.c_str(); }
void SetName(const char* name) { Name = name; }
/// same as GetName but without spaces...
const char *GetKeyword() const { return Keyword.c_str(); }
void SetKeyword(const char* keyword) { Keyword = keyword; }
/// Set/Get Retired flag
bool GetRetired() const { return Retired; }
void SetRetired(bool retired) { Retired = retired; }
// <entry group="50xx" element="0005" vr="US" vm="1" retired="true" version="3">
/// Set whether element is shared in multiple groups (Curve/Overlay typically)
void SetGroupXX(bool v) { GroupXX = v; }
// <entry group="0020" element="31xx" vr="CS" vm="1-n" retired="true" version="2">
/// Set whether element is shared in multiple elements (Source Image IDs typically)
void SetElementXX(bool v) { ElementXX = v; }
/// Return whether the name of the DataElement can be considered to be unique.
/// As of 2008 all elements name were unique (except the expclitely 'XX' ones)
bool IsUnique() const { return ElementXX == false && GroupXX == false; }
private:
//
friend class Dict;
static bool CheckKeywordAgainstName(const char *name, const char *keyword);
private:
std::string Name;
std::string Keyword;
VR ValueRepresentation;
VM ValueMultiplicity;
bool Retired : 1;
bool GroupXX : 1;
bool ElementXX : 1;
};
#if 0
class GDCM_EXPORT PrivateDictEntry : public DictEntry
{
public:
PrivateDictEntry(const char *name = "", VR::VRType const &vr = VR::INVALID, VM::VMType const &vm = VM::VM0 , bool ret = false, const char *owner = ""):DictEntry(name,vr,vm,ret),Owner(owner) {}
PrivateDictEntry(const char *name, const char *vr, const char *vm):DictEntry(name,vr,vm) {}
const char *GetOwner() const { return Owner.c_str(); }
void SetOwner(const char *owner) { Owner = owner; }
private:
// SIEMENS MED, GEMS_PETD_01 ...
std::string Owner;
};
#endif
//-----------------------------------------------------------------------------
inline std::ostream& operator<<(std::ostream& os, const DictEntry &val)
{
if( val.Name.empty() )
{
os << "[No name]";
}
else
{
os << val.Name;
}
if( val.Keyword.empty() )
{
os << "[No keyword]";
}
else
{
os << val.Keyword;
}
os << "\t" << val.ValueRepresentation << "\t" << val.ValueMultiplicity;
if( val.Retired )
{
os << "\t(RET)";
}
return os;
}
} // end namespace gdcm
#endif //GDCMDICTENTRY_H
|