--- wxCpuThrottle/src/wxcputhrottleframe.h 2007/08/09 17:14:40 21 +++ wxCpuThrottle/src/wxcputhrottleframe.h 2007/08/09 20:57:19 24 @@ -18,13 +18,17 @@ * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ +#ifndef WXCPUTHROTTLEFRAME_H +#define WXCPUTHROTTLEFRAME_H + #include #include "trayicon.h" +#include "acpiparser.h" class wxCpuThrottleFrame : public wxDialog { public: - wxCpuThrottleFrame( const wxString& title, const wxPoint& pos, const wxSize& size ); + wxCpuThrottleFrame(); void OnQuit( wxCommandEvent& event ); void OnAbout( wxCommandEvent& event ); void OnClose( wxCloseEvent& event ); @@ -33,5 +37,9 @@ wxIcon mIcon; TrayIcon* mTrayIcon; + AcpiParser mParser; + DECLARE_EVENT_TABLE() }; + +#endif