]> git.localhorst.tv Git - orbi.git/blob - src/app/IMG.h
initial collision tests
[orbi.git] / src / app / IMG.h
1 #ifndef ORBI_IMG_H_
2 #define ORBI_IMG_H_
3
4
5 namespace orbi {
6
7 class IMG {
8
9 public:
10         explicit IMG(int flags);
11         ~IMG();
12
13         IMG(const IMG &) = delete;
14         IMG &operator =(const IMG &) = delete;
15
16 };
17
18 }
19
20 #endif