blob: 7e56eb426279fd518ab612319f7f9b79f2a1ebc8 [file] [log] [blame]
Deepak Kodihalli35c7fb12016-11-21 04:32:44 -06001#pragma once
2
3#include <climits>
4#include <vector>
5
6namespace openpower
7{
8namespace vpd
9{
10
11/** @brief The OpenPOWER VPD, in binary, is specified as a
12 * sequence of characters */
13static_assert((8 == CHAR_BIT), "A byte is not 8 bits!");
14using Byte = uint8_t;
15using Binary = std::vector<Byte>;
16
17} // namespace vpd
18} // namespace openpower