AlgFactory< T > Class Template Reference

#include <GaudiKernel/Algorithm.h>

Static Public Member Functions

template<typename S , typename... Args>
static S::ReturnType create (Args &&...args)
 

Detailed Description

template<class T>
class AlgFactory< T >

Definition at line 608 of file Algorithm.h.

Member Function Documentation

template<class T >
template<typename S , typename... Args>
static S::ReturnType AlgFactory< T >::create ( Args &&...  args)
inlinestatic

Definition at line 613 of file Algorithm.h.

614  {
615  return new T( std::forward<Args>( args )... );
616  }

The documentation for this class was generated from the following file: