void SetAutoDelete();
// return TRUE if we support this format in "Get" direction
- bool IsSupportedFormat(const wxDataFormat& format) const;
+ bool IsSupportedFormat(const wxDataFormat& format) const
+ { return wxDataObjectBase::IsSupported(format, Get); }
+#ifdef __WXDEBUG__
// function to return symbolic name of clipboard format (for debug messages)
static const char *GetFormatName(wxDataFormat format);
+ #define wxGetFormatName(format) wxDataObject::GetFormatName(format)
+#else // !Debug
+ #define wxGetFormatName(format) ""
+#endif // Debug/!Debug
+
private:
IDataObject *m_pIDataObject; // pointer to the COM interface
};