#pragma once #include #include #include #include "comm_module.hpp" namespace command { constexpr size_t BMC_GUID_LEN = 16; using Guid = std::array; /** * @brief Get System GUID * * @return If UUID is successfully read from the Chassis DBUS object, then the * GUID is returned, else a canned GUID is returned */ Guid getSystemGUID(); /** * @brief Register the callback to update the cache when the GUID changes */ void registerGUIDChangeCallback(); } // namespace command namespace cache { extern command::Guid guid; } //namespace cache