]> git.saurik.com Git - wxWidgets.git/blame - interface/ipcbase.h
Minor doc corrections for [q-r] in ticket #9581 (most of the patch was applied alread...
[wxWidgets.git] / interface / ipcbase.h
CommitLineData
1db8f1dc
BP
1/////////////////////////////////////////////////////////////////////////////
2// Name: ipcbase.h
3// Purpose: interface of wxConnectionBase
4// Author: wxWidgets team
5// RCS-ID: $Id$
6// Licence: wxWindows license
7/////////////////////////////////////////////////////////////////////////////
8
9enum 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 @wxheader{ipcbase.h}
37
38 @todo Document this class.
39
40 This class provides base, common functionality shared between
41 wxDDEConnection, and wxTCPConnection.
42
43 @library{wxbase}
44 @category{ipc}
45
46 @see wxDDEConnection, wxTCPConnection
47*/
48class wxConnectionBase: public wxObject
49{
50public:
51
52};
53