GNU compiler included with Mac OS X 10.2 (Jaguar) as well as August Developer Tools update contain a bug concerning #pragma interface handling that can only be worked around by not using them (and they are not necessary anyways) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16884 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
		
			
				
	
	
		
			70 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			70 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /////////////////////////////////////////////////////////////////////////////
 | |
| // Name:        dcclient.h
 | |
| // Purpose:     wxClientDC, wxPaintDC and wxWindowDC classes
 | |
| // Author:      AUTHOR
 | |
| // Modified by:
 | |
| // Created:     ??/??/98
 | |
| // RCS-ID:      $Id$
 | |
| // Copyright:   (c) AUTHOR
 | |
| // Licence:   	wxWindows licence
 | |
| /////////////////////////////////////////////////////////////////////////////
 | |
| 
 | |
| #ifndef _WX_DCCLIENT_H_
 | |
| #define _WX_DCCLIENT_H_
 | |
| 
 | |
| #if defined(__GNUG__) && !defined(__APPLE__)
 | |
| #pragma interface "dcclient.h"
 | |
| #endif
 | |
| 
 | |
| #include "wx/dc.h"
 | |
| 
 | |
| //-----------------------------------------------------------------------------
 | |
| // classes
 | |
| //-----------------------------------------------------------------------------
 | |
| 
 | |
| class WXDLLEXPORT wxPaintDC;
 | |
| class WXDLLEXPORT wxWindow;
 | |
| 
 | |
| class WXDLLEXPORT wxWindowDC: public wxDC
 | |
| {
 | |
|   DECLARE_DYNAMIC_CLASS(wxWindowDC)
 | |
| 
 | |
|  public:
 | |
|   wxWindowDC(void);
 | |
| 
 | |
|   // Create a DC corresponding to a canvas
 | |
|   wxWindowDC(wxWindow *win);
 | |
| 
 | |
|   ~wxWindowDC(void);
 | |
| };
 | |
| 
 | |
| 
 | |
| class WXDLLEXPORT wxClientDC: public wxWindowDC
 | |
| {
 | |
|   DECLARE_DYNAMIC_CLASS(wxClientDC)
 | |
| 
 | |
|  public:
 | |
|   wxClientDC(void);
 | |
| 
 | |
|   // Create a DC corresponding to a canvas
 | |
|   wxClientDC(wxWindow *win);
 | |
| 
 | |
|   ~wxClientDC(void);
 | |
| };
 | |
| 
 | |
| class WXDLLEXPORT wxPaintDC: public wxWindowDC
 | |
| {
 | |
|   DECLARE_DYNAMIC_CLASS(wxPaintDC)
 | |
| 
 | |
|  public:
 | |
|   wxPaintDC(void);
 | |
| 
 | |
|   // Create a DC corresponding to a canvas
 | |
|   wxPaintDC(wxWindow *win);
 | |
| 
 | |
|   ~wxPaintDC(void);
 | |
| };
 | |
| 
 | |
| #endif
 | |
|     // _WX_DCCLIENT_H_
 |