DICOM_EXPIMP_TEMPLATE template struct DICOM_MAP_EXPORT std::pair ; Subclass of a pair of doublebytes to make type names shorter in the code.
| 64 | // type names shorter in the code. |
| 65 | // |
| 66 | class DICOMMapKey : public DICOMMapKeyOverride |
| 67 | { |
| 68 | public: |
| 69 | DICOMMapKey(doublebyte v1, doublebyte v2) |
| 70 | : std::pair<doublebyte, doublebyte>(v1, v2) |
| 71 | { |
| 72 | } |
| 73 | }; |
| 74 | |
| 75 | // |
| 76 | // Typedef of a pair of doublebyte, vector. |
no outgoing calls
no test coverage detected