]>
Commit | Line | Data |
---|---|---|
dc63c944 | 1 | /////////////////////////////////////////////////////////////////////////////// |
12db77ca VZ |
2 | // Name: wx/motif/dataobj.h |
3 | // Purpose: declaration of the wxDataObject class for Motif | |
dc63c944 JS |
4 | // Author: Julian Smart |
5 | // RCS-ID: $Id$ | |
6 | // Copyright: (c) 1998 Julian Smart | |
7 | // Licence: wxWindows licence | |
8 | /////////////////////////////////////////////////////////////////////////////// | |
9 | ||
12db77ca VZ |
10 | #ifndef _WX_MOTIF_DATAOBJ_H_ |
11 | #define _WX_MOTIF_DATAOBJ_H_ | |
dc63c944 | 12 | |
12028905 | 13 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
83df96d6 | 14 | #pragma interface "dataobj.h" |
dc63c944 JS |
15 | #endif |
16 | ||
12db77ca VZ |
17 | // ---------------------------------------------------------------------------- |
18 | // wxDataObject is the same as wxDataObjectBase under wxMotif | |
19 | // ---------------------------------------------------------------------------- | |
dc63c944 | 20 | |
12db77ca | 21 | class wxDataObject : public wxDataObjectBase |
dc63c944 | 22 | { |
83df96d6 | 23 | public: |
1eaf587e | 24 | virtual ~wxDataObject(); |
dc63c944 JS |
25 | }; |
26 | ||
12db77ca | 27 | #endif //_WX_MOTIF_DATAOBJ_H_ |
dc63c944 | 28 |