The Gaudi Framework  v28r2p1 (f1a77ff4)
ToolHandle.h File Reference
#include "GaudiKernel/GaudiHandle.h"
#include "GaudiKernel/ServiceHandle.h"
#include "GaudiKernel/IToolSvc.h"
#include "GaudiKernel/INamedInterface.h"
#include "GaudiKernel/IAlgTool.h"
#include <string>
#include <vector>
#include <stdexcept>
#include <type_traits>
Include dependency graph for ToolHandle.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  ToolHandleInfo
 General info and helper functions for toolhandles and arrays. More...
 
class  BaseToolHandle
 Non-templated base class for actual ToolHandle<T>. More...
 
class  ToolHandle< T >
 Handle to be used in lieu of naked pointers to tools. More...
 
class  ToolHandleArray< T >
 Array of Handles to be used in lieu of vector of naked pointers to tools. More...
 

Functions

template<class T >
std::ostreamoperator<< (std::ostream &os, const ToolHandle< T > &handle)
 
template<class T >
std::ostreamoperator<< (std::ostream &os, const ToolHandleArray< T > &handle)
 

Function Documentation

template<class T >
std::ostream& operator<< ( std::ostream os,
const ToolHandle< T > &  handle 
)
inline

Definition at line 352 of file ToolHandle.h.

352  {
353  return operator<<(os, static_cast<const GaudiHandleInfo&>(handle) );
354 }
template<class T >
std::ostream& operator<< ( std::ostream os,
const ToolHandleArray< T > &  handle 
)
inline

Definition at line 358 of file ToolHandle.h.

358  {
359  return operator<<(os, static_cast<const GaudiHandleInfo&>(handle) );
360 }