summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/timer.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/timer.h b/include/timer.h
index 2ac0517b8..a597427e3 100644
--- a/include/timer.h
+++ b/include/timer.h
@@ -111,14 +111,14 @@ class CoreExport Timer
}
};
-typedef std::multimap<time_t, Timer*> TimerMap;
-
/** This class manages sets of Timers, and triggers them at their defined times.
* This will ensure timers are not missed, as well as removing timers that have
* expired and allowing the addition of new ones.
*/
class CoreExport TimerManager
{
+ typedef std::multimap<time_t, Timer*> TimerMap;
+
/** A list of all pending timers
*/
TimerMap Timers;