aboutsummaryrefslogtreecommitdiff
path: root/src/strategies/device_strategy.hh
blob: 7b7bacda57160cef1cf33d58882478a530b2ea69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef STRATEGIES_DEVICE_STRATEGY_HH_
#define STRATEGIES_DEVICE_STRATEGY_HH_

namespace low_latency {

class DeviceContext;

class DeviceStrategy {
  protected:
    DeviceContext& device;

  public:
    DeviceStrategy(DeviceContext& device);
    virtual ~DeviceStrategy();

  public:

};

} // namespace low_latency

#endif