#include <Event.h>
|
|
| Event (const std::string msg, unsigned int maxcount=1) |
| | Constructor.
|
|
| ~Event () |
| | Destructor.
|
|
void | operator() () |
| | Display message.
|
|
unsigned int | count () const |
| | Display count.
|
|
unsigned int | maxcount () const |
| | Maximum display count.
|
A event is a string message which is displayed only a limited number of times.
Event event(
"System is stiff, damping is needed.");
while ()
{
...
if ( ... )
{
event();
...
}
}
Event(const std::string msg, unsigned int maxcount=1)
Constructor.
Definition Event.cpp:27
The documentation for this class was generated from the following files:
- /home/abuild/rpmbuild/BUILD/dolfin-documentation-2019.1.0.post0-build/dolfin-2019.1.0.post0/dolfin/log/Event.h
- /home/abuild/rpmbuild/BUILD/dolfin-documentation-2019.1.0.post0-build/dolfin-2019.1.0.post0/dolfin/log/Event.cpp