]> git.saurik.com Git - wxWidgets.git/blob - include/wx/motif/dataobj.h
wxMessageBox off the main thread lost result code.
[wxWidgets.git] / include / wx / motif / dataobj.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/motif/dataobj.h
3 // Purpose: declaration of the wxDataObject class for Motif
4 // Author: Julian Smart
5 // Copyright: (c) 1998 Julian Smart
6 // Licence: wxWindows licence
7 ///////////////////////////////////////////////////////////////////////////////
8
9 #ifndef _WX_MOTIF_DATAOBJ_H_
10 #define _WX_MOTIF_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 virtual ~wxDataObject();
20 };
21
22 #endif //_WX_MOTIF_DATAOBJ_H_
23