]>
Commit | Line | Data |
---|---|---|
ef6bd27b 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 | |
9 | // Licence: wxWindows license | |
10 | /////////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_MAC_DATAOBJ_H_ | |
13 | #define _WX_MAC_DATAOBJ_H_ | |
14 | ||
15 | #ifdef __GNUG__ | |
16 | #pragma interface "dataobj.h" | |
17 | #endif | |
18 | ||
19 | // ---------------------------------------------------------------------------- | |
20 | // wxDataObject is the same as wxDataObjectBase under wxGTK | |
21 | // ---------------------------------------------------------------------------- | |
22 | ||
23 | class wxDataObject : public wxDataObjectBase | |
24 | { | |
25 | public: | |
26 | wxDataObject(); | |
f11bdd03 GD |
27 | #ifdef __DARWIN__ |
28 | ~wxDataObject() { } | |
03e11df5 | 29 | #endif |
ef6bd27b SC |
30 | |
31 | virtual bool IsSupportedFormat( const wxDataFormat& format, Direction dir = Get ) const; | |
32 | }; | |
33 | ||
34 | #endif // _WX_MAC_DATAOBJ_H_ | |
35 |