| #include "activation.hpp" |
| |
| namespace phosphor |
| { |
| namespace software |
| { |
| namespace updater |
| { |
| |
| namespace softwareServer = sdbusplus::xyz::openbmc_project::Software::server; |
| |
| auto Activation::activation(Activations value) -> Activations |
| { |
| // TODO |
| return softwareServer::Activation::activation(value); |
| } |
| |
| auto Activation::requestedActivation(RequestedActivations value) |
| -> RequestedActivations |
| { |
| // TODO |
| return softwareServer::Activation::requestedActivation(value); |
| } |
| |
| } // namespace updater |
| } // namespace software |
| } // namespace phosphor |