| 55 | |
| 56 | template <typename T> |
| 57 | void SetErrorCode(ErrorCode code, T& rsp) { |
| 58 | rsp.set_code(static_cast<uint32_t>(code)); |
| 59 | rsp.set_msg(std::string(kErrorInfoArray[static_cast<uint32_t>(code)])); |
| 60 | } |
| 61 | |
| 62 | aimrt::runtime::core::parameter::ParameterManager* parameter_manager_ptr_ = nullptr; |
| 63 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected