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