diff options
Diffstat (limited to 'src/strategies/low_latency2/queue_strategy.hh')
| -rw-r--r-- | src/strategies/low_latency2/queue_strategy.hh | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/strategies/low_latency2/queue_strategy.hh b/src/strategies/low_latency2/queue_strategy.hh new file mode 100644 index 0000000..9688cf4 --- /dev/null +++ b/src/strategies/low_latency2/queue_strategy.hh @@ -0,0 +1,18 @@ +#ifndef STRATEGIES_LOW_LATENCY2_QUEUE_STRATEGY_HH_ +#define STRATEGIES_LOW_LATENCY2_QUEUE_STRATEGY_HH_ + +#include "strategies/queue_strategy.hh" + +namespace low_latency { + +class QueueContext; + +class LowLatency2QueueStrategy final : public QueueStrategy { + public: + LowLatency2QueueStrategy(QueueContext& queue); + virtual ~LowLatency2QueueStrategy(); +}; + +} // namespace low_latency + +#endif |
