* @brief Get parameter handle * * @return parameter::ParameterHandleRef */
| 120 | * @return parameter::ParameterHandleRef |
| 121 | */ |
| 122 | parameter::ParameterHandleRef GetParameterHandle() const { |
| 123 | AIMRT_ASSERT(base_ptr_, "Reference is null."); |
| 124 | return parameter::ParameterHandleRef(base_ptr_->parameter_handle(base_ptr_->impl)); |
| 125 | } |
| 126 | |
| 127 | private: |
| 128 | const aimrt_core_base_t* base_ptr_ = nullptr; |
nothing calls this directly
no test coverage detected