◐ Shell
clean mode source ↗

std::experimental::reflect::Base - cppreference.com

From cppreference.com

template< class T >
concept Base = Object<T> && /* see below */;
(reflection TS)

The Base concept is satisfied if and only if T reflects a direct base class, as returned by the template get_base_classes.

Example

See also