diff options
Diffstat (limited to 'src/strategies/device_strategy.hh')
| -rw-r--r-- | src/strategies/device_strategy.hh | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/strategies/device_strategy.hh b/src/strategies/device_strategy.hh new file mode 100644 index 0000000..1b95e11 --- /dev/null +++ b/src/strategies/device_strategy.hh @@ -0,0 +1,18 @@ +#ifndef STRATEGIES_DEVICE_STRATEGY_HH_ +#define STRATEGIES_DEVICE_STRATEGY_HH_ + +namespace low_latency { + +class DeviceContext; + +class DeviceStrategy { + DeviceContext& device; + + public: + DeviceStrategy(DeviceContext& device); + virtual ~DeviceStrategy(); +}; + +} // namespace low_latency + +#endif
\ No newline at end of file |
