diff options
author | s_nakamoto <s_nakamoto@1a98c847-1fd6-4fd8-948a-caf3550aa51b> | 2010-02-10 19:33:04 +0000 |
---|---|---|
committer | s_nakamoto <s_nakamoto@1a98c847-1fd6-4fd8-948a-caf3550aa51b> | 2010-02-10 19:33:04 +0000 |
commit | 1c5d5e58c67e63fd83afd945c7db1190de62514a (patch) | |
tree | 3220aa303c10ebbcef8520e38a1010f6a7972586 /ipc.h | |
parent | a43c00c56944ca69dcf319cd85754dc0fb1f2260 (diff) |
revert revision 56, going in different direction with boost::asio and JSON-RPC
Diffstat (limited to 'ipc.h')
-rw-r--r-- | ipc.h | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/ipc.h b/ipc.h deleted file mode 100644 index 777d31b2b7..0000000000 --- a/ipc.h +++ /dev/null @@ -1,28 +0,0 @@ -#ifndef _IPC_H -#define _IPC_H - -class CServer : public wxServer { -public: - wxConnectionBase * OnAcceptConnection (const wxString &topic); -}; - -class CClient : public wxClient { -public: - wxConnectionBase * OnMakeConnection (); -}; - -class CServerConnection : public wxConnection { -public: - const void * OnRequest (const wxString &topic, const wxString &item, size_t *size, wxIPCFormat format); -}; - -class CClientConnection : public wxConnection { -public: - CClientConnection() : wxConnection() {} - ~CClientConnection() {} - - bool OnAdvise (const wxString &topic, const wxString &item, const void *data, size_t size, wxIPCFormat format); -}; - -#endif /* _IPC_H */ - |