Skip to content

Commit 9648737

Browse files
authored
Add missing methods (#285)
* Update with rmw_count client/service methods Signed-off-by: acuadros95 <acuadros1995@gmail.com> * Fix CI Signed-off-by: acuadros95 <acuadros1995@gmail.com> --------- Signed-off-by: acuadros95 <acuadros1995@gmail.com>
1 parent 5a62cae commit 9648737

1 file changed

Lines changed: 26 additions & 0 deletions

File tree

rmw_microxrcedds_c/src/rmw_count.c

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,3 +126,29 @@ rmw_count_subscribers(
126126
return RMW_RET_UNSUPPORTED;
127127
#endif // RMW_UXRCE_GRAPH
128128
}
129+
130+
rmw_ret_t
131+
rmw_count_clients(
132+
const rmw_node_t * node,
133+
const char * service_name,
134+
size_t * count)
135+
{
136+
(void)node;
137+
(void)service_name;
138+
(void)count;
139+
RMW_UROS_TRACE_MESSAGE("function not implemented");
140+
return RMW_RET_UNSUPPORTED;
141+
}
142+
143+
rmw_ret_t
144+
rmw_count_services(
145+
const rmw_node_t * node,
146+
const char * service_name,
147+
size_t * count)
148+
{
149+
(void)node;
150+
(void)service_name;
151+
(void)count;
152+
RMW_UROS_TRACE_MESSAGE("function not implemented");
153+
return RMW_RET_UNSUPPORTED;
154+
}

0 commit comments

Comments
 (0)