]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/sckipc.h
many ifacecheck automatic fixes + some access-specifier manual fix
[wxWidgets.git] / interface / wx / sckipc.h
index 0ec3ce061e9a9da30098ce7daacdd9586c408219..6da6f56e4e3035f764c975c9532bdbb58b12b6ba 100644 (file)
@@ -8,7 +8,6 @@
 
 /**
     @class wxTCPServer
-    @wxheader{sckipc.h}
 
     A wxTCPServer object represents the server part of a client-server conversation.
     It emulates a DDE-style protocol, but uses TCP/IP which is available on most
@@ -35,7 +34,7 @@ public:
         number. @false is returned if the call failed (for example, the port
         number is already in use).
     */
-    bool Create(const wxString& service);
+    virtual bool Create(const wxString& service);
 
     /**
         When a client calls @b MakeConnection, the server receives the
@@ -53,7 +52,6 @@ public:
 
 /**
     @class wxTCPClient
-    @wxheader{sckipc.h}
 
     A wxTCPClient object represents the client part of a client-server conversation.
     It emulates a DDE-style protocol, but uses TCP/IP which is available on most
@@ -91,9 +89,9 @@ public:
         the OnMakeConnection() member to return your own
         derived connection object.
     */
-    wxConnectionBase* MakeConnection(const wxString& host,
-                                     const wxString& service,
-                                     const wxString& topic);
+    virtual wxConnectionBase* MakeConnection(const wxString& host,
+                                             const wxString& service,
+                                             const wxString& topic);
 
     /**
         The type of wxTCPConnection returned from a MakeConnection() call can
@@ -105,19 +103,18 @@ public:
         as wxTCPConnection::OnAdvise. You may also want to
         store application-specific data in instances of the new class.
     */
-    wxConnectionBase* OnMakeConnection();
+    virtual wxConnectionBase* OnMakeConnection();
 
     /**
         Returns @true if this is a valid host name, @false otherwise.
     */
-    bool ValidHost(const wxString& host);
+    virtual bool ValidHost(const wxString& host);
 };
 
 
 
 /**
     @class wxTCPConnection
-    @wxheader{sckipc.h}
 
     A wxTCPClient object represents the connection between a client and a server.
     It emulates a DDE-style protocol, but uses TCP/IP which is available on most
@@ -185,7 +182,7 @@ public:
         side of the connection having called @b Disconnect. Returns @true if
         successful.
     */
-    bool Disconnect();
+    virtual bool Disconnect();
 
     //@{
     /**
@@ -294,13 +291,13 @@ public:
         member to be called. Returns @true if the server okays it, @false
         otherwise.
     */
-    bool StartAdvise(const wxString& item);
+    virtual bool StartAdvise(const wxString& item);
 
     /**
         Called by the client application to ask if an advise loop can be
         stopped. Causes the server connection's OnStopAdvise() member
         to be called. Returns @true if the server okays it, @false otherwise.
     */
-    bool StopAdvise(const wxString& item);
+    virtual bool StopAdvise(const wxString& item);
 };