blob: 7d8ed34d702a865b2eec298cc499a5a2de636cc7 [file] [log] [blame]
#pragma once
namespace attn
{
enum class HostState
{
Quiesce,
Diagnostic,
Crash
};
/**
* @brief Transition the host state
*
* We will transition the host state by starting the appropriate dbus target.
*
* @param i_hostState the state to transition the host to
*/
void transitionHost(const HostState i_hostState);
} // namespace attn