#ifndef _WX_DCCLIENT_H_
#define _WX_DCCLIENT_H_
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
-#pragma interface "dcclient.h"
-#endif
-
#include "wx/dc.h"
//-----------------------------------------------------------------------------
wxWindowDC(wxWindow *win);
~wxWindowDC(void);
- virtual void DoGetSize( int *width, int *height ) const;
protected :
+ virtual void DoGetSize( int *width, int *height ) const;
wxWindow *m_window;
};
wxClientDC(wxWindow *win);
~wxClientDC(void);
+
+protected:
virtual void DoGetSize( int *width, int *height ) const;
};
wxPaintDC(wxWindow *win);
~wxPaintDC(void);
+
+protected:
virtual void DoGetSize( int *width, int *height ) const;
};