]> git.saurik.com Git - wxWidgets.git/blame - interface/wx/ipcbase.h
Remove never implemented wxDateTime::IsGregorianDate().
[wxWidgets.git] / interface / wx / ipcbase.h
CommitLineData
1db8f1dc
BP
1/////////////////////////////////////////////////////////////////////////////
2// Name: ipcbase.h
3// Purpose: interface of wxConnectionBase
4// Author: wxWidgets team
526954c5 5// Licence: wxWindows licence
1db8f1dc
BP
6/////////////////////////////////////////////////////////////////////////////
7
89bb3f02
FM
8/**
9 An enumeration for formats .
10*/
1db8f1dc
BP
11enum 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
1db8f1dc
BP
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*/
49class wxConnectionBase: public wxObject
50{
51public:
52
53};
54