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 / contrib / include / wx / net / web.h < prev   
C/C++ Source or Header  |  2002-09-08  |  749b  |  38 lines

  1. /////////////////////////////////////////////////////////////////////////////
  2. // Name:        web.h
  3. // Purpose:     wxWeb: portable web browser-related class
  4. // Author:      Julian Smart
  5. // Modified by:
  6. // Created:     2001-08-21
  7. // RCS-ID:      $Id: web.h,v 1.2 2002/09/07 12:10:20 GD Exp $
  8. // Copyright:   (c) Julian Smart
  9. // Licence:     wxWindows licence
  10. /////////////////////////////////////////////////////////////////////////////
  11.  
  12. #if defined(__GNUG__) && !defined(__APPLE__)
  13. #pragma interface "web.h"
  14. #endif
  15.  
  16. #ifndef _WX_WEB_H_
  17. #define _WX_WEB_H_
  18.  
  19. /*
  20.  * wxWeb
  21.  * Miscellaneous web functions
  22.  */
  23.  
  24. class wxWeb
  25. {
  26. public:
  27. //// Ctor/dtor
  28.     wxWeb() {};
  29.  
  30. //// Operations
  31.  
  32. protected:
  33. };
  34.  
  35.  
  36. #endif //_WX_WEB_H_
  37.  
  38.