Reference documentation for deal.II version 9.1.0-pre
Public Member Functions | Private Attributes | List of all members
TimerOutput::Scope Class Reference

#include <deal.II/base/timer.h>

Public Member Functions

 Scope (::TimerOutput &timer_, const std::string &section_name)
 
 ~Scope ()
 
void stop ()
 

Private Attributes

::TimerOutputtimer
 
const std::string section_name
 
bool in
 

Detailed Description

Helper class to enter/exit sections in TimerOutput be constructing a simple scope-based object. The purpose of this class is explained in the documentation of TimerOutput.

Definition at line 588 of file timer.h.

Constructor & Destructor Documentation

TimerOutput::Scope::Scope ( ::TimerOutput timer_,
const std::string &  section_name 
)
inline

Enter the given section in the timer. Exit automatically when calling stop() or destructor runs.

Definition at line 1018 of file timer.h.

TimerOutput::Scope::~Scope ( )

Destructor calls stop()

Definition at line 882 of file timer.cc.

Member Function Documentation

void TimerOutput::Scope::stop ( )
inline

In case you want to exit the scope before the destructor is executed, call this function.

Definition at line 1030 of file timer.h.

Member Data Documentation

::TimerOutput& TimerOutput::Scope::timer
private

Reference to the TimerOutput object

Definition at line 613 of file timer.h.

const std::string TimerOutput::Scope::section_name
private

Name of the section we need to exit

Definition at line 618 of file timer.h.

bool TimerOutput::Scope::in
private

Do we still need to exit the section we are in?

Definition at line 623 of file timer.h.


The documentation for this class was generated from the following files: