X-Git-Url: https://git.teslayout.com/public/public/public/?p=anna.git;a=blobdiff_plain;f=include%2Fanna%2Ftimex%2Finternal%2FTickProducer.hpp;h=16d6f1849368b17db149c7f591d7b63f3156f848;hp=687ccfff0145d1b7a524f044a1cf0ce3412452d9;hb=5a6cba5fde2b2f538a7515f8293cc0a8d9589dfa;hpb=af9c86ffb0e28d35ad94d99c5f77e41578c972b4 diff --git a/include/anna/timex/internal/TickProducer.hpp b/include/anna/timex/internal/TickProducer.hpp index 687ccff..16d6f18 100644 --- a/include/anna/timex/internal/TickProducer.hpp +++ b/include/anna/timex/internal/TickProducer.hpp @@ -23,10 +23,10 @@ class Engine; */ class TickProducer { public: - void requestStop() throw() { a_requestedStop = true; } + void requestStop() { a_requestedStop = true; } // Para poder clonarlo - void setfd(const int fd) throw() { a_fdWrite = fd; } + void setfd(const int fd) { a_fdWrite = fd; } private: Engine& a_timeController; @@ -37,14 +37,14 @@ private: TickProducer(Engine* timeController, const int fdWrite); - bool isInPause() const throw() { return a_isInPause; } - void setIsInPause(const bool isInPause) throw() { a_isInPause = isInPause; } + bool isInPause() const { return a_isInPause; } + void setIsInPause(const bool isInPause) { a_isInPause = isInPause; } - void tick() throw(); - void resetExpectedTime() throw() { a_expectedTime = 0; } - Millisecond calculeSlice(const Millisecond & msnow) throw(); + void tick() ; + void resetExpectedTime() { a_expectedTime = 0; } + Millisecond calculeSlice(const Millisecond & msnow) ; - static void* exec(void* arg) throw(); + static void* exec(void* arg) ; friend class Engine; };