]> git.localhorst.tv Git - sdl-test7.git/blob - src/sdl/InitSDL.h
imported current version
[sdl-test7.git] / src / sdl / InitSDL.h
1 /*
2  * InitSDL.h
3  *
4  *  Created on: Apr 22, 2012
5  *      Author: holy
6  */
7
8 #ifndef SDL_INITSDL_H_
9 #define SDL_INITSDL_H_
10
11 #include <SDL/SDL.h>
12
13
14 namespace sdl {
15
16 class InitSDL {
17
18         public:
19                 explicit InitSDL(Uint32 flags = SDL_INIT_EVERYTHING);
20                 virtual ~InitSDL(void);
21         private:
22                 InitSDL(const InitSDL &);
23                 InitSDL &operator =(const InitSDL &);
24
25 };
26
27 }
28
29 #endif /* SDL_INITSDL_H_ */