dataobj.h 917 B

1234567891011121314151617181920212223242526272829
  1. ///////////////////////////////////////////////////////////////////////////////
  2. // Name: wx/x11/dataobj.h
  3. // Purpose: declaration of the wxDataObject class for Motif
  4. // Author: Julian Smart
  5. // Copyright: (c) 1998 Robert Roebling
  6. // Licence: wxWindows licence
  7. ///////////////////////////////////////////////////////////////////////////////
  8. #ifndef _WX_X11_DATAOBJ_H_
  9. #define _WX_X11_DATAOBJ_H_
  10. // ----------------------------------------------------------------------------
  11. // wxDataObject is the same as wxDataObjectBase under wxMotif
  12. // ----------------------------------------------------------------------------
  13. class WXDLLIMPEXP_CORE wxDataObject : public wxDataObjectBase
  14. {
  15. public:
  16. wxDataObject();
  17. #ifdef __DARWIN__
  18. virtual ~wxDataObject() { }
  19. #endif
  20. virtual bool IsSupportedFormat( const wxDataFormat& format, Direction dir = Get ) const;
  21. };
  22. #endif //_WX_X11_DATAOBJ_H_