X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/a4bbc9f720cbd99d7092e8944e671a6291068b13..7bd30a12ade503fd135c686ecc98a6f6d5fecbeb:/include/wx/mgl/dcscreen.h diff --git a/include/wx/mgl/dcscreen.h b/include/wx/mgl/dcscreen.h index a5f0ace17d..6b5fd171cd 100644 --- a/include/wx/mgl/dcscreen.h +++ b/include/wx/mgl/dcscreen.h @@ -1,41 +1,37 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: dcscreen.h +// Name: wx/mgl/dcscreen.h // Purpose: // Author: Vaclav Slavik // Id: $Id$ -// Copyright: (c) 2001 SciTech Software, Inc. (www.scitechsoft.com) +// Copyright: (c) 2001-2002 SciTech Software, Inc. (www.scitechsoft.com) // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// #ifndef __WX_DCSCREEN_H__ #define __WX_DCSCREEN_H__ -#ifdef __GNUG__ -#pragma interface "dcscreen.h" -#endif - #include "wx/dcclient.h" //----------------------------------------------------------------------------- // classes //----------------------------------------------------------------------------- -class WXDLLEXPORT wxScreenDC; +class WXDLLIMPEXP_FWD_CORE wxScreenDC; //----------------------------------------------------------------------------- // wxScreenDC //----------------------------------------------------------------------------- -class WXDLLEXPORT wxScreenDC: public wxDC +class WXDLLIMPEXP_CORE wxScreenDC: public wxDC { public: wxScreenDC(); - ~wxScreenDC() {} + virtual ~wxScreenDC(); static bool StartDrawingOnTop(wxWindow *WXUNUSED(window)) { return TRUE; } static bool StartDrawingOnTop(wxRect *WXUNUSED(rect) = NULL) { return TRUE; } static bool EndDrawingOnTop() { return TRUE; } - + private: DECLARE_DYNAMIC_CLASS(wxScreenDC) };