The Gaudi Framework  v29r0 (ff2e7097)
SerializeSTLFwd.h File Reference
#include "GaudiKernel/HashMap.h"
#include "GaudiKernel/Map.h"
#include <list>
#include <map>
#include <ostream>
#include <utility>
#include <vector>
Include dependency graph for SerializeSTLFwd.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Namespaces

 GaudiUtils
 Forward declarations for the functions in SerializeSTL.h.
 

Functions

template<class T , class ALLOC >
std::ostreamGaudiUtils::operator<< (std::ostream &s, const std::vector< T, ALLOC > &v)
 Serialize an std::vector in a python like format. E.g. "[1, 2, 3]". More...
 
template<class T , class ALLOC >
std::ostreamGaudiUtils::operator<< (std::ostream &s, const std::list< T, ALLOC > &l)
 Serialize an std::list in a python like format. E.g. "[1, 2, 3]". More...
 
template<class T1 , class T2 >
std::ostreamGaudiUtils::operator<< (std::ostream &s, const std::pair< T1, T2 > &p)
 Serialize an std::list in a python like format. E.g. "(1, 2)". More...
 
template<class T1 , class T2 , class COMP , class ALLOC >
std::ostreamGaudiUtils::operator<< (std::ostream &s, const std::map< T1, T2, COMP, ALLOC > &m)
 Serialize an std::map in a python like format. E.g. "{a: 1, b: 2}". More...
 
template<class K , class T , class M >
std::ostreamGaudiUtils::operator<< (std::ostream &s, const GaudiUtils::Map< K, T, M > &m)
 Serialize a GaudiUtils::Map in a python like format. E.g. "{a: 1, b: 2}". More...
 
template<class K , class T , class H , class M >
std::ostreamGaudiUtils::operator<< (std::ostream &s, const GaudiUtils::HashMap< K, T, H, M > &m)
 Serialize a GaudiUtils::HashMap in a python like format. More...