|
12 | 12 | // See the License for the specific language governing permissions and
|
13 | 13 | // limitations under the License.
|
14 | 14 |
|
15 |
| -#ifndef BEHAVIOR_PATH_AVOIDANCE_BY_LANE_CHANGE_MODULE__SCENE_HPP_ |
16 |
| -#define BEHAVIOR_PATH_AVOIDANCE_BY_LANE_CHANGE_MODULE__SCENE_HPP_ |
| 15 | +#ifndef SCENE_HPP_ |
| 16 | +#define SCENE_HPP_ |
17 | 17 |
|
18 | 18 | #include "autoware_behavior_path_static_obstacle_avoidance_module/helper.hpp"
|
19 |
| -#include "behavior_path_avoidance_by_lane_change_module/data_structs.hpp" |
20 | 19 | #include "behavior_path_lane_change_module/scene.hpp"
|
21 | 20 |
|
| 21 | +#include "data_structs.hpp" |
| 22 | + |
22 | 23 | #include <memory>
|
23 | 24 |
|
24 |
| -namespace behavior_path_planner |
| 25 | +namespace autoware::behavior_path_planner |
25 | 26 | {
|
| 27 | +using ::behavior_path_planner::DebugData; |
26 | 28 | using AvoidanceDebugData = DebugData;
|
27 |
| -using helper::static_obstacle_avoidance::AvoidanceHelper; |
| 29 | +using ::behavior_path_planner::AvoidancePlanningData; |
| 30 | +using ::behavior_path_planner::LaneChangeParameters; |
| 31 | +using ::behavior_path_planner::NormalLaneChange; |
| 32 | +using ::behavior_path_planner::ObjectData; |
| 33 | +using ::behavior_path_planner::ObjectDataArray; |
| 34 | +using ::behavior_path_planner::PredictedObject; |
| 35 | +using ::behavior_path_planner::helper::static_obstacle_avoidance::AvoidanceHelper; |
28 | 36 |
|
29 | 37 | class AvoidanceByLaneChange : public NormalLaneChange
|
30 | 38 | {
|
@@ -59,6 +67,6 @@ class AvoidanceByLaneChange : public NormalLaneChange
|
59 | 67 | double calcMinimumLaneChangeLength() const;
|
60 | 68 | double calcLateralOffset() const;
|
61 | 69 | };
|
62 |
| -} // namespace behavior_path_planner |
| 70 | +} // namespace autoware::behavior_path_planner |
63 | 71 |
|
64 |
| -#endif // BEHAVIOR_PATH_AVOIDANCE_BY_LANE_CHANGE_MODULE__SCENE_HPP_ |
| 72 | +#endif // SCENE_HPP_ |
0 commit comments