Subclass of pair doublebyte, vector . Makes types shorter in the code.
| 85 | // Makes types shorter in the code. |
| 86 | // |
| 87 | class DICOMMapValue : public DICOMMapValueOverride |
| 88 | { |
| 89 | public: |
| 90 | DICOMMapValue() = default; |
| 91 | |
| 92 | DICOMMapValue(doublebyte v1, std::vector<DICOMCallback*>* v2) |
| 93 | : std::pair<doublebyte, std::vector<DICOMCallback*>*>(v1, v2) |
| 94 | { |
| 95 | } |
| 96 | }; |
| 97 | |
| 98 | // DICOM_EXPIMP_TEMPLATE template class DICOM_MAP_EXPORT std::map<DICOMMapKey, |
| 99 | // DICOMMapValue, group_element_compare>; |
no outgoing calls
no test coverage detected