view include/htmlhelp.h @ 15:168531d2c45f

Added tag v210 for changeset 5ce7757b4350
author pyon@macmini
date Fri, 01 Jul 2011 20:13:49 +0900
parents c174ac668e9f
children
line wrap: on
line source

// 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