diff options
| author | 2014-07-10 12:19:26 +0200 | |
|---|---|---|
| committer | 2014-07-10 12:19:26 +0200 | |
| commit | 181978705240b970574b13eccfe86f28629a1f36 (patch) | |
| tree | c1085ca0975cba7b90eee935d9267f5ff994ff79 /include/timer.h | |
| parent | Remove current time parameter of the Timer constructor (diff) | |
| download | inspircd++-181978705240b970574b13eccfe86f28629a1f36.tar.gz inspircd++-181978705240b970574b13eccfe86f28629a1f36.tar.bz2 inspircd++-181978705240b970574b13eccfe86f28629a1f36.zip | |
Move the TimerMap typedef into the private part of TimerManager
Diffstat (limited to 'include/timer.h')
| -rw-r--r-- | include/timer.h | 4 |
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; |
