mirror of
https://github.com/zeek/zeek.git
synced 2025-10-04 07:38:19 +00:00
Move Timer and PriorityQueue classes to namespaces
This commit is contained in:
parent
910aa77d95
commit
1c17700c48
33 changed files with 206 additions and 140 deletions
|
@ -9,9 +9,9 @@
|
|||
|
||||
namespace threading {
|
||||
|
||||
class HeartbeatTimer final : public Timer {
|
||||
class HeartbeatTimer final : public zeek::detail::Timer {
|
||||
public:
|
||||
HeartbeatTimer(double t) : Timer(t, TIMER_THREAD_HEARTBEAT) {}
|
||||
HeartbeatTimer(double t) : zeek::detail::Timer(t, zeek::detail::TIMER_THREAD_HEARTBEAT) {}
|
||||
virtual ~HeartbeatTimer() {}
|
||||
|
||||
void Dispatch(double t, bool is_expire) override;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue