X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fyoink;a=blobdiff_plain;f=src%2FMoof%2FTimer.hh;h=ed4e2f0bf3a1b59def8fabfb5d999dafee234e88;hp=6c1af5615a6426913eac86788a46b9e02116bbd4;hb=a31d65a998121df0651c57bfb68782e2a07d2e2f;hpb=31d52677b38d935297d132bdbd956c655cd3feee diff --git a/src/Moof/Timer.hh b/src/Moof/Timer.hh index 6c1af56..ed4e2f0 100644 --- a/src/Moof/Timer.hh +++ b/src/Moof/Timer.hh @@ -59,7 +59,7 @@ struct Timer Timer() : - mode_(INVALID) {} + mMode(INVALID) {} Timer(const Function& function, Scalar seconds, Mode mode = NORMAL) { @@ -115,11 +115,11 @@ private: static unsigned getNewID(); static Scalar findNextFire(); - Function function_; - Mode mode_; - Scalar absolute_; - Scalar interval_; - unsigned id_; + Function mFunction; + Mode mMode; + Scalar mAbsolute; + Scalar mInterval; + unsigned mId; static Scalar nextFire_; static std::map timers_;