Adriana Kobylak | befe5ce | 2017-04-05 15:57:44 -0500 | [diff] [blame] | 1 | #include "activation.hpp" |
| 2 | |
| 3 | namespace openpower |
| 4 | { |
| 5 | namespace software |
| 6 | { |
| 7 | namespace updater |
| 8 | { |
| 9 | |
| 10 | auto Activation::activation(Activations value) -> |
| 11 | Activations |
| 12 | { |
| 13 | return sdbusplus::xyz::openbmc_project::Software::server::Activation:: |
| 14 | activation(value); |
| 15 | } |
| 16 | |
| 17 | auto Activation::requestedActivation(RequestedActivations value) -> |
| 18 | RequestedActivations |
| 19 | { |
| 20 | return sdbusplus::xyz::openbmc_project::Software::server::Activation:: |
| 21 | requestedActivation(value); |
| 22 | } |
| 23 | |
| 24 | } // namespace updater |
| 25 | } // namespace software |
| 26 | } // namespace openpower |
| 27 | |