+private:
+ wxHtmlHelpController* m_helpController;
+
+#if hvUSE_IPC
+ wxList m_connections;
+ hvServer* m_server;
+#endif
+
+};
+
+#if hvUSE_IPC
+class hvConnection : public wxConnection
+{
+public:
+ hvConnection();
+ ~hvConnection();
+
+ bool OnExecute(const wxString& topic, wxChar*data, int size, wxIPCFormat format);
+ wxChar *OnRequest(const wxString& topic, const wxString& item, int *size, wxIPCFormat format);
+ bool OnPoke(const wxString& topic, const wxString& item, wxChar *data, int size, wxIPCFormat format);
+ bool OnStartAdvise(const wxString& topic, const wxString& item);
+
+private: