blob: 559a9f3943c4998a1a3f04de5c82ec5db06a2fe1 [file] [log] [blame]
#pragma once
namespace attn
{
enum class HostState
{
Quiesce,
Diagnostic
};
/**
* @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