blob: 67ad55ac169b77eac5c1253e40c2bce6a42ec393 [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()
17{
18}
19
20void ActivationMMC::unitStateChange(sdbusplus::message::message& msg)
21{
22}
23
24void ActivationMMC::finishActivation()
25{
26}
27
28} // namespace updater
29} // namespace software
30} // namespace openpower