]> git.saurik.com Git - wxWidgets.git/blame - include/wx/gtk/dataobj.h
Compile fixes
[wxWidgets.git] / include / wx / gtk / dataobj.h
CommitLineData
8b53e5a2 1///////////////////////////////////////////////////////////////////////////////
e1ee679c
VZ
2// Name: gtk/dataobj.h
3// Purpose: declaration of the wxDataObject
8b53e5a2
RR
4// Author: Robert Roebling
5// RCS-ID: $Id$
e1ee679c 6// Copyright: (c) 1998, 1999 Vadim Zeitlin, Robert Roebling
65571936 7// Licence: wxWindows licence
8b53e5a2
RR
8///////////////////////////////////////////////////////////////////////////////
9
e1ee679c
VZ
10#ifndef _WX_GTK_DATAOBJ_H_
11#define _WX_GTK_DATAOBJ_H_
8b53e5a2 12
e1ee679c
VZ
13// ----------------------------------------------------------------------------
14// wxDataObject is the same as wxDataObjectBase under wxGTK
15// ----------------------------------------------------------------------------
8b53e5a2 16
20123d49 17class WXDLLIMPEXP_CORE wxDataObject : public wxDataObjectBase
0d2a2b60 18{
b068c4e8
RR
19public:
20 wxDataObject();
2b5f62a0
VZ
21 virtual ~wxDataObject();
22
b068c4e8 23 virtual bool IsSupportedFormat( const wxDataFormat& format, Direction dir = Get ) const;
8b53e5a2
RR
24};
25
e1ee679c 26#endif // _WX_GTK_DATAOBJ_H_
8b53e5a2 27