Commit 3 of 3 for Doxygen path fixes, this one finally removes all 600+ unnecessary...
[wxWidgets.git] / interface / wx / ipcbase.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: ipcbase.h
3 // Purpose: interface of wxConnectionBase
4 // Author: wxWidgets team
5 // RCS-ID: $Id$
6 // Licence: wxWindows license
7 /////////////////////////////////////////////////////////////////////////////
8
9 enum wxIPCFormat
10 {
11 wxIPC_INVALID = 0,
12 wxIPC_TEXT = 1, ///< CF_TEXT
13 wxIPC_BITMAP = 2, ///< CF_BITMAP
14 wxIPC_METAFILE = 3, ///< CF_METAFILEPICT
15 wxIPC_SYLK = 4,
16 wxIPC_DIF = 5,
17 wxIPC_TIFF = 6,
18 wxIPC_OEMTEXT = 7, ///< CF_OEMTEXT
19 wxIPC_DIB = 8, ///< CF_DIB
20 wxIPC_PALETTE = 9,
21 wxIPC_PENDATA = 10,
22 wxIPC_RIFF = 11,
23 wxIPC_WAVE = 12,
24 wxIPC_UTF16TEXT = 13, ///< CF_UNICODE
25 wxIPC_ENHMETAFILE = 14,
26 wxIPC_FILENAME = 15, ///< CF_HDROP
27 wxIPC_LOCALE = 16,
28 wxIPC_UTF8TEXT = 17,
29 wxIPC_UTF32TEXT = 18,
30 wxIPC_UNICODETEXT = wxIPC_UTF16TEXT,
31 wxIPC_PRIVATE = 20
32 };
33
34 /**
35 @class wxConnectionBase
36
37 @todo Document this class.
38
39 This class provides base, common functionality shared between
40 wxDDEConnection, and wxTCPConnection.
41
42 @library{wxbase}
43 @category{ipc}
44
45 @see wxDDEConnection, wxTCPConnection
46 */
47 class wxConnectionBase: public wxObject
48 {
49 public:
50
51 };
52