|
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 | +#include "autoware_behavior_path_avoidance_by_lane_change_module/data_structs.hpp" |
18 | 19 | #include "autoware_behavior_path_static_obstacle_avoidance_module/helper.hpp"
|
19 |
| -#include "behavior_path_avoidance_by_lane_change_module/data_structs.hpp" |
20 | 20 | #include "behavior_path_lane_change_module/scene.hpp"
|
21 | 21 |
|
22 | 22 | #include <memory>
|
23 | 23 |
|
24 |
| -namespace behavior_path_planner |
| 24 | +namespace autoware::behavior_path_planner |
25 | 25 | {
|
| 26 | +using ::behavior_path_planner::DebugData; |
26 | 27 | using AvoidanceDebugData = DebugData;
|
27 |
| -using helper::static_obstacle_avoidance::AvoidanceHelper; |
| 28 | +using ::behavior_path_planner::AvoidancePlanningData; |
| 29 | +using ::behavior_path_planner::LaneChangeParameters; |
| 30 | +using ::behavior_path_planner::NormalLaneChange; |
| 31 | +using ::behavior_path_planner::ObjectData; |
| 32 | +using ::behavior_path_planner::ObjectDataArray; |
| 33 | +using ::behavior_path_planner::PredictedObject; |
| 34 | +using ::behavior_path_planner::helper::static_obstacle_avoidance::AvoidanceHelper; |
28 | 35 |
|
29 | 36 | class AvoidanceByLaneChange : public NormalLaneChange
|
30 | 37 | {
|
@@ -59,6 +66,6 @@ class AvoidanceByLaneChange : public NormalLaneChange
|
59 | 66 | double calcMinimumLaneChangeLength() const;
|
60 | 67 | double calcLateralOffset() const;
|
61 | 68 | };
|
62 |
| -} // namespace behavior_path_planner |
| 69 | +} // namespace autoware::behavior_path_planner |
63 | 70 |
|
64 |
| -#endif // BEHAVIOR_PATH_AVOIDANCE_BY_LANE_CHANGE_MODULE__SCENE_HPP_ |
| 71 | +#endif // SCENE_HPP_ |
0 commit comments