diff options
Diffstat (limited to 'src/strategies/queue_strategy.hh')
| -rw-r--r-- | src/strategies/queue_strategy.hh | 18 |
1 files changed, 18 insertions, 0 deletions
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 |
