diff options
Diffstat (limited to 'src/strategies/anti_lag/device_strategy.hh')
| -rw-r--r-- | src/strategies/anti_lag/device_strategy.hh | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/strategies/anti_lag/device_strategy.hh b/src/strategies/anti_lag/device_strategy.hh new file mode 100644 index 0000000..8a9afee --- /dev/null +++ b/src/strategies/anti_lag/device_strategy.hh @@ -0,0 +1,18 @@ +#ifndef STRATEGIES_ANTI_LAG_DEVICE_STRATEGY_HH_ +#define STRATEGIES_ANTI_LAG_DEVICE_STRATEGY_HH_ + +#include "strategies/device_strategy.hh" + +namespace low_latency { + +class DeviceContext; + +class AntiLagDeviceStrategy final : public DeviceStrategy { + public: + AntiLagDeviceStrategy(DeviceContext& device); + virtual ~AntiLagDeviceStrategy(); +}; + +} // namespace low_latency + +#endif |
