]> git.localhorst.tv Git - l2e.git/blob - src/sdl/InitSDL.h
f969485efd9e0aa475ea3d32dfe2e4b04bcbd6dc
[l2e.git] / src / sdl / InitSDL.h
1 #ifndef SDL_INITSDL_H_
2 #define SDL_INITSDL_H_
3
4 #include <SDL/SDL.h>
5
6
7 namespace sdl {
8
9 class InitSDL {
10
11 public:
12         explicit InitSDL(Uint32 flags = SDL_INIT_EVERYTHING);
13         virtual ~InitSDL(void);
14 private:
15         InitSDL(const InitSDL &);
16         InitSDL &operator =(const InitSDL &);
17
18 };
19
20 }
21
22 #endif /* SDL_INITSDL_H_ */