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