X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;ds=sidebyside;f=source%2Ftime%2Ftimer.h;h=33257319eba3466d89f28c650efcd26dde0a996d;hb=HEAD;hp=62f248d23a722078472c461b9f04186c6cdd827d;hpb=2d608d773f3494e84cb154bdbb07954e87d9af86;p=libs%2Fcore.git diff --git a/source/time/timer.h b/source/time/timer.h index 62f248d..7cb5c76 100644 --- a/source/time/timer.h +++ b/source/time/timer.h @@ -3,7 +3,7 @@ #include #include -#include +#include #include #include #include @@ -20,7 +20,7 @@ of the returned slot. This class is thread-safe, to allow running timers in a separate thread. */ -class Timer: private NonCopyable +class MSPCORE_API Timer: private NonCopyable { public: class Slot @@ -44,14 +44,13 @@ private: { Slot *slot; - SlotProxy(Slot *); bool operator<(const SlotProxy &) const; }; std::vector slots; Semaphore sem; Mutex mutex; - bool blocking; + bool blocking = false; public: Timer(); @@ -68,9 +67,6 @@ public: /** Cancels a previously added timer. */ void cancel(Slot &); - /** Deprecated. Use one of the other overloads. */ - DEPRECATED void tick(bool block); - /** Waits until a timer expires, then executes it. If no timers have been set, blocks until one is added from another thread. */ void tick();