logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

sc::Timer - The Timer class uses RegionTimer to time intervals in an exception safe manner.

Author

       Generated automatically by Doxygen for MPQC from the source code.

Version 2.3.1                                    Sun Oct 4 2020                                     sc::Timer(3)

Constructor & Destructor Documentation

sc::Timer::Timer(constchar*name)
       Start timing a region using the default RegionTimer and activate the timer. If a null name pointer is
       given, then the timer will not be activated.

   sc::Timer::Timer(constRef<RegionTimer>&,constchar*name)
       Start timing a region using the given RegionTimer. If a null name pointer is given, then the timer will
       not be activated.

Detailed Description

       The Timer class uses RegionTimer to time intervals in an exception safe manner.

       It will automatically call RegionTimer::enter when its constructor is called and RegionTimer::exit when
       its destructor is called. The reset member can also result in RegionTimer's enter and exit routines being
       called. The programmer is responsible for making sure that timers are exited in the reverse of the order
       that they are entered.

Member Function Documentation

voidsc::Timer::reset(constchar*=0)
       Stop timing the current region, if active. If a new region name is passed in, start timing with that
       name. If no region name is given, the Timer will be deactivated.

Name

       sc::Timer - The Timer class uses RegionTimer to time intervals in an exception safe manner.

Synopsis

       #include <regtime.h>

   PublicMemberFunctionsTimer (const char *name)
           Start timing a region using the default RegionTimer and activate the timer.
       Timer (const Ref< RegionTimer > &, const char *name)
           Start timing a region using the given RegionTimer.
       ~Timer ()
           Stop timing a region, if active.
       void reset (const char *=0)
           Stop timing the current region, if active.

See Also