+#if wxUSE_IPC
+class hvConnection : public wxConnection
+{
+public:
+ hvConnection();
+ virtual ~hvConnection();
+
+ bool OnExec(const wxString& topic, const wxString& data);
+ bool OnPoke(const wxString& topic, const wxString& item,
+ const void *data, size_t size, wxIPCFormat format);
+
+private:
+};
+
+class hvServer: public wxServer
+{
+public:
+ wxConnectionBase *OnAcceptConnection(const wxString& topic);
+};
+
+
+#endif
+