#ifndef _WXCPUTHROTTLE_H_ #define _WXCPUTHROTTLE_H_ /** * @short Application Main Window * @author Torben Nielsen * @version 0.1 */ class wxCpuThrottleapp : public wxApp { public: virtual bool OnInit(); }; class wxCpuThrottleFrame : public wxFrame { public: wxCpuThrottleFrame( const wxString& title, const wxPoint& pos, const wxSize& size ); void OnQuit( wxCommandEvent& event ); void OnAbout( wxCommandEvent& event ); private: DECLARE_EVENT_TABLE() }; enum { Menu_File_Quit = 100, Menu_File_About }; #endif // _WXCPUTHROTTLE_H_