1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/os2/dataobj.h
3 // Purpose: declaration of the wxDataObject
4 // Author: Stefan Csomor
8 // Copyright: (c) 1998, 1999 Vadim Zeitlin, Robert Roebling
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_OS2_DATAOBJ_H_
13 #define _WX_OS2_DATAOBJ_H_
15 // ----------------------------------------------------------------------------
16 // wxDataObject is the same as wxDataObjectBase under wxGTK
17 // ----------------------------------------------------------------------------
19 class WXDLLIMPEXP_CORE wxDataObject
: public wxDataObjectBase
23 virtual ~wxDataObject();
25 virtual bool IsSupportedFormat( const wxDataFormat
& eFormat
29 return(IsSupported( eFormat
34 PDRAGITEM
GetInterface(void) const {return m_pDataObject
;}
36 PDRAGITEM m_pDataObject
;
39 #endif // _WX_OS2_DATAOBJ_H_