home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / wxos2233.zip / wxOS2-2_3_3.zip / wxWindows-2.3.3 / src / common / helpbase.cpp < prev    next >
C/C++ Source or Header  |  2001-07-03  |  835b  |  34 lines

  1. /////////////////////////////////////////////////////////////////////////////
  2. // Name:        helpbase.cpp
  3. // Purpose:     Help system base classes
  4. // Author:      Julian Smart
  5. // Modified by:
  6. // Created:     04/01/98
  7. // RCS-ID:      $Id: helpbase.cpp,v 1.10 2001/07/03 19:38:09 VZ Exp $
  8. // Copyright:   (c) Julian Smart and Markus Holzem
  9. // Licence:       wxWindows license
  10. /////////////////////////////////////////////////////////////////////////////
  11.  
  12. #ifdef __GNUG__
  13. #pragma implementation "helpbase.h"
  14. #endif
  15.  
  16. // For compilers that support precompilation, includes "wx.h".
  17. #include "wx/wxprec.h"
  18.  
  19. #ifdef __BORLANDC__
  20. #pragma hdrstop
  21. #endif
  22.  
  23. #ifndef WX_PRECOMP
  24. #include "wx/defs.h"
  25. #endif
  26.  
  27. #if wxUSE_HELP
  28.  
  29. #include "wx/helpbase.h"
  30.  
  31. IMPLEMENT_CLASS(wxHelpControllerBase, wxObject)
  32.  
  33. #endif // wxUSE_HELP
  34.