make documentation equal for all three classes.

This commit is contained in:
Robert K 2015-01-28 15:46:11 +01:00
parent 99e291d0ca
commit ef80032743
2 changed files with 3 additions and 3 deletions

View File

@ -95,10 +95,10 @@ namespace Opm
/// Note: if done(), it is an error to call report().
void report(std::ostream& os) const;
/// Next step.
/// advance time by currentStepLength
SimulatorTimer& operator++();
/// Next step.
/// advance time by currentStepLength
void advance() { this->operator++(); }
/// Return true if op++() has been called numSteps() times.

View File

@ -75,7 +75,7 @@ namespace Opm
/// beginning of the current time step [s].
virtual double simulationTimeElapsed() const = 0;
/// advance timer to the next time step
/// advance time by currentStepLength
virtual void advance() = 0 ;
/// Return true if timer indicates that simulation of timer interval is finished