00001 #ifndef QRK_SDL_JOYSTICK_INIT_H 00002 #define QRK_SDL_JOYSTICK_INIT_H 00003 00013 #include <memory> 00014 00015 00016 namespace qrk 00017 { 00021 class SdlJoystickInit { 00022 protected: 00023 SdlJoystickInit(void); 00024 ~SdlJoystickInit(void); 00025 00026 private: 00027 SdlJoystickInit(const SdlJoystickInit& rhs); 00028 SdlJoystickInit& operator = (const SdlJoystickInit& rhs); 00029 00030 struct pImpl; 00031 const std::auto_ptr<pImpl> pimpl; 00032 }; 00033 } 00034 00035 #endif /* !SDL_JOYSTICK_INIT_H */
1.7.6.1-20120122