aboutsummaryrefslogtreecommitdiff
path: root/src/strategies/queue_strategy.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/strategies/queue_strategy.cc')
-rw-r--r--src/strategies/queue_strategy.cc11
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