git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@48095 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
		
			
				
	
	
		
			25 lines
		
	
	
		
			745 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			745 B
		
	
	
	
		
			C++
		
	
	
	
	
	
///////////////////////////////////////////////////////////////////////////////
 | 
						|
// Name:        wx/cocoa/dataobj.h
 | 
						|
// Purpose:     declaration of the wxDataObject
 | 
						|
// Author:      David Elliott <dfe@cox.net>
 | 
						|
// Modified by:
 | 
						|
// Created:     2003/07/23
 | 
						|
// RCS-ID:      $Id$
 | 
						|
// Copyright:   (c) 2003 David Elliott
 | 
						|
// Licence:     wxWindows licence
 | 
						|
///////////////////////////////////////////////////////////////////////////////
 | 
						|
 | 
						|
#ifndef __WX_COCOA_DATAOBJ_H__
 | 
						|
#define __WX_COCOA_DATAOBJ_H__
 | 
						|
 | 
						|
class WXDLLIMPEXP_CORE wxDataObject : public wxDataObjectBase
 | 
						|
{
 | 
						|
public:
 | 
						|
    wxDataObject();
 | 
						|
    virtual ~wxDataObject();
 | 
						|
    virtual bool IsSupportedFormat(const wxDataFormat& format,
 | 
						|
        Direction dir = Get) const;
 | 
						|
};
 | 
						|
 | 
						|
#endif // __WX_COCOA_DATAOBJ_H__
 |