2001-08-21 05:11:20 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: web.h
|
|
|
|
// Purpose: wxWeb: portable web browser-related class
|
|
|
|
// Author: Julian Smart
|
|
|
|
// Modified by:
|
|
|
|
// Created: 2001-08-21
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) Julian Smart
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2002-09-07 08:28:46 -04:00
|
|
|
#if defined(__GNUG__) && !defined(__APPLE__)
|
2001-08-21 05:11:20 -04:00
|
|
|
#pragma interface "web.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef _WX_WEB_H_
|
|
|
|
#define _WX_WEB_H_
|
|
|
|
|
|
|
|
/*
|
|
|
|
* wxWeb
|
|
|
|
* Miscellaneous web functions
|
|
|
|
*/
|
|
|
|
|
|
|
|
class wxWeb
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
//// Ctor/dtor
|
|
|
|
wxWeb() {};
|
|
|
|
|
|
|
|
//// Operations
|
|
|
|
|
|
|
|
protected:
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif //_WX_WEB_H_
|
|
|
|
|