www.cemf.ir
streams.cpp
Go to the documentation of this file.
1 #include "streams.hpp"
2 
3 
4 pFlow::Ostream pFlow::output(std::cout, "pFlow Ostream");
5 
6 pFlow::masterOstream pFlow::mOutput(cout, "pFlow masterOstream");
7 
8 pFlow::processorOstream pFlow::pOutput(cout, "pFlow processorOstream");
9 
10 pFlow::Istream pFlow::input( std::cin, "sFlow Istream");
11 
12 pFlow::processorOstream pFlow::errReport( std::cerr, "pFlow error report stream");
13 
pFlow::pOutput
processorOstream pOutput
pFlow::mOutput
masterOstream mOutput
pFlow::processorOstream
Output stream for MPI parallel run, when we need to know which the processor number in the output lin...
Definition: processorOstream.hpp:36
pFlow::input
Istream input
pFlow::errReport
processorOstream errReport
pFlow::Istream
Standard input stream for binary and ascii data.
Definition: Istream.hpp:39
pFlow::masterOstream
Output stream for MPI parallel run, when we need to know which the processor number in the output lin...
Definition: masterOstream.hpp:36
pFlow::output
Ostream output
streams.hpp
pFlow::Ostream
Standard output stream for BINARY and ASCII formats.
Definition: Ostream.hpp:39