| 53 | |
| 54 | template <class T> |
| 55 | res::Subscriber<T> OpSub::Init(std::string_view topic_name) { |
| 56 | auto [subscriber, channel_ctx] = DoInit<T>(topic_name); |
| 57 | channel_ctx.sub_f = CreateSubscribeFunction<T>(); |
| 58 | return subscriber; |
| 59 | } |
| 60 | |
| 61 | } // namespace aimrt::context |
nothing calls this directly
no outgoing calls
no test coverage detected