]> git.saurik.com Git - wxWidgets.git/commitdiff
Fix linking problems with MSVC 5.
authorMattia Barbon <mbarbon@cpan.org>
Sat, 11 Jan 2003 20:57:16 +0000 (20:57 +0000)
committerMattia Barbon <mbarbon@cpan.org>
Sat, 11 Jan 2003 20:57:16 +0000 (20:57 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@18687 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/socket.h

index d52e1334737af4b65bbb6177176d23ec5934b34c..df328666653d39842e4b142fc1935c50b79e8797 100644 (file)
@@ -281,6 +281,8 @@ public:
   bool AcceptWith(wxSocketBase& socket, bool wait = TRUE);
 
   bool WaitForAccept(long seconds = -1, long milliseconds = 0);
   bool AcceptWith(wxSocketBase& socket, bool wait = TRUE);
 
   bool WaitForAccept(long seconds = -1, long milliseconds = 0);
+
+  DECLARE_NO_COPY_CLASS(wxSocketServer)
 };
 
 
 };
 
 
@@ -299,6 +301,8 @@ public:
   virtual bool Connect(wxSockAddress& addr, bool wait = TRUE);
 
   bool WaitOnConnect(long seconds = -1, long milliseconds = 0);
   virtual bool Connect(wxSockAddress& addr, bool wait = TRUE);
 
   bool WaitOnConnect(long seconds = -1, long milliseconds = 0);
+
+  DECLARE_NO_COPY_CLASS(wxSocketClient)
 };
 
 
 };
 
 
@@ -325,6 +329,7 @@ public:
 /* TODO:
   bool Connect(wxSockAddress& addr);
 */
 /* TODO:
   bool Connect(wxSockAddress& addr);
 */
+  DECLARE_NO_COPY_CLASS(wxDatagramSocket)
 };
 
 
 };