blob: 903cf26cbd217d944db9bdd191e352e46ca5b242 [file] [log] [blame]
Patrick Venture1cde5f92018-11-07 08:26:47 -08001#pragma once
2
3#include "data_handler.hpp"
4
5#include <cstdint>
6#include <vector>
7
8namespace blobs
9{
10
11class LpcDataHandler : public DataInterface
12{
13
14 public:
15 LpcDataHandler() = default;
16
17 std::vector<std::uint8_t> copyFrom(std::uint32_t length) override;
18};
19
20} // namespace blobs