aboutsummaryrefslogtreecommitdiff
path: root/src/strategies/device_strategy.hh
blob: 1b95e116684a62184a797c6e7279e00578d46d7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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