sdlBase.h
Go to the documentation of this file.00001 #ifndef SDL_BASE_H
00002 #define SDL_BASE_H
00003
00013 #include <exception>
00014
00015
00019 class SDL_Base {
00020 static bool initialized;
00021 void sdl_initialize(void);
00022
00023 protected:
00024 SDL_Base(void);
00025 virtual ~SDL_Base(void);
00026 };
00027
00028
00032 class SDL_Exception : public std::exception {
00033 public:
00034 SDL_Exception(void) {}
00035 virtual ~SDL_Exception(void) throw () {}
00036
00040 virtual const char* what(void) const throw();
00041 };
00042
00043 #endif
00044