]>
Commit | Line | Data |
---|---|---|
977ea6b6 DE |
1 | /////////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/cocoa/dataobj.h | |
3 | // Purpose: declaration of the wxDataObject | |
4 | // Author: David Elliott <dfe@cox.net> | |
5 | // Modified by: | |
6 | // Created: 2003/07/23 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) 2003 David Elliott | |
65571936 | 9 | // Licence: wxWindows licence |
977ea6b6 DE |
10 | /////////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifndef __WX_COCOA_DATAOBJ_H__ | |
13 | #define __WX_COCOA_DATAOBJ_H__ | |
14 | ||
15 | class wxDataObject : public wxDataObjectBase | |
16 | { | |
17 | public: | |
18 | wxDataObject(); | |
19 | virtual ~wxDataObject(); | |
20 | virtual bool IsSupportedFormat(const wxDataFormat& format, | |
21 | Direction dir = Get) const; | |
22 | }; | |
23 | ||
24 | #endif // __WX_COCOA_DATAOBJ_H__ |