| DCMTK Version 3.6.9
    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 (const OFPair &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 | |
| Related Definitions | |
| Global types, methods and objects that are somehow related | |
| template<typename K, typename V> | |
| OFPair< K, V > | OFMake_pair (const K &first, const V &second) | 
| helper function to create a 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. | 
| 
 | inline | 
copy constructor
| p | Other OFPair to copy from. | 
copy constructor
| p | Other OFPair to copy from. | 
| 
 | 
helper function to create a pair.
This is similar to std::make_pair()
| first | the first part of the pair | 
| second | the second art of the pair |