blob: 7e56eb426279fd518ab612319f7f9b79f2a1ebc8 [file] [log] [blame]
#pragma once
#include <climits>
#include <vector>
namespace openpower
{
namespace vpd
{
/** @brief The OpenPOWER VPD, in binary, is specified as a
* sequence of characters */
static_assert((8 == CHAR_BIT), "A byte is not 8 bits!");
using Byte = uint8_t;
using Binary = std::vector<Byte>;
} // namespace vpd
} // namespace openpower