1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-01-04 05:56:02 +00:00
transmission/libtransmission/timer-ev.h
2022-10-24 22:13:09 -05:00

34 lines
633 B
C++

// This file Copyright 2022 Mnemosyne LLC.
// It may be used under GPLv2 (SPDX: GPL-2.0-only), GPLv3 (SPDX: GPL-3.0-only),
// or any future license endorsed by Mnemosyne LLC.
// License text can be found in the licenses/ folder.
#pragma once
#include <memory>
#include "timer.h"
extern "C"
{
struct event_base;
}
namespace libtransmission
{
class EvTimerMaker final : public TimerMaker
{
public:
explicit EvTimerMaker(event_base* base)
: event_base_{ base }
{
}
[[nodiscard]] std::unique_ptr<Timer> create() override;
private:
event_base* const event_base_;
};
} // namespace libtransmission