1999-10-22 04:37:39 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
1999-11-09 15:24:52 +00:00
|
|
|
// Name: mac/dataobj.h
|
1999-10-22 04:37:39 +00:00
|
|
|
// Purpose: declaration of the wxDataObject
|
1999-11-09 15:24:52 +00:00
|
|
|
// Author: Stefan Csomor
|
1999-10-22 04:37:39 +00:00
|
|
|
// Modified by:
|
|
|
|
// Created: 10/21/99
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) 1998, 1999 Vadim Zeitlin, Robert Roebling
|
|
|
|
// Licence: wxWindows license
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
1999-11-09 15:24:52 +00:00
|
|
|
#ifndef _WX_MAC_DATAOBJ_H_
|
|
|
|
#define _WX_MAC_DATAOBJ_H_
|
1999-10-22 04:37:39 +00:00
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface "dataobj.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxDataObject is the same as wxDataObjectBase under wxGTK
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class wxDataObject : public wxDataObjectBase
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
wxDataObject();
|
|
|
|
|
|
|
|
virtual bool IsSupportedFormat( const wxDataFormat& format, Direction dir = Get ) const;
|
|
|
|
};
|
|
|
|
|
1999-11-09 15:24:52 +00:00
|
|
|
#endif // _WX_MAC_DATAOBJ_H_
|
1999-10-22 04:37:39 +00:00
|
|
|
|