scenario_simulator_v2 C++ API
member_detector.hpp
Go to the documentation of this file.
1 // Copyright 2015 TIER IV, Inc. All rights reserved.
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 CONCEALER__MEMBER_DETECTOR_HPP_
16 #define CONCEALER__MEMBER_DETECTOR_HPP_
17 
18 #include <type_traits>
19 
20 namespace concealer
21 {
22 #define DEFINE_MEMBER_DETECTOR(IDENTIFIER) \
23  template <typename T, typename = void> \
24  struct DetectMember_##IDENTIFIER : public std::false_type \
25  { \
26  }; \
27  \
28  template <typename T> \
29  struct DetectMember_##IDENTIFIER<T, std::void_t<decltype(std::declval<T>().IDENTIFIER)>> \
30  : public std::true_type \
31  { \
32  }
33 
34 DEFINE_MEMBER_DETECTOR(allow_goal_modification);
40 
41 #undef DEFINE_MEMBER_DETECTOR
42 
43 #define DEFINE_STATIC_MEMBER_DETECTOR(IDENTIFIER) \
44  template <typename T, typename = void> \
45  struct DetectStaticMember_##IDENTIFIER : public std::false_type \
46  { \
47  }; \
48  \
49  template <typename T> \
50  struct DetectStaticMember_##IDENTIFIER<T, std::void_t<decltype(T::IDENTIFIER)>> \
51  : public std::true_type \
52  { \
53  }
54 
55 DEFINE_STATIC_MEMBER_DETECTOR(AVOIDANCE_BY_LC_LEFT);
56 DEFINE_STATIC_MEMBER_DETECTOR(AVOIDANCE_BY_LC_RIGHT);
64 DEFINE_STATIC_MEMBER_DETECTOR(EXT_REQUEST_LANE_CHANGE_LEFT);
65 DEFINE_STATIC_MEMBER_DETECTOR(EXT_REQUEST_LANE_CHANGE_RIGHT);
68 DEFINE_STATIC_MEMBER_DETECTOR(INTERSECTION_OCCLUSION);
70 DEFINE_STATIC_MEMBER_DETECTOR(LANE_CHANGE_RIGHT);
80 
81 #undef DEFINE_STATIC_MEMBER_DETECTOR
82 } // namespace concealer
83 
84 #endif // CONCEALER__MEMBER_DETECTOR_HPP_
Definition: autoware_universe.hpp:40
DEFINE_MEMBER_DETECTOR(allow_goal_modification)
DEFINE_STATIC_MEMBER_DETECTOR(AVOIDANCE_BY_LC_LEFT)
auto distance(const geometry_msgs::Pose &pose1, const geometry_msgs::Pose &pose2)
Definition: detection_sensor.cpp:38