| 35 | } |
| 36 | |
| 37 | std::string_view Name() const { |
| 38 | AIMRT_ASSERT(base_ptr_, "Reference is null."); |
| 39 | return aimrt::util::ToStdStringView(base_ptr_->name(base_ptr_->impl)); |
| 40 | } |
| 41 | |
| 42 | bool ThreadSafe() const { |
| 43 | AIMRT_ASSERT(base_ptr_, "Reference is null."); |
nothing calls this directly
no test coverage detected