removed warnings about using the deprecated functions and replaced untyped
[wxWidgets.git] / include / wx / dde.h
1 #ifndef _WX_DDE_H_BASE_
2 #define _WX_DDE_H_BASE_
3
4 #include "wx/list.h"
5
6 class wxDDEClient;
7 class wxDDEServer;
8 class wxDDEConnection;
9
10 WX_DECLARE_LIST(wxDDEClient, wxDDEClientList);
11 WX_DECLARE_LIST(wxDDEServer, wxDDEServerList);
12 WX_DECLARE_LIST(wxDDEConnection, wxDDEConnectionList);
13
14
15 #if defined(__WXMSW__)
16 #include "wx/msw/dde.h"
17 #elif defined(__WXMOTIF__)
18 #include "wx/motif/dde.h"
19 #elif defined(__WXGTK__)
20 #include "wx/gtk/dde.h"
21 #elif defined(__WXMAC__)
22 #include "wx/mac/dde.h"
23 #elif defined(__WXPM__)
24 #include "wx/os2/dde.h"
25 #endif
26
27 #endif
28 // _WX_DDE_H_BASE_