]>
Commit | Line | Data |
---|---|---|
83df96d6 | 1 | /////////////////////////////////////////////////////////////////////////////// |
80fdcdb9 | 2 | // Name: wx/x11/dataobj.h |
83df96d6 JS |
3 | // Purpose: declaration of the wxDataObject class for Motif |
4 | // Author: Julian Smart | |
5 | // RCS-ID: $Id$ | |
9691c806 | 6 | // Copyright: (c) 1998 Robert Roebling |
65571936 | 7 | // Licence: wxWindows licence |
83df96d6 JS |
8 | /////////////////////////////////////////////////////////////////////////////// |
9 | ||
9691c806 RR |
10 | #ifndef _WX_X11_DATAOBJ_H_ |
11 | #define _WX_X11_DATAOBJ_H_ | |
83df96d6 | 12 | |
83df96d6 JS |
13 | // ---------------------------------------------------------------------------- |
14 | // wxDataObject is the same as wxDataObjectBase under wxMotif | |
15 | // ---------------------------------------------------------------------------- | |
16 | ||
968eb2ef | 17 | class WXDLLIMPEXP_CORE wxDataObject : public wxDataObjectBase |
83df96d6 JS |
18 | { |
19 | public: | |
9691c806 | 20 | wxDataObject(); |
03647350 | 21 | |
83df96d6 | 22 | #ifdef __DARWIN__ |
d3c7fc99 | 23 | virtual ~wxDataObject() { } |
83df96d6 | 24 | #endif |
9691c806 RR |
25 | |
26 | virtual bool IsSupportedFormat( const wxDataFormat& format, Direction dir = Get ) const; | |
83df96d6 JS |
27 | }; |
28 | ||
9691c806 | 29 | #endif //_WX_X11_DATAOBJ_H_ |
83df96d6 | 30 |