]> git.saurik.com Git - wxWidgets.git/blame - include/wx/x11/dataobj.h
dirty hack to fix deprecation warning when building wxMotif
[wxWidgets.git] / include / wx / x11 / dataobj.h
CommitLineData
83df96d6
JS
1///////////////////////////////////////////////////////////////////////////////
2// Name: wx/motif/dataobj.h
3// Purpose: declaration of the wxDataObject class for Motif
4// Author: Julian Smart
5// RCS-ID: $Id$
9691c806 6// Copyright: (c) 1998 Robert Roebling
65571936 7// Licence: wxWindows licence
83df96d6
JS
8///////////////////////////////////////////////////////////////////////////////
9
9691c806
RR
10#ifndef _WX_X11_DATAOBJ_H_
11#define _WX_X11_DATAOBJ_H_
83df96d6 12
12028905 13#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
83df96d6
JS
14#pragma interface "dataobj.h"
15#endif
16
17// ----------------------------------------------------------------------------
18// wxDataObject is the same as wxDataObjectBase under wxMotif
19// ----------------------------------------------------------------------------
20
968eb2ef 21class WXDLLIMPEXP_CORE wxDataObject : public wxDataObjectBase
83df96d6
JS
22{
23public:
9691c806
RR
24 wxDataObject();
25
83df96d6
JS
26#ifdef __DARWIN__
27 ~wxDataObject() { }
28#endif
9691c806
RR
29
30 virtual bool IsSupportedFormat( const wxDataFormat& format, Direction dir = Get ) const;
83df96d6
JS
31};
32
9691c806 33#endif //_WX_X11_DATAOBJ_H_
83df96d6 34