Adriana Kobylak | 8bc2ab4 | 2020-07-15 09:16:27 -0500 | [diff] [blame^] | 1 | #include "activation_mmc.hpp" |
| 2 | |
| 3 | namespace openpower |
| 4 | { |
| 5 | namespace software |
| 6 | { |
| 7 | namespace updater |
| 8 | { |
| 9 | namespace softwareServer = sdbusplus::xyz::openbmc_project::Software::server; |
| 10 | |
| 11 | auto ActivationMMC::activation(Activations value) -> Activations |
| 12 | { |
| 13 | return softwareServer::Activation::activation(value); |
| 14 | } |
| 15 | |
| 16 | void ActivationMMC::startActivation() |
| 17 | { |
| 18 | } |
| 19 | |
| 20 | void ActivationMMC::unitStateChange(sdbusplus::message::message& msg) |
| 21 | { |
| 22 | } |
| 23 | |
| 24 | void ActivationMMC::finishActivation() |
| 25 | { |
| 26 | } |
| 27 | |
| 28 | } // namespace updater |
| 29 | } // namespace software |
| 30 | } // namespace openpower |