11#ifndef __ThreadStream_h
12#define __ThreadStream_h
34 void set (std::ostream*);
42 void* stream =
nullptr;
52typedef std::ostream& (*manipulator) ( std::ostream& os );
Manages a unique std::ostream for each thread.
Definition ThreadStream.h:18
ThreadStream()
Default constructor.
Definition ThreadStream.C:29
void * get_raw()
Interface to raw void*.
void set(void *)
Set the raw void* for the current thread.
~ThreadStream()
Destructor.
Definition ThreadStream.C:40
void set(std::ostream *)
Set the ostream for the current thread.
Definition ThreadStream.C:66
std::ostream & get()
Interface to ostream.
Definition ThreadStream.C:51