Template Struct NodeInterfacesSupports

Struct Documentation

template<typename StorageClassT, typename ...RemainingInterfaceTs>
struct NodeInterfacesSupports

Prototype of NodeInterfacesSupports.

Default specialization, needs to be specialized for each supported interface.

Should read NodeInterfacesSupports<…, T, …> as “NodeInterfaces supports T”, and if NodeInterfacesSupport is specialized for T, the is_supported should be set to std::true_type, but by default it is std::false_type, which will lead to a compiler error when trying to use T with NodeInterfaces.

Public Types

using is_supported = std::false_type