Reference documentation for deal.II version 9.0.0
|
#include <deal.II/base/logstream.h>
Public Member Functions | |
Prefix (const std::string &text) | |
Prefix (const std::string &text, LogStream &stream) | |
~Prefix () | |
Private Attributes | |
SmartPointer< LogStream, LogStream::Prefix > | stream |
A subclass allowing for the safe generation and removal of prefixes.
Somewhere at the beginning of a block, create one of these objects, and it will appear as a prefix in LogStream output like deallog
. At the end of the block, the prefix will automatically be removed, when this object is destroyed.
In other words, the scope of the object so created determines the lifetime of the prefix. The advantage of using such an object is that the prefix is removed whichever way you exit the scope – by continue
, break
, return
, throw
, or by simply reaching the closing brace. In all of these cases, it is not necessary to remember to pop the prefix manually using LogStream::pop(). In this, it works just like the better known std::unique_ptr and Threads::Mutex::ScopedLock classes.
Definition at line 101 of file logstream.h.
LogStream::Prefix::Prefix | ( | const std::string & | text | ) |
Set a new prefix for deallog
, which will be removed when the variable is destroyed.
Definition at line 41 of file logstream.cc.
LogStream::Prefix::Prefix | ( | const std::string & | text, |
LogStream & | stream | ||
) |
Set a new prefix for the given stream, which will be removed when the variable is destroyed.
Definition at line 50 of file logstream.cc.
LogStream::Prefix::~Prefix | ( | ) |
Remove the prefix associated with this variable.
Definition at line 60 of file logstream.cc.
|
private |
A pointer to the LogStream object to which the prefix is applied.
Definition at line 127 of file logstream.h.