Loading [MathJax]/extensions/tex2jax.js
The Gaudi Framework  master (f31105fd)
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
ServiceHandle.h File Reference
#include <Gaudi/Concepts.h>
#include <GaudiKernel/Bootstrap.h>
#include <GaudiKernel/GaudiException.h>
#include <GaudiKernel/GaudiHandle.h>
#include <GaudiKernel/IMessageSvc.h>
#include <GaudiKernel/IProperty.h>
#include <GaudiKernel/ISvcLocator.h>
#include <GaudiKernel/MsgStream.h>
#include <GaudiKernel/ServiceLocatorHelper.h>
#include <stdexcept>
#include <string>
#include <type_traits>
Include dependency graph for ServiceHandle.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  ServiceHandle< T >
 
class  ServiceHandleArray< T >
 

Functions

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

Function Documentation

◆ operator<<() [1/2]

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

Definition at line 193 of file ServiceHandle.h.

193  {
194  return operator<<( os, static_cast<const GaudiHandleInfo&>( handle ) );
195 }

◆ operator<<() [2/2]

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

Definition at line 198 of file ServiceHandle.h.

198  {
199  return operator<<( os, static_cast<const GaudiHandleInfo&>( handle ) );
200 }