The Gaudi Framework  master (37c0b60a)
extends< BASE, Interfaces > Class Template Reference

Base class used to extend a class implementing other interfaces. More...

#include </builds/gaudi/Gaudi/GaudiKernel/include/GaudiKernel/extends.h>

Inheritance diagram for extends< BASE, Interfaces >:
Collaboration diagram for extends< BASE, Interfaces >:

Public Types

using base_class = extends
 Typedef to this class. More...
 
using extend_interfaces_base = extend_interfaces< Interfaces... >
 Typedef to the base of this class. More...
 
- Public Types inherited from extend_interfaces< Interfaces... >
using ext_iids = typename Gaudi::interface_list_cat< typename Interfaces::ext_iids... >::type
 take union of the ext_iids of all Interfaces... More...
 

Public Member Functions

void * i_cast (const InterfaceID &tid) const override
 Implementation of IInterface::i_cast. More...
 
StatusCode queryInterface (const InterfaceID &ti, void **pp) override
 Implementation of IInterface::queryInterface. More...
 
std::vector< std::stringgetInterfaceNames () const override
 Implementation of IInterface::getInterfaceNames. More...
 

Detailed Description

template<typename BASE, typename... Interfaces>
class extends< BASE, Interfaces >

Base class used to extend a class implementing other interfaces.

Version for one interface.

Author
Marco Clemencic

Definition at line 20 of file extends.h.

Member Typedef Documentation

◆ base_class

template<typename BASE , typename... Interfaces>
using extends< BASE, Interfaces >::base_class = extends

Typedef to this class.

Definition at line 24 of file extends.h.

◆ extend_interfaces_base

template<typename BASE , typename... Interfaces>
using extends< BASE, Interfaces >::extend_interfaces_base = extend_interfaces<Interfaces...>

Typedef to the base of this class.

Definition at line 26 of file extends.h.

Member Function Documentation

◆ getInterfaceNames()

template<typename BASE , typename... Interfaces>
std::vector<std::string> extends< BASE, Interfaces >::getInterfaceNames ( ) const
inlineoverride

Implementation of IInterface::getInterfaceNames.

Definition at line 49 of file extends.h.

49  {
50  using iids = typename extend_interfaces_base::ext_iids;
51  auto vb = BASE::getInterfaceNames();
52  auto vi = Gaudi::getInterfaceNames( iids{} );
53  // start with base, and move the rest...
54  vb.insert( vb.end(), std::make_move_iterator( vi.begin() ), std::make_move_iterator( vi.end() ) );
55  return vb;
56  }

◆ i_cast()

template<typename BASE , typename... Interfaces>
void* extends< BASE, Interfaces >::i_cast ( const InterfaceID tid) const
inlineoverride

Implementation of IInterface::i_cast.

Definition at line 31 of file extends.h.

31  {
32  using iids = typename extend_interfaces_base::ext_iids;
33  void* ptr = Gaudi::iid_cast( tid, iids{}, this );
34  return ptr ? ptr : BASE::i_cast( tid );
35  }

◆ queryInterface()

template<typename BASE , typename... Interfaces>
StatusCode extends< BASE, Interfaces >::queryInterface ( const InterfaceID ti,
void **  pp 
)
inlineoverride

Implementation of IInterface::queryInterface.

Definition at line 38 of file extends.h.

38  {
39  if ( !pp ) return StatusCode::FAILURE;
40  using iids = typename extend_interfaces_base::ext_iids;
41  *pp = Gaudi::iid_cast( ti, iids{}, this );
42  // if cast failed, try the base class
43  if ( !*pp ) return BASE::queryInterface( ti, pp );
44  this->addRef();
45  return StatusCode::SUCCESS;
46  }

The documentation for this class was generated from the following file:
extend_interfaces< Interfaces... >::ext_iids
typename Gaudi::interface_list_cat< typename Interfaces::ext_iids... >::type ext_iids
take union of the ext_iids of all Interfaces...
Definition: extend_interfaces.h:26
StatusCode::SUCCESS
constexpr static const auto SUCCESS
Definition: StatusCode.h:100
Gaudi::iid_cast
void * iid_cast(const InterfaceID &tid, Gaudi::interface_list< Is... >, P *ptr)
Definition: IInterface.h:177
Gaudi::getInterfaceNames
std::vector< std::string > getInterfaceNames(Gaudi::interface_list< Is... >)
Definition: IInterface.h:172
std::vector::insert
T insert(T... args)
StatusCode::FAILURE
constexpr static const auto FAILURE
Definition: StatusCode.h:101
std::make_move_iterator
T make_move_iterator(T... args)
compareOutputFiles.pp
pp
Definition: compareOutputFiles.py:507