aboutsummaryrefslogtreecommitdiff
path: root/Carpet/Carpet/src/Timers.hh
diff options
context:
space:
mode:
Diffstat (limited to 'Carpet/Carpet/src/Timers.hh')
-rw-r--r--Carpet/Carpet/src/Timers.hh3
1 files changed, 3 insertions, 0 deletions
diff --git a/Carpet/Carpet/src/Timers.hh b/Carpet/Carpet/src/Timers.hh
index c3ee01c6f..fdd31773f 100644
--- a/Carpet/Carpet/src/Timers.hh
+++ b/Carpet/Carpet/src/Timers.hh
@@ -45,12 +45,14 @@ started timer. Doing so will generate an error.
Timer objects can be allocated as "static" or not - it does not matter.
*/
+ class TimerTree;
class Timer {
public:
Timer (const string &name);
+ Timer (const string &name, TimerTree *tree);
~Timer ();
void instantiate ();
@@ -62,6 +64,7 @@ Timer objects can be allocated as "static" or not - it does not matter.
private:
string d_name;
+ TimerTree *d_tree;
};
// Macros for using timers in a convenient manner