]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/motif/dataobj.h
use the native wxImageList under Win32 as otherwise xUniv doesn't link currently
[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// RCS-ID: $Id$
6// Copyright: (c) 1998 Julian Smart
7// Licence: wxWindows licence
8///////////////////////////////////////////////////////////////////////////////
9
10#ifndef _WX_MOTIF_DATAOBJ_H_
11#define _WX_MOTIF_DATAOBJ_H_
12
13#ifdef __GNUG__
14#pragma interface "dataobj.h"
15#endif
16
17// ----------------------------------------------------------------------------
18// wxDataObject is the same as wxDataObjectBase under wxMotif
19// ----------------------------------------------------------------------------
20
21class wxDataObject : public wxDataObjectBase
22{
23public:
24#ifdef __DARWIN__
25 ~wxDataObject() { }
26#endif
27};
28
29#endif //_WX_MOTIF_DATAOBJ_H_
30