wxMessageBox off the main thread lost result code.
[wxWidgets.git] / include / wx / x11 / dataobj.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/x11/dataobj.h
3 // Purpose: declaration of the wxDataObject class for Motif
4 // Author: Julian Smart
5 // Copyright: (c) 1998 Robert Roebling
6 // Licence: wxWindows licence
7 ///////////////////////////////////////////////////////////////////////////////
8
9 #ifndef _WX_X11_DATAOBJ_H_
10 #define _WX_X11_DATAOBJ_H_
11
12 // ----------------------------------------------------------------------------
13 // wxDataObject is the same as wxDataObjectBase under wxMotif
14 // ----------------------------------------------------------------------------
15
16 class WXDLLIMPEXP_CORE wxDataObject : public wxDataObjectBase
17 {
18 public:
19 wxDataObject();
20
21 #ifdef __DARWIN__
22 virtual ~wxDataObject() { }
23 #endif
24
25 virtual bool IsSupportedFormat( const wxDataFormat& format, Direction dir = Get ) const;
26 };
27
28 #endif //_WX_X11_DATAOBJ_H_
29