Patrick Venture | 1cde5f9 | 2018-11-07 08:26:47 -0800 | [diff] [blame] | 1 | #pragma once |
2 | |||||
3 | #include "data_handler.hpp" | ||||
4 | |||||
5 | #include <cstdint> | ||||
6 | #include <vector> | ||||
7 | |||||
8 | namespace blobs | ||||
9 | { | ||||
10 | |||||
11 | class PciDataHandler : public DataInterface | ||||
12 | { | ||||
13 | |||||
14 | public: | ||||
15 | PciDataHandler() = default; | ||||
16 | |||||
17 | std::vector<std::uint8_t> copyFrom(std::uint32_t length) override; | ||||
18 | }; | ||||
19 | |||||
20 | } // namespace blobs |