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

// The purpose of this class is to provide a base class for Context classes.

namespace low_latency {

class Context {
    
public:
    Context();
    Context(const Context& context) = delete;
    Context(Context&& context) = delete;
    Context operator=(const Context& context) = delete;
    Context operator=(Context&& context) = delete;
    virtual ~Context();
};

} // namespace low_latency

#endif