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