1 ///////////////////////////////////////////////////////////////////////////////
2 // Name:        wx/gtk1/dataobj.h
3 // Purpose:     declaration of the wxDataObject
4 // Author:      Robert Roebling
5 // Copyright:   (c) 1998, 1999 Vadim Zeitlin, Robert Roebling
6 // Licence:     wxWindows licence
7 ///////////////////////////////////////////////////////////////////////////////
8 
9 #ifndef _WX_GTK_DATAOBJ_H_
10 #define _WX_GTK_DATAOBJ_H_
11 
12 // ----------------------------------------------------------------------------
13 // wxDataObject is the same as wxDataObjectBase under wxGTK
14 // ----------------------------------------------------------------------------
15 
16 class WXDLLIMPEXP_CORE wxDataObject : public wxDataObjectBase
17 {
18 public:
19     wxDataObject();
20     virtual ~wxDataObject();
21 
22     virtual bool IsSupportedFormat( const wxDataFormat& format, Direction dir = Get ) const;
23 };
24 
25 #endif // _WX_GTK_DATAOBJ_H_
26 
27