Ben Tyner | bcf65a8 | 2020-12-01 08:46:36 -0600 | [diff] [blame] | 1 | #pragma once |
| 2 | |
| 3 | namespace attn |
| 4 | { |
| 5 | |
| 6 | enum class HostState |
| 7 | { |
| 8 | Quiesce, |
Ben Tyner | fe2757b | 2021-01-14 13:17:50 -0600 | [diff] [blame] | 9 | Diagnostic, |
| 10 | Crash |
Ben Tyner | bcf65a8 | 2020-12-01 08:46:36 -0600 | [diff] [blame] | 11 | }; |
| 12 | |
| 13 | /** |
| 14 | * @brief Transition the host state |
| 15 | * |
| 16 | * We will transition the host state by starting the appropriate dbus target. |
| 17 | * |
| 18 | * @param i_hostState the state to transition the host to |
| 19 | */ |
| 20 | void transitionHost(const HostState i_hostState); |
| 21 | |
| 22 | } // namespace attn |