]>
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 |
8b53e5a2 RR |
7 | // Licence: wxWindows license |
8 | /////////////////////////////////////////////////////////////////////////////// | |
9 | ||
e1ee679c VZ |
10 | #ifndef _WX_GTK_DATAOBJ_H_ |
11 | #define _WX_GTK_DATAOBJ_H_ | |
8b53e5a2 RR |
12 | |
13 | #ifdef __GNUG__ | |
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(); | |
25 | ||
26 | virtual bool IsSupportedFormat( const wxDataFormat& format, Direction dir = Get ) const; | |
8b53e5a2 RR |
27 | }; |
28 | ||
e1ee679c | 29 | #endif // _WX_GTK_DATAOBJ_H_ |
8b53e5a2 | 30 |