blob: ce2b2d77024e6245ad40c216c3d2de201927932a [file] [log] [blame]
Patrick Venture00887592018-12-11 10:57:06 -08001#pragma once
2
3#include <string>
4#include <vector>
5
6class BlobInterface
7{
8
9 public:
10 virtual ~BlobInterface() = default;
11
12 /**
13 * Get a list of the blob_ids provided by the BMC.
14 *
15 * @return list of strings, each representing a blob_id returned.
16 */
17 virtual std::vector<std::string> getBlobList() = 0;
18};