Remove all lines containing cvs/svn "$Id$" keyword.
[wxWidgets.git] / include / wx / dde.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/dde.h
3 // Purpose: DDE base header
4 // Author: Julian Smart
5 // Modified by:
6 // Created:
7 // Copyright: (c) Julian Smart
8 // Licence: wxWindows Licence
9 /////////////////////////////////////////////////////////////////////////////
10
11 #ifndef _WX_DDE_H_BASE_
12 #define _WX_DDE_H_BASE_
13
14 #include "wx/list.h"
15
16 class WXDLLIMPEXP_FWD_BASE wxDDEClient;
17 class WXDLLIMPEXP_FWD_BASE wxDDEServer;
18 class WXDLLIMPEXP_FWD_BASE wxDDEConnection;
19
20 WX_DECLARE_USER_EXPORTED_LIST(wxDDEClient, wxDDEClientList, WXDLLIMPEXP_BASE);
21 WX_DECLARE_USER_EXPORTED_LIST(wxDDEServer, wxDDEServerList, WXDLLIMPEXP_BASE);
22 WX_DECLARE_USER_EXPORTED_LIST(wxDDEConnection, wxDDEConnectionList, WXDLLIMPEXP_BASE);
23
24 #if defined(__WINDOWS__)
25 #include "wx/msw/dde.h"
26 #else
27 #error DDE is only supported under Windows
28 #endif
29
30 #endif
31 // _WX_DDE_H_BASE_