X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/85ac091e8f73699af40dff1f26f53fafd5d95178..0f8df1b95c1dc5cc633fb2fd1127bd28028896f7:/include/wx/sckipc.h diff --git a/include/wx/sckipc.h b/include/wx/sckipc.h index 6f5e695f02..603eef900c 100644 --- a/include/wx/sckipc.h +++ b/include/wx/sckipc.h @@ -4,6 +4,7 @@ // Author: Julian Smart // Modified by: Guilhem Lavaux (big rewrite) May 1997, 1998 // Guillermo Rodriguez (updated for wxSocket v2) Jan 2000 +// (callbacks deprecated) Mar 2000 // Created: 1993 // RCS-ID: $Id$ // Copyright: (c) Julian Smart 1993 @@ -20,7 +21,9 @@ #endif #include "wx/defs.h" -#include "wx/setup.h" + +#if wxUSE_SOCKETS && wxUSE_IPC + #include "wx/ipcbase.h" #include "wx/socket.h" #include "wx/sckstrm.h" @@ -89,12 +92,14 @@ protected: friend class wxTCPServer; friend class wxTCPClient; - friend void Client_OnRequest(wxSocketBase&, - wxSocketNotify, char *); - friend void Server_OnRequest(wxSocketServer&, - wxSocketNotify, char *); + friend class wxTCPEventHandler; private: + // + // We're hiding an Execute method in ConnectionBase + // + virtual bool Execute(const wxString& str) + { return Execute(str, -1, wxIPC_TEXT); } }; class wxTCPServer: public wxServerBase @@ -131,4 +136,6 @@ public: virtual wxConnectionBase *OnMakeConnection(); }; -#endif // ipcsock.h +#endif // wxUSE_SOCKETS && wxUSE_IPC + +#endif // _WX_SCKIPC_H