]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/motif/dataobj.h
Partial fix for #15196: wxRichTextCell caret issues (dghart)
[wxWidgets.git] / include / wx / motif / dataobj.h
... / ...
CommitLineData
1///////////////////////////////////////////////////////////////////////////////
2// Name: wx/motif/dataobj.h
3// Purpose: declaration of the wxDataObject class for Motif
4// Author: Julian Smart
5// Copyright: (c) 1998 Julian Smart
6// Licence: wxWindows licence
7///////////////////////////////////////////////////////////////////////////////
8
9#ifndef _WX_MOTIF_DATAOBJ_H_
10#define _WX_MOTIF_DATAOBJ_H_
11
12// ----------------------------------------------------------------------------
13// wxDataObject is the same as wxDataObjectBase under wxMotif
14// ----------------------------------------------------------------------------
15
16class WXDLLIMPEXP_CORE wxDataObject : public wxDataObjectBase
17{
18public:
19 virtual ~wxDataObject();
20};
21
22#endif //_WX_MOTIF_DATAOBJ_H_
23