blob: 543723297db443b2d2fa64bd0faaddc7d76056c5 [file] [log] [blame]
Lei YUffb36532019-10-15 13:55:24 +08001#pragma once
2
3#include <string>
4
5class ActivationListener
6{
7 public:
8 virtual ~ActivationListener() = default;
9
10 /** @brief Notify a PSU is updated
11 *
12 * @param[in] versionId - The versionId of the activation
13 * @param[in] psuInventoryPath - The PSU inventory path that is updated
14 */
15 virtual void onUpdateDone(const std::string& versionId,
16 const std::string& psuInventoryPath) = 0;
17};