Carol Wang | 71230ef | 2020-02-18 17:39:49 +0800 | [diff] [blame^] | 1 | #include "scheduled_host_transition.hpp" |
2 | |||||
3 | namespace phosphor | ||||
4 | { | ||||
5 | namespace state | ||||
6 | { | ||||
7 | namespace manager | ||||
8 | { | ||||
9 | |||||
10 | using HostTransition = | ||||
11 | sdbusplus::xyz::openbmc_project::State::server::ScheduledHostTransition; | ||||
12 | |||||
13 | uint64_t ScheduledHostTransition::scheduledTime(uint64_t value) | ||||
14 | { | ||||
15 | return HostTransition::scheduledTime(value); | ||||
16 | } | ||||
17 | |||||
18 | } // namespace manager | ||||
19 | } // namespace state | ||||
20 | } // namespace phosphor |