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 void ActivationMMC::unitStateChange(sdbusplus::message_t&)
20 {}
21 
22 void ActivationMMC::finishActivation()
23 {}
24 
25 } // namespace updater
26 } // namespace software
27 } // namespace openpower
28