Remove all lines containing cvs/svn "$Id$" keyword.
[wxWidgets.git] / include / wx / os2 / dcscreen.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/os2/dcscreen.h
3 // Purpose: wxScreenDC class
4 // Author: David Webster
5 // Modified by:
6 // Created: 10/14/99
7 // Copyright: (c) David Webster
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
10
11 #ifndef _WX_OS2_DCSCREEN_H_
12 #define _WX_OS2_DCSCREEN_H_
13
14 #include "wx/dcscreen.h"
15 #include "wx/os2/dc.h"
16
17 class WXDLLIMPEXP_CORE wxScreenDCImpl: public wxPMDCImpl
18 {
19 public:
20 // Create a DC representing the whole screen
21 wxScreenDCImpl( wxScreenDC *owner );
22
23 virtual void DoGetSize( int* pnWidth
24 ,int* pnHeight
25 ) const;
26
27 private:
28 DECLARE_CLASS(wxScreenDCImpl)
29 wxDECLARE_NO_COPY_CLASS(wxScreenDCImpl);
30 }; // end of CLASS wxScreenDC
31
32 #endif
33 // _WX_DCSCREEN_H_