]>
Commit | Line | Data |
---|---|---|
8b53e5a2 | 1 | /////////////////////////////////////////////////////////////////////////////// |
e1ee679c VZ |
2 | // Name: gtk/dataobj.h |
3 | // Purpose: declaration of the wxDataObject | |
8b53e5a2 RR |
4 | // Author: Robert Roebling |
5 | // RCS-ID: $Id$ | |
e1ee679c | 6 | // Copyright: (c) 1998, 1999 Vadim Zeitlin, Robert Roebling |
65571936 | 7 | // Licence: wxWindows licence |
8b53e5a2 RR |
8 | /////////////////////////////////////////////////////////////////////////////// |
9 | ||
e1ee679c VZ |
10 | #ifndef _WX_GTK_DATAOBJ_H_ |
11 | #define _WX_GTK_DATAOBJ_H_ | |
8b53e5a2 | 12 | |
12028905 | 13 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
e1ee679c | 14 | #pragma interface "dataobj.h" |
8b53e5a2 RR |
15 | #endif |
16 | ||
e1ee679c VZ |
17 | // ---------------------------------------------------------------------------- |
18 | // wxDataObject is the same as wxDataObjectBase under wxGTK | |
19 | // ---------------------------------------------------------------------------- | |
8b53e5a2 | 20 | |
e1ee679c | 21 | class wxDataObject : public wxDataObjectBase |
0d2a2b60 | 22 | { |
b068c4e8 RR |
23 | public: |
24 | wxDataObject(); | |
2b5f62a0 VZ |
25 | virtual ~wxDataObject(); |
26 | ||
b068c4e8 | 27 | virtual bool IsSupportedFormat( const wxDataFormat& format, Direction dir = Get ) const; |
8b53e5a2 RR |
28 | }; |
29 | ||
e1ee679c | 30 | #endif // _WX_GTK_DATAOBJ_H_ |
8b53e5a2 | 31 |