1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/os2/dataobj.h
3 // Purpose: declaration of the wxDataObject
4 // Author: Stefan Csomor
7 // Copyright: (c) 1998, 1999 Vadim Zeitlin, Robert Roebling
8 // Licence: wxWindows licence
9 ///////////////////////////////////////////////////////////////////////////////
11 #ifndef _WX_OS2_DATAOBJ_H_
12 #define _WX_OS2_DATAOBJ_H_
14 // ----------------------------------------------------------------------------
15 // wxDataObject is the same as wxDataObjectBase under wxGTK
16 // ----------------------------------------------------------------------------
18 class WXDLLIMPEXP_CORE wxDataObject
: public wxDataObjectBase
22 virtual ~wxDataObject();
24 virtual bool IsSupportedFormat( const wxDataFormat
& eFormat
28 return(IsSupported( eFormat
33 PDRAGITEM
GetInterface(void) const {return m_pDataObject
;}
35 PDRAGITEM m_pDataObject
;
38 #endif // _WX_OS2_DATAOBJ_H_