summaryrefslogtreecommitdiff
path: root/sim/sim_time.hh
diff options
context:
space:
mode:
Diffstat (limited to 'sim/sim_time.hh')
-rw-r--r--sim/sim_time.hh4
1 files changed, 4 insertions, 0 deletions
diff --git a/sim/sim_time.hh b/sim/sim_time.hh
index af69c3321..02ca5534f 100644
--- a/sim/sim_time.hh
+++ b/sim/sim_time.hh
@@ -45,6 +45,7 @@ namespace Time {
~Start();
const timeval &get() const;
+ void reset();
double operator()() const;
};
@@ -65,12 +66,15 @@ namespace Time {
{
private:
mutable _timeval *elapsed;
+ Start _start;
+ Now _now;
public:
Elapsed();
~Elapsed();
const timeval &get() const;
+ void reset();
double operator()() const;
};