]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/protocol/protocol.h
oops... extra #endif removed
[wxWidgets.git] / include / wx / protocol / protocol.h
index c3773a750d549ed970596433afca0ab230b493ee..48bf1996af17d66332b2cb5a8d0189875b62eefc 100644 (file)
 #pragma interface
 #endif
 
+#include "wx/defs.h"
+
+
 #include "wx/object.h"
 #include "wx/string.h"
 #include "wx/stream.h"
+
+#if wxUSE_SOCKETS
 #include "wx/socket.h"
+#endif
 
 typedef enum {
  wxPROTO_NOERR = 0,
@@ -30,7 +36,7 @@ typedef enum {
  wxPROTO_NOFILE,
  wxPROTO_ABRT,
  wxPROTO_RCNCT,
- wxPROTO_STREAMING 
+ wxPROTO_STREAMING
 } wxProtocolError;
 
 // For protocols
@@ -53,27 +59,36 @@ protected:
 
   friend class wxURL;
 public:
-  wxProtoInfo(const char *name, const char *serv_name, const bool need_host1,
+  wxProtoInfo(const wxChar *name, const wxChar *serv_name, const bool need_host1,
               wxClassInfo *info);
 };
 
-class WXDLLEXPORT wxProtocol : public wxSocketClient {
+class WXDLLEXPORT wxProtocol
+#if wxUSE_SOCKETS
+ : public wxSocketClient {
+#else
+ : public wxObject {
+#endif
   DECLARE_ABSTRACT_CLASS(wxProtocol)
 public:
   wxProtocol();
 
+#if wxUSE_SOCKETS
   bool Reconnect();
-  virtual bool Connect(const wxString& host) { return FALSE; } 
-  virtual bool Connect(wxSockAddress& addr) { return wxSocketClient::Connect(addr); }
+  virtual bool Connect( const wxString& WXUNUSED(host) ) { return FALSE; }
+  virtual bool Connect( wxSockAddress& addr, bool WXUNUSED(wait) = TRUE) { return wxSocketClient::Connect(addr); }
+#endif
 
   virtual bool Abort() = 0;
   virtual wxInputStream *GetInputStream(const wxString& path) = 0;
   virtual wxProtocolError GetError() = 0;
-  virtual wxString GetContentType() { return (char *)NULL; }
-  virtual void SetUser(const wxString& user) {}
-  virtual void SetPassword(const wxString& passwd) {}
+  virtual wxString GetContentType() { return wxEmptyString; }
+  virtual void SetUser(const wxString& WXUNUSED(user)) {}
+  virtual void SetPassword(const wxString& WXUNUSED(passwd) ) {}
 };
 
+#if wxUSE_SOCKETS
 wxProtocolError WXDLLEXPORT GetLine(wxSocketBase *sock, wxString& result);
-
 #endif
+
+#endif // _WX_PROTOCOL_PROTOCOL_H