@@ -10,7 +10,7 @@ RTC Interface is an interface to publish the decision status of behavior plannin
10
10
11
11
``` c++
12
12
// Generate instance (in this example, "intersection" is selected)
13
- rtc_interface::RTCInterface rtc_interface (node, "intersection");
13
+ autoware:: rtc_interface::RTCInterface rtc_interface (node, "intersection");
14
14
15
15
// Generate UUID
16
16
const unique_identifier_msgs::msg::UUID uuid = generateUUID(getModuleId());
@@ -51,12 +51,12 @@ rtc_interface.removeCooperateStatus(uuid);
51
51
### RTCInterface (Constructor)
52
52
53
53
```c++
54
- rtc_interface::RTCInterface(rclcpp::Node & node, const std::string & name);
54
+ autoware:: rtc_interface::RTCInterface(rclcpp::Node & node, const std::string & name);
55
55
```
56
56
57
57
#### Description
58
58
59
- A constructor for ` rtc_interface::RTCInterface ` .
59
+ A constructor for ` autoware:: rtc_interface::RTCInterface` .
60
60
61
61
#### Input
62
62
@@ -72,7 +72,7 @@ An instance of `RTCInterface`
72
72
### publishCooperateStatus
73
73
74
74
``` c++
75
- rtc_interface::publishCooperateStatus (const rclcpp::Time & stamp)
75
+ autoware:: rtc_interface::publishCooperateStatus (const rclcpp::Time & stamp)
76
76
```
77
77
78
78
#### Description
@@ -90,7 +90,7 @@ Nothing
90
90
### updateCooperateStatus
91
91
92
92
```c++
93
- rtc_interface::updateCooperateStatus(const unique_identifier_msgs::msg::UUID & uuid, const bool safe, const double start_distance, const double finish_distance, const rclcpp::Time & stamp)
93
+ autoware:: rtc_interface::updateCooperateStatus(const unique_identifier_msgs::msg::UUID & uuid, const bool safe, const double start_distance, const double finish_distance, const rclcpp::Time & stamp)
94
94
```
95
95
96
96
#### Description
@@ -113,7 +113,7 @@ Nothing
113
113
### removeCooperateStatus
114
114
115
115
``` c++
116
- rtc_interface::removeCooperateStatus (const unique_identifier_msgs::msg::UUID & uuid)
116
+ autoware:: rtc_interface::removeCooperateStatus (const unique_identifier_msgs::msg::UUID & uuid)
117
117
```
118
118
119
119
#### Description
@@ -131,7 +131,7 @@ Nothing
131
131
### clearCooperateStatus
132
132
133
133
```c++
134
- rtc_interface::clearCooperateStatus()
134
+ autoware:: rtc_interface::clearCooperateStatus()
135
135
```
136
136
137
137
#### Description
@@ -149,7 +149,7 @@ Nothing
149
149
### isActivated
150
150
151
151
``` c++
152
- rtc_interface::isActivated (const unique_identifier_msgs::msg::UUID & uuid)
152
+ autoware:: rtc_interface::isActivated (const unique_identifier_msgs::msg::UUID & uuid)
153
153
```
154
154
155
155
#### Description
@@ -169,7 +169,7 @@ If not, return `false`.
169
169
### isRegistered
170
170
171
171
```c++
172
- rtc_interface::isRegistered(const unique_identifier_msgs::msg::UUID & uuid)
172
+ autoware:: rtc_interface::isRegistered(const unique_identifier_msgs::msg::UUID & uuid)
173
173
```
174
174
175
175
#### Description
0 commit comments