* *
* $Id$
*******************************************************************/
-#ifndef WXXHELPHTML_H
-#define WXXHELPHTML_H
+
+#ifndef __WX_HELPHTML_H_
+#define __WX_HELPHTML_H_
#if wxUSE_HELP
/// Character introducing comments/documentation field in map file.
#define WXEXTHELP_COMMENTCHAR ';'
-class wxExtHelpMapList;
+class WXDLLEXPORT wxExtHelpMapList;
/**
Lines starting with ';' will be ignored.
*/
-class wxHTMLHelpControllerBase : public wxHelpControllerBase
-{
+class WXDLLEXPORT wxHTMLHelpControllerBase : public wxHelpControllerBase
+{
DECLARE_ABSTRACT_CLASS(wxHTMLHelpControllerBase)
public:
wxHTMLHelpControllerBase(void);
*/
virtual bool Initialize(const wxString& dir, int WXUNUSED(server))
{ return Initialize(dir); }
-
+
/** This must be called to tell the controller where to find the
documentation.
If a locale is set, look in file/localename, i.e.
@return true on success
*/
virtual bool Initialize(const wxString& dir);
-
+
/** If file is "", reloads file given in Initialize.
@file Name of help directory.
@return true on success
void DeleteList(void);
};
-#endif
-#endif
+#endif // wxUSE_HELP
+
+#endif // __WX_HELPHTML_H_