dataobj.h 724 B

1234567891011121314151617181920212223
  1. ///////////////////////////////////////////////////////////////////////////////
  2. // Name: wx/cocoa/dataobj.h
  3. // Purpose: declaration of the wxDataObject
  4. // Author: David Elliott <dfe@cox.net>
  5. // Modified by:
  6. // Created: 2003/07/23
  7. // Copyright: (c) 2003 David Elliott
  8. // Licence: wxWindows licence
  9. ///////////////////////////////////////////////////////////////////////////////
  10. #ifndef __WX_COCOA_DATAOBJ_H__
  11. #define __WX_COCOA_DATAOBJ_H__
  12. class WXDLLIMPEXP_CORE wxDataObject : public wxDataObjectBase
  13. {
  14. public:
  15. wxDataObject();
  16. virtual ~wxDataObject();
  17. virtual bool IsSupportedFormat(const wxDataFormat& format,
  18. Direction dir = Get) const;
  19. };
  20. #endif // __WX_COCOA_DATAOBJ_H__