ad_map_access
ENUEdgeCacheValidInputRange.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::point::ENUEdgeCache 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 }
ENUEdgeValidInputRange.hpp
ad::map::point::ENUEdgeCache
DataType ENUEdgeCache.
Definition: ENUEdgeCache.hpp:44
ENUEdgeCache.hpp
withinValidInputRange
bool withinValidInputRange(::ad::map::point::ENUEdgeCache const &input, bool const logErrors=true)
check if the given ENUEdgeCache is within valid input range
Definition: ENUEdgeCacheValidInputRange.hpp:35