QMCPACK
InfoStream.h File Reference

Declaration of InfoStream class. More...

+ Include dependency graph for InfoStream.h:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  InfoStream
 Interface to output streams. More...
 

Functions

template<class T >
InfoStreamoperator<< (InfoStream &o, const T &val)
 

Detailed Description

Declaration of InfoStream class.

Definition in file InfoStream.h.

Function Documentation

◆ operator<<()

InfoStream& operator<< ( InfoStream o,
const T &  val 
)
inline

Definition at line 80 of file InfoStream.h.

References InfoStream::getStream().

81 {
82  o.getStream() << val;
83  return o;
84 }
std::ostream & getStream(const std::string &tag="")
returns current stream
Definition: InfoStream.h:37