![]() |
Fixposition SDK 0.0.0-heads/main-0-gfaec355
Collection of c++ libraries and apps for use with Fixposition products
|
Common types. More...
Classes | |
class | NoCopyNoMove |
Base class to prevent copy or move. More... | |
Functions | |
template<typename T , typename = typename std::enable_if<std::is_enum<T>::value, T>::type> | |
constexpr std::underlying_type< T >::type | EnumToVal (T enum_val) |
Convert enum class constant to the underlying integral type value. | |
template<typename T > | |
constexpr std::size_t | NumOf (const T &arr) |
Get number of elements in array variable. | |
template<typename T > | |
constexpr std::size_t | NumOf () |
Get number of elements in array type. | |
Common types.
|
constexpr |
Convert enum class constant to the underlying integral type value.
T | The enum class type |
[in] | enum_val | The enum constant |
Definition at line 47 of file types.hpp.
Referenced by fpsdk::common::gnss::GnssSvNrBandSignalToSatSig(), and fpsdk::common::gnss::GnssSvNrToSat().
|
constexpr |
Get number of elements in array variable.
T | Array type |
[in] | arr | The array |
|
constexpr |
Get number of elements in array type.
T | Array type |