// Licence: wxWindows license
/////////////////////////////////////////////////////////////////////////////
-#ifndef __HELPBASEH__
-#define __HELPBASEH__
+#ifndef _WX_HELPBASEH__
+#define _WX_HELPBASEH__
#ifdef __GNUG__
#pragma interface "helpbase.h"
// Must call this to set the filename and server name.
// server is only required when implementing TCP/IP-based
// help controllers.
- virtual bool Initialize(const wxString& file, int server = -1) = 0;
+ virtual bool Initialize(const wxString& file, int server) { return FALSE; };
+ virtual bool Initialize(const wxString& file) = 0;
// If file is "", reloads file given in Initialize
virtual bool LoadFile(const wxString& file = "") = 0;
#endif // USE_HELP
#endif
- // __HELPBASEH__
+ // _WX_HELPBASEH__