9#ifndef _3ae28d18_6f01_4e10_98e2_1c0d21fdcab7
10#define _3ae28d18_6f01_4e10_98e2_1c0d21fdcab7
15#include <dcmtk/config/osconfig.h>
16#include <dcmtk/dcmdata/dcelem.h>
17#include <dcmtk/dcmdata/dcvr.h>
35template<
typename TValueType>
39 typedef std::function<OFCondition(DcmElement &, TValueType &,
unsigned long const)>
GetterType;
43 typedef std::function<OFCondition(DcmElement &, TValueType
const,
unsigned long const)>
SetterType;
Definition Association.h:25
Definition ElementTraits.h:37
std::function< OFCondition(DcmElement &, TValueType const, unsigned long const)> SetterType
Type of the setter function.
Definition ElementTraits.h:43
static SetterType const setter
Setter function (one of the put??? functions of DcmElement).
Definition ElementTraits.h:45
std::function< OFCondition(DcmElement &, TValueType &, unsigned long const)> GetterType
Type of the getter function.
Definition ElementTraits.h:39
static GetterType const getter
Getter function (one of the get??? functions of DcmElement).
Definition ElementTraits.h:41