+ add restart method to timer

This commit is contained in:
wmayer
2015-12-07 17:31:05 +01:00
parent 00f6441905
commit 8c239cd39b
2 changed files with 6 additions and 0 deletions

View File

@@ -175,6 +175,11 @@ void StopWatch::start()
d->t.start();
}
int StopWatch::restart()
{
return d->t.restart();
}
int StopWatch::elapsed()
{
return d->t.elapsed();