| 25 | class DataRefCpp : public DataRef::Impl { |
| 26 | public: |
| 27 | explicit DataRefCpp(size_t len) : _storage(len) {} |
| 28 | DataRefCpp(const DataRefCpp&) = delete; |
| 29 | explicit DataRefCpp(std::vector<uint8_t>&& vec) : _storage(std::move(vec)) {} |
| 30 |
nothing calls this directly
no outgoing calls
no test coverage detected