blob: 2789d9c51682c078819a69f3165fd05d2a4cb03e [file] [log] [blame]
Patrick Venture3ecb3502019-05-17 11:03:51 -07001#pragma once
2
3#include <cstdint>
4
Patrick Venture1d5a31c2019-05-20 11:38:22 -07005namespace ipmi_flash
Patrick Venture3ecb3502019-05-17 11:03:51 -07006{
7
Patrick Ventureda66fd82019-06-03 11:11:24 -07008/** The status of the update mechanism or the verification mechanism */
9enum class ActionStatus : std::uint8_t
Patrick Venture8e801e12019-05-20 13:42:45 -070010{
11 running = 0,
12 success = 1,
13 failed = 2,
14 unknown = 3,
15};
16
17} // namespace ipmi_flash