From 21e55ae8a1b3ddd4dff6c24a57bdc7d7272fff16 Mon Sep 17 00:00:00 2001 From: Nicolas James Date: Sun, 5 Apr 2026 18:30:25 +1000 Subject: Add boilerplate for separate implementations --- src/strategies/queue_strategy.hh | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/strategies/queue_strategy.hh (limited to 'src/strategies/queue_strategy.hh') diff --git a/src/strategies/queue_strategy.hh b/src/strategies/queue_strategy.hh new file mode 100644 index 0000000..0b9edc8 --- /dev/null +++ b/src/strategies/queue_strategy.hh @@ -0,0 +1,18 @@ +#ifndef STRATEGIES_QUEUE_STRATEGY_HH_ +#define STRATEGIES_QUEUE_STRATEGY_HH_ + +namespace low_latency { + +class QueueContext; + +class QueueStrategy { + QueueContext& queue; + + public: + QueueStrategy(QueueContext& queue); + virtual ~QueueStrategy(); +}; + +} // namespace low_latency + +#endif \ No newline at end of file -- cgit v1.2.3