aboutsummaryrefslogtreecommitdiff
path: root/src/strategies/low_latency2/device_strategy.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/strategies/low_latency2/device_strategy.hh')
-rw-r--r--src/strategies/low_latency2/device_strategy.hh18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/strategies/low_latency2/device_strategy.hh b/src/strategies/low_latency2/device_strategy.hh
new file mode 100644
index 0000000..18f8bd9
--- /dev/null
+++ b/src/strategies/low_latency2/device_strategy.hh
@@ -0,0 +1,18 @@
+#ifndef STRATEGIES_LOW_LATENCY2_DEVICE_STRATEGY_HH_
+#define STRATEGIES_LOW_LATENCY2_DEVICE_STRATEGY_HH_
+
+#include "strategies/device_strategy.hh"
+
+namespace low_latency {
+
+class DeviceContext;
+
+class LowLatency2DeviceStrategy final : public DeviceStrategy {
+ public:
+ LowLatency2DeviceStrategy(DeviceContext& device);
+ virtual ~LowLatency2DeviceStrategy();
+};
+
+} // namespace low_latency
+
+#endif