-class wxDataObject: public wxObject
-{
-public:
-
- wxDataObject() {};
- ~wxDataObject() {};
-
- virtual wxDataFormat GetPreferredFormat() const = 0;
- virtual bool IsSupportedFormat( wxDataFormat format ) const = 0;
- virtual size_t GetDataSize() const = 0;
- virtual void GetDataHere( void *data ) const = 0;
-
-};
-
-// ----------------------------------------------------------------------------
-// wxTextDataObject is a specialization of wxDataObject for text data
-// ----------------------------------------------------------------------------
-
-class wxTextDataObject : public wxDataObject