diff options
| author | Nicolas James <Eele1Ephe7uZahRie@tutanota.com> | 2026-04-05 18:30:25 +1000 |
|---|---|---|
| committer | Nicolas James <Eele1Ephe7uZahRie@tutanota.com> | 2026-04-05 18:30:25 +1000 |
| commit | 21e55ae8a1b3ddd4dff6c24a57bdc7d7272fff16 (patch) | |
| tree | 1b13d5ea55c38d41becd64b003cdb0645159970a /src/strategies/queue_strategy.cc | |
| parent | 411f7acb1f92db88d2a3c92bb40da2133852b40e (diff) | |
Add boilerplate for separate implementations
Diffstat (limited to 'src/strategies/queue_strategy.cc')
| -rw-r--r-- | src/strategies/queue_strategy.cc | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/strategies/queue_strategy.cc b/src/strategies/queue_strategy.cc new file mode 100644 index 0000000..7b88e17 --- /dev/null +++ b/src/strategies/queue_strategy.cc @@ -0,0 +1,11 @@ +#include "queue_strategy.hh" + +#include "queue_context.hh" + +namespace low_latency { + +QueueStrategy::QueueStrategy(QueueContext& queue) : queue(queue) {} + +QueueStrategy::~QueueStrategy() {} + +} // namespace low_latency
\ No newline at end of file |
