]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/cocoa/dataobj.h
Added wxClipboard and wxDataObject (and friends) declarations and stubs
[wxWidgets.git] / include / wx / cocoa / dataobj.h
diff --git a/include/wx/cocoa/dataobj.h b/include/wx/cocoa/dataobj.h
new file mode 100644 (file)
index 0000000..666d24a
--- /dev/null
@@ -0,0 +1,24 @@
+///////////////////////////////////////////////////////////////////////////////
+// Name:        wx/cocoa/dataobj.h
+// Purpose:     declaration of the wxDataObject
+// Author:      David Elliott <dfe@cox.net>
+// Modified by:
+// Created:     2003/07/23
+// RCS-ID:      $Id$
+// Copyright:   (c) 2003 David Elliott
+// Licence:     wxWindows licence
+///////////////////////////////////////////////////////////////////////////////
+
+#ifndef __WX_COCOA_DATAOBJ_H__
+#define __WX_COCOA_DATAOBJ_H__
+
+class wxDataObject : public wxDataObjectBase
+{
+public:
+    wxDataObject();
+    virtual ~wxDataObject();
+    virtual bool IsSupportedFormat(const wxDataFormat& format,
+        Direction dir = Get) const;
+};
+
+#endif // __WX_COCOA_DATAOBJ_H__