1999-01-14 10:18:41 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
1999-10-21 16:16:53 -04:00
|
|
|
// Name: wx/motif/dataobj.h
|
|
|
|
// Purpose: declaration of the wxDataObject class for Motif
|
1999-01-14 10:18:41 -05:00
|
|
|
// Author: Julian Smart
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) 1998 Julian Smart
|
2004-05-23 16:53:33 -04:00
|
|
|
// Licence: wxWindows licence
|
1999-01-14 10:18:41 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
1999-10-21 16:16:53 -04:00
|
|
|
#ifndef _WX_MOTIF_DATAOBJ_H_
|
|
|
|
#define _WX_MOTIF_DATAOBJ_H_
|
1999-01-14 10:18:41 -05:00
|
|
|
|
2003-08-09 08:38:21 -04:00
|
|
|
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
|
2002-02-05 11:34:33 -05:00
|
|
|
#pragma interface "dataobj.h"
|
1999-01-14 10:18:41 -05:00
|
|
|
#endif
|
|
|
|
|
1999-10-21 16:16:53 -04:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxDataObject is the same as wxDataObjectBase under wxMotif
|
|
|
|
// ----------------------------------------------------------------------------
|
1999-01-14 10:18:41 -05:00
|
|
|
|
1999-10-21 16:16:53 -04:00
|
|
|
class wxDataObject : public wxDataObjectBase
|
1999-01-14 10:18:41 -05:00
|
|
|
{
|
2002-02-05 11:34:33 -05:00
|
|
|
public:
|
2002-07-10 10:17:58 -04:00
|
|
|
virtual ~wxDataObject();
|
1999-01-14 10:18:41 -05:00
|
|
|
};
|
|
|
|
|
1999-10-21 16:16:53 -04:00
|
|
|
#endif //_WX_MOTIF_DATAOBJ_H_
|
1999-01-14 10:18:41 -05:00
|
|
|
|