#ifndef _WX_SCKIPC_H
#define _WX_SCKIPC_H
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(__APPLE__)
#pragma interface "sckipc.h"
#endif
DECLARE_DYNAMIC_CLASS(wxTCPConnection)
public:
- wxTCPConnection(char *buffer, int size);
+ wxTCPConnection(wxChar *buffer, int size);
wxTCPConnection();
virtual ~wxTCPConnection();
protected:
wxSocketServer *m_server;
+
+#ifdef __UNIX_LIKE__
+ // the name of the file associated to the Unix domain socket, may be empty
+ wxString m_filename;
+#endif // __UNIX_LIKE__
};
class wxTCPClient: public wxClientBase