| Shantappa Teekappanavar | 1ac6162 | 2021-06-22 19:07:29 -0500 | [diff] [blame] | 1 | #pragma once |
| 2 | |||||
| 3 | #include <string> | ||||
| 4 | |||||
| 5 | namespace watchdog | ||||
| 6 | { | ||||
| 7 | namespace dump | ||||
| 8 | { | ||||
| 9 | |||||
| 10 | /** | ||||
| 11 | * @brief Transition the host state | ||||
| 12 | * | ||||
| 13 | * @param target - the target to transition the host to | ||||
| 14 | */ | ||||
| 15 | void transitionHost(const std::string& target); | ||||
| 16 | |||||
| Shantappa Teekappanavar | 1ac6162 | 2021-06-22 19:07:29 -0500 | [diff] [blame] | 17 | } // namespace dump |
| 18 | } // namespace watchdog | ||||