DCMTK
Version 3.6.1 20120515
OFFIS DICOM Toolkit
|
a pair - this implements parts of std::pair's interface. More...
Public Member Functions | |
OFPair () | |
default constructor | |
OFPair (const K &f, const V &s) | |
construct a OFPair for the two given values | |
template<class OK , class OV > | |
OFPair (const OFPair< OK, OV > &p) | |
copy constructor | |
OFPair< K, V > & | operator= (const OFPair< K, V > &other) |
assignment operator | |
Public Attributes | |
K | first |
this is the first value of the pair | |
V | second |
this is the second value of the pair |
a pair - this implements parts of std::pair's interface.
construct a OFPair for the two given values
f | the value for first. |
s | the value for second. |
OFPair< K, V >::OFPair | ( | const OFPair< OK, OV > & | p | ) | [inline] |
copy constructor
p | Other OFPair to copy from. |