comparison include/htmlhelp.h @ 0:c174ac668e9f

First commit ! (ver2.8)
author pyon@macmini
date Tue, 05 Apr 2011 18:44:57 +0900
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:c174ac668e9f
1 // Filename : htmlhelp.h
2 // Last Change: 18-Dec-2010.
3 //
4 #ifndef HTMLHELPFRAME
5 #define HTMLHELPFRAME
6 #include "wx/wxprec.h"
7
8 #ifndef WX_PRECOMP
9 #include "wx/wx.h"
10 #include "wx/html/htmlwin.h"
11 #endif
12
13 class HtmlHelpFrame : public wxFrame
14 {
15 public:
16 HtmlHelpFrame( const wxString& title, wxWindowID id );
17 ~HtmlHelpFrame();
18
19 wxHtmlWindow *m_htmlWin;
20 };
21
22 #endif
23