]> git.saurik.com Git - wxWidgets.git/blame - include/wx/os2/dataobj.h
safe macro expansion
[wxWidgets.git] / include / wx / os2 / dataobj.h
CommitLineData
6dddc146 1///////////////////////////////////////////////////////////////////////////////
e7549107 2// Name: mac/dataobj.h
6dddc146 3// Purpose: declaration of the wxDataObject
e7549107 4// Author: Stefan Csomor
6dddc146
DW
5// Modified by:
6// Created: 10/21/99
7// RCS-ID: $Id$
8// Copyright: (c) 1998, 1999 Vadim Zeitlin, Robert Roebling
9// Licence: wxWindows license
10///////////////////////////////////////////////////////////////////////////////
11
e7549107
SC
12#ifndef _WX_MAC_DATAOBJ_H_
13#define _WX_MAC_DATAOBJ_H_
6dddc146
DW
14
15#ifdef __GNUG__
16 #pragma interface "dataobj.h"
17#endif
18
19// ----------------------------------------------------------------------------
20// wxDataObject is the same as wxDataObjectBase under wxGTK
21// ----------------------------------------------------------------------------
22
23class wxDataObject : public wxDataObjectBase
24{
25public:
26 wxDataObject();
27
28 virtual bool IsSupportedFormat( const wxDataFormat& format, Direction dir = Get ) const;
29};
30
e7549107 31#endif // _WX_MAC_DATAOBJ_H_
6dddc146 32