ad_map_access
ECEFBorderValidInputRange.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: MIT
7  *
8  * ----------------- END LICENSE BLOCK -----------------------------------
9  */
10 
18 #pragma once
19 
20 #include <cmath>
21 #include <limits>
24 
35 inline bool withinValidInputRange(::ad::map::lane::ECEFBorder const &input, bool const logErrors = true)
36 {
37  // check for generic member input ranges
38  (void)input;
39  (void)logErrors;
40  bool inValidInputRange = true;
41  return inValidInputRange;
42 }
ECEFEdgeValidInputRange.hpp
ad::map::lane::ECEFBorder
DataType ECEFBorder.
Definition: ECEFBorder.hpp:44
ECEFBorder.hpp
withinValidInputRange
bool withinValidInputRange(::ad::map::lane::ECEFBorder const &input, bool const logErrors=true)
check if the given ECEFBorder is within valid input range
Definition: ECEFBorderValidInputRange.hpp:35