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