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 activation(Activations value)11auto ActivationMMC::activation(Activations value) -> Activations 12 { 13 return softwareServer::Activation::activation(value); 14 } 15 startActivation()16void ActivationMMC::startActivation() {} 17 unitStateChange(sdbusplus::message_t &)18void ActivationMMC::unitStateChange(sdbusplus::message_t&) {} 19 finishActivation()20void ActivationMMC::finishActivation() {} 21 22 } // namespace updater 23 } // namespace software 24 } // namespace openpower 25