Branch data Line data Source code
1 : : /* 2 : : * ----------------- BEGIN LICENSE BLOCK --------------------------------- 3 : : * 4 : : * Copyright (C) 2018-2020 Intel Corporation 5 : : * 6 : : * SPDX-License-Identifier: LGPL-2.1-only 7 : : * 8 : : * ----------------- END LICENSE BLOCK ----------------------------------- 9 : : */ 10 : : 11 : : /** 12 : : * Generated file 13 : : * @file 14 : : * 15 : : * Generator Version : 11.0.0-1997 16 : : */ 17 : : 18 : : #pragma once 19 : : 20 : : #include <iostream> 21 : : #include <memory> 22 : : #include <string> 23 : : /*! 24 : : * @brief namespace ad 25 : : */ 26 : : namespace ad { 27 : : /*! 28 : : * @brief namespace rss 29 : : */ 30 : : namespace rss { 31 : : /*! 32 : : * @brief namespace situation 33 : : */ 34 : : namespace situation { 35 : : 36 : : /*! 37 : : * \brief DataType LateralRelativePosition 38 : : * 39 : : * Enumeration describing the relative lateral position between two objects, a and b, within their situation coordinate 40 : : * system. 41 : : */ 42 : : enum class LateralRelativePosition : int32_t 43 : : { 44 : : /*! 45 : : * The object a is completely left of object b. This means there is an actual lateral space between them. 46 : : */ 47 : : AtLeft = 0, 48 : : 49 : : /*! 50 : : * The objects overlap. The left border of object a is left of the left border of object b AND the right border of 51 : : * object a is left of the right border of object b. 52 : : */ 53 : : OverlapLeft = 1, 54 : : 55 : : /*! 56 : : * The objects overlap, but neither the conditions for OverlapLeft nor OverlapRight are applicable. 57 : : */ 58 : : Overlap = 2, 59 : : 60 : : /*! 61 : : * The objects overlap. The left border of object a is right of the left border of object b AND the right border of 62 : : * object a is right of the right border of object b. 63 : : */ 64 : : OverlapRight = 3, 65 : : 66 : : /*! 67 : : * The object a is completely right of object b. This means there is an actual lateral space between them. 68 : : */ 69 : : AtRight = 4 70 : : }; 71 : : 72 : : } // namespace situation 73 : : } // namespace rss 74 : : } // namespace ad 75 : : /*! 76 : : * \brief Conversion of ::ad::rss::situation::LateralRelativePosition to std::string helper. 77 : : */ 78 : : std::string toString(::ad::rss::situation::LateralRelativePosition const e); 79 : : 80 : : /*! 81 : : * \brief Conversion from std::string to enum type T helper. 82 : : * 83 : : * \param [in] str - a fully qualified string name of enum class type 84 : : * 85 : : * \return T enum value 86 : : * 87 : : * \throws std::out_of_range exception if the given string does not match any enum type 88 : : * 89 : : * Example usage: 90 : : * \code 91 : : * auto value = fromString<SomeEnumType>("SomeEnumType::eValue"); 92 : : * assert(value == SomeEnumType::eValue); 93 : : * // Or: 94 : : * auto value = fromString<SomeEnumType>("eValue"); 95 : : * assert(value == SomeEnumType::eValue); 96 : : * \endcode 97 : : */ 98 : : template <typename EnumType> EnumType fromString(std::string const &str); 99 : : 100 : : /*! 101 : : * \brief Conversion from std::string to enum type T helper. 102 : : * 103 : : * \param [in] str - a fully qualified string name of enum class type 104 : : * 105 : : * \return T enum value 106 : : * 107 : : * \throws std::out_of_range exception if the given string does not match any enum type 108 : : * 109 : : * Example usage: 110 : : * \code 111 : : * auto value = fromString<SomeEnumType>("SomeEnumType::eValue"); 112 : : * assert(value == SomeEnumType::eValue); 113 : : * // Or: 114 : : * auto value = fromString<SomeEnumType>("eValue"); 115 : : * assert(value == SomeEnumType::eValue); 116 : : * \endcode 117 : : */ 118 : : template <>::ad::rss::situation::LateralRelativePosition fromString(std::string const &str); 119 : : 120 : : /*! 121 : : * \brief protect the definition of functions from duplicates by typedef usage within other data types 122 : : */ 123 : : #ifndef GEN_GUARD_AD_RSS_SITUATION_LATERALRELATIVEPOSITION 124 : : #define GEN_GUARD_AD_RSS_SITUATION_LATERALRELATIVEPOSITION 125 : : /*! 126 : : * @brief namespace ad 127 : : */ 128 : : namespace ad { 129 : : /*! 130 : : * @brief namespace rss 131 : : */ 132 : : namespace rss { 133 : : /*! 134 : : * @brief namespace situation 135 : : */ 136 : : namespace situation { 137 : : 138 : : /** 139 : : * \brief standard ostream operator 140 : : * 141 : : * \param[in] os The output stream to write to 142 : : * \param[in] value LateralRelativePosition value 143 : : * 144 : : * \returns The stream object. 145 : : * 146 : : */ 147 : 1004090 : inline std::ostream &operator<<(std::ostream &os, LateralRelativePosition const &value) 148 : : { 149 [ + - ]: 1004090 : return os << toString(value); 150 : : } 151 : : 152 : : } // namespace situation 153 : : } // namespace rss 154 : : } // namespace ad 155 : : 156 : : namespace std { 157 : : /*! 158 : : * \brief overload of the std::to_string for LateralRelativePosition 159 : : */ 160 : : inline std::string to_string(::ad::rss::situation::LateralRelativePosition const &value) 161 : : { 162 : : return ::toString(value); 163 : : } 164 : : } // namespace std 165 : : #endif // GEN_GUARD_AD_RSS_SITUATION_LATERALRELATIVEPOSITION