blob: 559a9f3943c4998a1a3f04de5c82ec5db06a2fe1 [file] [log] [blame]
Ben Tynerbcf65a82020-12-01 08:46:36 -06001#pragma once
2
3namespace attn
4{
5
6enum class HostState
7{
8 Quiesce,
9 Diagnostic
10};
11
12/**
13 * @brief Transition the host state
14 *
15 * We will transition the host state by starting the appropriate dbus target.
16 *
17 * @param i_hostState the state to transition the host to
18 */
19void transitionHost(const HostState i_hostState);
20
21} // namespace attn