File tree 1 file changed +0
-10
lines changed
common/motion_utils/include/motion_utils/factor
1 file changed +0
-10
lines changed Original file line number Diff line number Diff line change 16
16
#ifndef MOTION_UTILS__FACTOR__VELOCITY_FACTOR_INTERFACE_HPP_
17
17
#define MOTION_UTILS__FACTOR__VELOCITY_FACTOR_INTERFACE_HPP_
18
18
19
- #include < rclcpp/time.hpp>
20
-
21
19
#include < autoware_adapi_v1_msgs/msg/planning_behavior.hpp>
22
20
#include < autoware_adapi_v1_msgs/msg/velocity_factor.hpp>
23
21
#include < autoware_adapi_v1_msgs/msg/velocity_factor_array.hpp>
@@ -38,14 +36,6 @@ class VelocityFactorInterface
38
36
{
39
37
public:
40
38
[[nodiscard]] VelocityFactor get () const { return velocity_factor_; }
41
- [[nodiscard]] autoware_adapi_v1_msgs::msg::VelocityFactorArray get_array (
42
- const rclcpp::Time & now) const
43
- {
44
- autoware_adapi_v1_msgs::msg::VelocityFactorArray array;
45
- array.header .stamp = now;
46
- array.factors .push_back (velocity_factor_);
47
- return array;
48
- }
49
39
void init (const VelocityFactorBehavior & behavior) { behavior_ = behavior; }
50
40
void reset () { velocity_factor_.behavior = PlanningBehavior::UNKNOWN; }
51
41
You can’t perform that action at this time.
0 commit comments