added wxUSE_PROTOCOL[_XXX] and wxUSE_URL settings

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13250 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2001-12-30 22:27:24 +00:00
parent aaf46fd6fc
commit a5d46b7362
14 changed files with 327 additions and 124 deletions

View File

@@ -16,13 +16,14 @@
#pragma interface
#endif
// wxWindows header
#include "wx/object.h"
#include "wx/defs.h"
// wxSocket headers
#if wxUSE_URL
#include "wx/object.h"
#include "wx/protocol/protocol.h"
#if wxUSE_SOCKETS
#if wxUSE_PROTOCOL_HTTP
#include "wx/protocol/http.h"
#endif
@@ -35,7 +36,7 @@ typedef enum {
wxURL_CONNERR,
wxURL_PROTOERR
} wxURLError;
class WXDLLEXPORT wxURL : public wxObject
{
public:
@@ -97,4 +98,7 @@ private:
DECLARE_DYNAMIC_CLASS(wxURL)
};
#endif
#endif // wxUSE_URL
#endif // _WX_URL_H