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 
17 } // namespace dump
18 } // namespace watchdog
19