SerializeSTLFwd.h
Go to the documentation of this file.
1 
7 #ifndef GAUDIKERNEL_SERIALIZESTLFWD_H_
8 #define GAUDIKERNEL_SERIALIZESTLFWD_H_
9 
10 #include <ostream>
11 #include <vector>
12 #include <list>
13 #include <map>
14 #include <utility>
15 #include "GaudiKernel/Map.h"
16 #include "GaudiKernel/HashMap.h"
17 
18 namespace GaudiUtils {
20  template <class T, class ALLOC>
21  inline std::ostream& operator<< ( std::ostream& s, const std::vector<T,ALLOC>& v );
22 
24  template <class T, class ALLOC>
25  inline std::ostream& operator<< ( std::ostream& s, const std::list<T,ALLOC>& l );
26 
28  template <class T1, class T2>
29  inline std::ostream& operator<< ( std::ostream& s, const std::pair<T1,T2>& p );
30 
32  template <class T1, class T2, class COMP, class ALLOC>
35 
37  template <class K, class T, class M>
39  const GaudiUtils::Map<K,T,M>& m );
40 
44  template <class K, class T, class H, class M>
47 } // namespace GaudiUtils
48 
49 #endif /*GAUDIKERNEL_SERIALIZESTLFWD_H_*/
Extension of the STL map.
Definition: Map.h:82
STL class.
constexpr double m
Definition: SystemOfUnits.h:93
dictionary l
Definition: gaudirun.py:421
Forward declarations for the functions in SerializeSTL.h.
Definition: GaudiHistoID.h:139
Common class providing an architecture-independent hash map.
Definition: HashMap.h:77
string s
Definition: gaudirun.py:245
STL class.
std::ostream & operator<<(std::ostream &s, const std::vector< T, ALLOC > &v)
Serialize an std::vector in a python like format. E.g. "[1, 2, 3]".
Definition: SerializeSTL.h:50