Lei YU | 01539e7 | 2019-07-31 10:57:38 +0800 | [diff] [blame^] | 1 | #include "activation.hpp" |
| 2 | |
| 3 | namespace phosphor |
| 4 | { |
| 5 | namespace software |
| 6 | { |
| 7 | namespace updater |
| 8 | { |
| 9 | |
| 10 | namespace softwareServer = sdbusplus::xyz::openbmc_project::Software::server; |
| 11 | |
| 12 | auto Activation::activation(Activations value) -> Activations |
| 13 | { |
| 14 | // TODO |
| 15 | return softwareServer::Activation::activation(value); |
| 16 | } |
| 17 | |
| 18 | auto Activation::requestedActivation(RequestedActivations value) |
| 19 | -> RequestedActivations |
| 20 | { |
| 21 | // TODO |
| 22 | return softwareServer::Activation::requestedActivation(value); |
| 23 | } |
| 24 | |
| 25 | } // namespace updater |
| 26 | } // namespace software |
| 27 | } // namespace phosphor |