]> git.saurik.com Git - wxWidgets.git/blame - include/wx/x11/dataobj.h
Use wxGetTranslation() instead of _() in the public headers.
[wxWidgets.git] / include / wx / x11 / dataobj.h
CommitLineData
83df96d6 1///////////////////////////////////////////////////////////////////////////////
80fdcdb9 2// Name: wx/x11/dataobj.h
83df96d6
JS
3// Purpose: declaration of the wxDataObject class for Motif
4// Author: Julian Smart
9691c806 5// Copyright: (c) 1998 Robert Roebling
65571936 6// Licence: wxWindows licence
83df96d6
JS
7///////////////////////////////////////////////////////////////////////////////
8
9691c806
RR
9#ifndef _WX_X11_DATAOBJ_H_
10#define _WX_X11_DATAOBJ_H_
83df96d6 11
83df96d6
JS
12// ----------------------------------------------------------------------------
13// wxDataObject is the same as wxDataObjectBase under wxMotif
14// ----------------------------------------------------------------------------
15
968eb2ef 16class WXDLLIMPEXP_CORE wxDataObject : public wxDataObjectBase
83df96d6
JS
17{
18public:
9691c806 19 wxDataObject();
03647350 20
83df96d6 21#ifdef __DARWIN__
d3c7fc99 22 virtual ~wxDataObject() { }
83df96d6 23#endif
9691c806
RR
24
25 virtual bool IsSupportedFormat( const wxDataFormat& format, Direction dir = Get ) const;
83df96d6
JS
26};
27
9691c806 28#endif //_WX_X11_DATAOBJ_H_
83df96d6 29