We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 644c574 commit 3acf1b6Copy full SHA for 3acf1b6
1 file changed
rmw_microxrcedds_c/src/rmw_subscription.c
@@ -348,3 +348,27 @@ rmw_destroy_subscription(
348
349
return result_ret;
350
}
351
+
352
+rmw_ret_t
353
+rmw_subscription_set_content_filter(
354
+ rmw_subscription_t * subscription,
355
+ const rmw_subscription_content_filter_options_t * options)
356
+{
357
+ (void) subscription;
358
+ (void) options;
359
360
+ return RMW_RET_UNSUPPORTED;
361
+}
362
363
364
+rmw_subscription_get_content_filter(
365
+ const rmw_subscription_t * subscription,
366
+ rcutils_allocator_t * allocator,
367
+ rmw_subscription_content_filter_options_t * options)
368
369
370
+ (void) allocator;
371
372
373
374
0 commit comments