DCMTK
Version 3.6.1 20120515
OFFIS DICOM Toolkit
|
this helper class maintains a map of extended negotiation lists. More...
Public Member Functions | |
DcmExtendedNegotiationMap () | |
constructor | |
~DcmExtendedNegotiationMap () | |
destructor | |
OFCondition | add (const char *key, const char *abstractSyntaxUID, const unsigned char *rawData, Uint32 length) |
add new entry to list within map. | |
OFBool | isKnownKey (const char *key) const |
checks if the key is known | |
OFCondition | checkConsistency (const char *key, const DcmPresentationContextMap &pclist, const char *pckey) const |
checks if each abstract syntax in the extended negotiation list identified by key is also contained in the presentation context list identified by pckey and maintained by pclist. | |
const DcmExtendedNegotiationList * | getExtendedNegotiationList (const char *key) const |
returns the list of extended negotiation items identified by the given key | |
Private Member Functions | |
DcmExtendedNegotiationMap (const DcmExtendedNegotiationMap &arg) | |
private undefined copy constructor | |
DcmExtendedNegotiationMap & | operator= (const DcmExtendedNegotiationMap &arg) |
private undefined copy assignment operator | |
Private Attributes | |
DcmSimpleMap < DcmExtendedNegotiationList * > | map_ |
map of extended negotiation lists |
this helper class maintains a map of extended negotiation lists.
Not intended for use by the end user.
OFCondition DcmExtendedNegotiationMap::add | ( | const char * | key, |
const char * | abstractSyntaxUID, | ||
const unsigned char * | rawData, | ||
Uint32 | length | ||
) |
add new entry to list within map.
If key is new, new list is created. Otherwise value is appended to existing list.
key | map key |
abstractSyntaxUID | abstract syntax UID |
rawData | pointer to raw data, must not be NULL |
length | length of data block pointed to by data, in bytes |
OFCondition DcmExtendedNegotiationMap::checkConsistency | ( | const char * | key, |
const DcmPresentationContextMap & | pclist, | ||
const char * | pckey | ||
) | const |
checks if each abstract syntax in the extended negotiation list identified by key is also contained in the presentation context list identified by pckey and maintained by pclist.
key | extended negotiation key to check |
pclist | map of presentation context lists |
pckey | presentation context list key to check against |
const DcmExtendedNegotiationList* DcmExtendedNegotiationMap::getExtendedNegotiationList | ( | const char * | key | ) | const |
returns the list of extended negotiation items identified by the given key
key | extended negotiation list to search |
OFBool DcmExtendedNegotiationMap::isKnownKey | ( | const char * | key | ) | const |
checks if the key is known
key | key name, must not be NULL |