3#ifndef SCANBOTSDK_UTILS_H
4#define SCANBOTSDK_UTILS_H
11inline constexpr bool IsSdkValueType =
false;
14inline constexpr bool IsSdkValueType<scanbotsdk_point_t> =
true;
17inline constexpr bool IsSdkValueType<scanbotsdk_pointf_t> =
true;
20inline constexpr bool IsSdkValueType<scanbotsdk_rect_t> =
true;
23inline constexpr bool IsSdkValueType<scanbotsdk_rectf_t> =
true;
27 std::is_integral_v<T> || std::is_floating_point_v<T> || std::is_enum_v<T> || IsSdkValueType<T>;
The Scanbot SDK C API primitive types.
Definition ScanbotSDKUtils.hpp:26