ad_rss
Main Page
Namespaces
Namespace List
Namespace Members
All
c
g
h
i
l
o
r
s
t
u
Functions
c
g
i
o
r
t
Typedefs
Enumerations
Classes
Class List
Class Index
Class Members
All
a
b
c
d
e
g
h
i
l
m
o
p
r
s
t
u
v
w
y
~
Functions
a
c
d
e
g
h
i
l
o
p
r
s
u
v
w
~
Variables
a
b
c
d
e
h
i
l
m
o
p
r
s
t
u
v
w
y
Typedefs
c
p
Files
File List
File Members
All
f
g
o
t
w
Functions
f
o
t
w
Macros
g
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
generated
include
ad
rss
world
LaneSegmentTypeValidInputRange.hpp
Go to the documentation of this file.
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
18
#pragma once
19
20
#include <cmath>
21
#include <limits>
22
#include "
ad/rss/world/LaneSegmentType.hpp
"
23
#include "spdlog/fmt/ostr.h"
24
#include "spdlog/spdlog.h"
25
36
inline
bool
withinValidInputRange
(::
ad::rss::world::LaneSegmentType
const
&input,
bool
const
logErrors =
true
)
37
{
38
bool
inValidInputRange = (input == ::ad::rss::world::LaneSegmentType::Normal)
39
|| (input == ::
ad::rss::world::LaneSegmentType::Intersection
);
40
if
(!inValidInputRange && logErrors)
41
{
42
spdlog::error(
"withinValidInputRange(::ad::rss::world::LaneSegmentType)>> {}, raw value: {} "
,
43
input,
44
static_cast<
int32_t
>
(input));
// LCOV_EXCL_BR_LINE
45
}
46
return
inValidInputRange;
47
}
withinValidInputRange
bool withinValidInputRange(::ad::rss::world::LaneSegmentType const &input, bool const logErrors=true)
check if the given LaneSegmentType is within valid input range
Definition:
LaneSegmentTypeValidInputRange.hpp:36
ad::rss::world::LaneSegmentType
LaneSegmentType
DataType LaneSegmentType.
Definition:
LaneSegmentType.hpp:39
ad::rss::world::LaneSegmentType::Intersection
@ Intersection
LaneSegmentType.hpp
Generated by
1.8.17