#include <Common.hh>
Helper template which uses function overloading and implict up-casting to determine whether or not a class is derived from a templated base class (i.e. MapdataPointInfoAccessor derives from MapdataAccessorBase). See: https://en.cppreference.com/w/cpp/language/sfinae.
Static Public Attributes | |
static constexpr bool | value = decltype(test(std::declval<Derived *>()))::value |
Static Private Member Functions | |
template<typename... Ts> | |
static std::true_type | test (const Base< Ts... > *) |
static std::false_type | test (...) |
|
staticconstexpr |