]> git.saurik.com Git - wxWidgets.git/blame - include/wx/dde.h
Removed some commented-out code
[wxWidgets.git] / include / wx / dde.h
CommitLineData
34138703
JS
1#ifndef _WX_DDE_H_BASE_
2#define _WX_DDE_H_BASE_
c801d85f 3
d162a7ee
VZ
4#include "wx/list.h"
5
6class wxDDEClient;
7class wxDDEServer;
8class wxDDEConnection;
9
cca78463
RD
10WX_DECLARE_EXPORTED_LIST(wxDDEClient, wxDDEClientList);
11WX_DECLARE_EXPORTED_LIST(wxDDEServer, wxDDEServerList);
12WX_DECLARE_EXPORTED_LIST(wxDDEConnection, wxDDEConnectionList);
d162a7ee
VZ
13
14
2049ba38 15#if defined(__WXMSW__)
c801d85f 16#include "wx/msw/dde.h"
2049ba38 17#elif defined(__WXMOTIF__)
34138703 18#include "wx/motif/dde.h"
2049ba38 19#elif defined(__WXGTK__)
c801d85f 20#include "wx/gtk/dde.h"
34138703
JS
21#elif defined(__WXMAC__)
22#include "wx/mac/dde.h"
1777b9bb
DW
23#elif defined(__WXPM__)
24#include "wx/os2/dde.h"
c801d85f
KB
25#endif
26
27#endif
34138703 28 // _WX_DDE_H_BASE_