ROS 2 rclcpp + rcl - jazzy  jazzy
ROS 2 C++ Client Library with ROS Client Library
node_impl.h
1 // Copyright 2023 Open Source Robotics Foundation, Inc.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 
15 #ifndef RCL__NODE_IMPL_H_
16 #define RCL__NODE_IMPL_H_
17 
18 #include "rcl/guard_condition.h"
19 #include "rcl/node_options.h"
20 #include "rcl/node.h"
21 #include "rcl/service.h"
22 #include "rcl/types.h"
23 #include "rcutils/types/hash_map.h"
24 #include "rmw/types.h"
25 
27 {
28  rcl_node_options_t options;
29  rmw_node_t * rmw_node_handle;
30  rcl_guard_condition_t * graph_guard_condition;
31  const char * logger_name;
32  const char * fq_name;
33  rcutils_hash_map_t registered_types_by_type_hash;
34 };
35 
36 #endif // RCL__NODE_IMPL_H_
Handle for a rcl guard condition.
Structure which encapsulates the options for creating a rcl_node_t.
Definition: node_options.h:35