| 32 | class DataHandlerStream : public BinaryStream { |
| 33 | public: |
| 34 | DataHandlerStream(std::vector<uint8_t>& ref) : |
| 35 | BinaryStream(STREAM_TYPE::ELF_DATA_HANDLER), |
| 36 | data_{ref} |
| 37 | { |
| 38 | } |
| 39 | |
| 40 | ~DataHandlerStream() override = default; |
| 41 |
nothing calls this directly
no outgoing calls
no test coverage detected