]>
Commit | Line | Data |
---|---|---|
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 | // Copyright: (c) 2003 David Elliott | |
8 | // Licence: wxWindows licence | |
9 | /////////////////////////////////////////////////////////////////////////////// | |
10 | ||
11 | #ifndef __WX_COCOA_DATAOBJ_H__ | |
12 | #define __WX_COCOA_DATAOBJ_H__ | |
13 | ||
14 | class WXDLLIMPEXP_CORE wxDataObject : public wxDataObjectBase | |
15 | { | |
16 | public: | |
17 | wxDataObject(); | |
18 | virtual ~wxDataObject(); | |
19 | virtual bool IsSupportedFormat(const wxDataFormat& format, | |
20 | Direction dir = Get) const; | |
21 | }; | |
22 | ||
23 | #endif // __WX_COCOA_DATAOBJ_H__ |