00001 00009 #include <wx/wx.h> 00010 #include <wx/image.h> 00011 #include "vuMainWindow.h" 00012 00013 //---------------------------------------------------------------------------- 00014 //------------------------- The wxApp application class ---------------------- 00015 //---------------------------------------------------------------------------- 00016 00018 00026 // Define a new application type 00027 class vuGUI : public wxApp 00028 { 00029 public: 00031 00032 bool OnInit(); 00033 00034 private: 00036 vuMainWindow *m_Main; 00037 }; 00038