mirror of https://github.com/PCSX2/pcsx2.git
24 lines
779 B
C
24 lines
779 B
C
|
///////////////////////////////////////////////////////////////////////////////
|
||
|
// Name: wx/motif/dataobj.h
|
||
|
// Purpose: declaration of the wxDataObject class for Motif
|
||
|
// Author: Julian Smart
|
||
|
// Copyright: (c) 1998 Julian Smart
|
||
|
// Licence: wxWindows licence
|
||
|
///////////////////////////////////////////////////////////////////////////////
|
||
|
|
||
|
#ifndef _WX_MOTIF_DATAOBJ_H_
|
||
|
#define _WX_MOTIF_DATAOBJ_H_
|
||
|
|
||
|
// ----------------------------------------------------------------------------
|
||
|
// wxDataObject is the same as wxDataObjectBase under wxMotif
|
||
|
// ----------------------------------------------------------------------------
|
||
|
|
||
|
class WXDLLIMPEXP_CORE wxDataObject : public wxDataObjectBase
|
||
|
{
|
||
|
public:
|
||
|
virtual ~wxDataObject();
|
||
|
};
|
||
|
|
||
|
#endif //_WX_MOTIF_DATAOBJ_H_
|
||
|
|