The Gaudi Framework  v30r1 (5d4f4ae2)
extend_interfaces.h
Go to the documentation of this file.
1 #ifndef GAUDIKERNEL_EXTEND_INTERFACES_H
2 #define GAUDIKERNEL_EXTEND_INTERFACES_H
3 
5 
6 // -----------------------------------------------------------------------------
7 // Interface extension classes
8 // -----------------------------------------------------------------------------
10 template <typename... Interfaces>
11 struct GAUDI_API extend_interfaces : virtual public Interfaces... {
13  using ext_iids = typename Gaudi::interface_list_cat<typename Interfaces::ext_iids...>::type;
14 };
15 
16 template <typename I1>
18 template <typename I1, typename I2>
20 template <typename I1, typename I2, typename I3>
22 template <typename I1, typename I2, typename I3, typename I4>
24 
25 #endif
typename Gaudi::interface_list_cat< typename Interfaces::ext_iids... >::type ext_iids
take union of the ext_iids of all Interfaces...
Base class to be used to extend an interface.
#define GAUDI_API
Definition: Kernel.h:110