blob: 84a1e986ba6a2d11171ca54b098571261070ac47 [file] [log] [blame]
Adriana Kobylak8bc2ab42020-07-15 09:16:27 -05001#include "activation_mmc.hpp"
2
3namespace openpower
4{
5namespace software
6{
7namespace updater
8{
9namespace softwareServer = sdbusplus::xyz::openbmc_project::Software::server;
10
11auto ActivationMMC::activation(Activations value) -> Activations
12{
13 return softwareServer::Activation::activation(value);
14}
15
16void ActivationMMC::startActivation()
Brad Bishop8facccf2020-11-04 09:44:58 -050017{}
Adriana Kobylak8bc2ab42020-07-15 09:16:27 -050018
19void ActivationMMC::unitStateChange(sdbusplus::message::message& msg)
Brad Bishop8facccf2020-11-04 09:44:58 -050020{}
Adriana Kobylak8bc2ab42020-07-15 09:16:27 -050021
22void ActivationMMC::finishActivation()
Brad Bishop8facccf2020-11-04 09:44:58 -050023{}
Adriana Kobylak8bc2ab42020-07-15 09:16:27 -050024
25} // namespace updater
26} // namespace software
27} // namespace openpower