From 181978705240b970574b13eccfe86f28629a1f36 Mon Sep 17 00:00:00 2001 From: Attila Molnar Date: Thu, 10 Jul 2014 12:19:26 +0200 Subject: Move the TimerMap typedef into the private part of TimerManager --- include/timer.h | 4 ++-- 1 file 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 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 TimerMap; + /** A list of all pending timers */ TimerMap Timers; -- cgit v1.2.3