Public Member Functions | |
CxxDebugStream (std::ostream &str) | |
void | println (int rank, const char *pfx, const char *str) |
void | println (const char *pfx, const char *str) |
![]() | |
DebugOutputStream () | |
virtual | ~DebugOutputStream () |
Private Attributes | |
std::ostream & | outStr |
Additional Inherited Members | |
![]() | |
int | referenceCount |
Definition at line 40 of file DebugOutput.cpp.
|
inline |
Definition at line 46 of file DebugOutput.cpp.
46 : outStr( str ) {}
|
virtual |
Implements moab::DebugOutputStream.
Definition at line 56 of file DebugOutput.cpp.
57 {
58 outStr << pfx << str << std::endl;
59 outStr.flush();
60 }
References outStr.
|
virtual |
Implements moab::DebugOutputStream.
Definition at line 50 of file DebugOutput.cpp.
51 {
52 outStr.width( 3 );
53 outStr << rank << " " << pfx << str << std::endl;
54 outStr.flush();
55 }
References outStr.
|
private |
Definition at line 43 of file DebugOutput.cpp.
Referenced by println().