| 43 | |
| 44 | template <class T> |
| 45 | res::Publisher<T> OpPub::Init(std::string_view topic_name) { |
| 46 | auto [channel, channel_ctx] = DoInit<T>(topic_name); |
| 47 | channel_ctx.pub_f = CreatePublishFunction<T>(); |
| 48 | return channel; |
| 49 | } |
| 50 | |
| 51 | } // namespace aimrt::context |
nothing calls this directly
no outgoing calls
no test coverage detected