Patrick Venture | 0088759 | 2018-12-11 10:57:06 -0800 | [diff] [blame^] | 1 | #pragma once |
2 | |||||
3 | #include "blob_interface.hpp" | ||||
4 | |||||
5 | class BlobHandler : public BlobInterface | ||||
6 | { | ||||
7 | public: | ||||
8 | BlobHandler() = default; | ||||
9 | |||||
10 | std::vector<std::string> getBlobList() override; | ||||
11 | }; |