]>
Commit | Line | Data |
---|---|---|
8cf73271 SC |
1 | /////////////////////////////////////////////////////////////////////////////// |
2 | // Name: mac/dataobj.h | |
3 | // Purpose: declaration of the wxDataObject | |
4 | // Author: Stefan Csomor (adapted from Robert Roebling's gtk port) | |
5 | // Modified by: | |
6 | // Created: 10/21/99 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) 1998, 1999 Vadim Zeitlin, Robert Roebling | |
65571936 | 9 | // Licence: wxWindows licence |
8cf73271 SC |
10 | /////////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifndef _WX_MAC_DATAOBJ_H_ | |
13 | #define _WX_MAC_DATAOBJ_H_ | |
14 | ||
8cf73271 SC |
15 | // ---------------------------------------------------------------------------- |
16 | // wxDataObject is the same as wxDataObjectBase under wxGTK | |
17 | // ---------------------------------------------------------------------------- | |
18 | ||
19 | class WXDLLEXPORT wxDataObject : public wxDataObjectBase | |
20 | { | |
21 | public: | |
22 | wxDataObject(); | |
23 | #ifdef __DARWIN__ | |
d3c7fc99 | 24 | virtual ~wxDataObject() { } |
8cf73271 SC |
25 | #endif |
26 | ||
27 | virtual bool IsSupportedFormat( const wxDataFormat& format, Direction dir = Get ) const; | |
28 | }; | |
29 | ||
30 | #endif // _WX_MAC_DATAOBJ_H_ | |
31 |