diff include/htmlhelp.h @ 0:c174ac668e9f

First commit ! (ver2.8)
author pyon@macmini
date Tue, 05 Apr 2011 18:44:57 +0900
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/include/htmlhelp.h	Tue Apr 05 18:44:57 2011 +0900
@@ -0,0 +1,23 @@
+// Filename   : htmlhelp.h
+// Last Change: 18-Dec-2010.
+//
+#ifndef HTMLHELPFRAME
+#define HTMLHELPFRAME
+#include "wx/wxprec.h"
+ 
+#ifndef WX_PRECOMP
+    #include "wx/wx.h"
+    #include "wx/html/htmlwin.h"
+#endif
+
+class HtmlHelpFrame : public wxFrame
+{
+public:
+    HtmlHelpFrame( const wxString& title, wxWindowID id );
+    ~HtmlHelpFrame();
+
+	wxHtmlWindow *m_htmlWin;
+};
+
+#endif
+