00001 00002 #ifndef __SDL_APP_HPP__ 00003 #define __SDL_APP_HPP__ 00004 00005 #include "mainFrame.hpp" 00006 00007 //L'application 00008 class SDLApp : public wxApp { 00009 DECLARE_CLASS(SDLApp) 00010 00011 private: 00012 mainFrame *frame; 00013 00014 public: 00015 bool OnInit(); 00016 int OnRun(); 00017 int OnExit(); 00018 }; 00019 00020 #endif // __SDL_APP_HPP__