]>
Commit | Line | Data |
---|---|---|
7c78e7c7 RR |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: dcscreen.cpp | |
01b2eeec KB |
3 | // Purpose: wxScreenDC class |
4 | // Author: AUTHOR | |
5 | // Modified by: | |
6 | // Created: ??/??/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) AUTHOR | |
7c78e7c7 RR |
9 | // Licence: wxWindows licence |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifdef __GNUG__ | |
13 | #pragma implementation "dcscreen.h" | |
14 | #endif | |
15 | ||
16 | #include "wx/dcscreen.h" | |
7c78e7c7 | 17 | |
01b2eeec KB |
18 | #if !USE_SHARED_LIBRARY |
19 | IMPLEMENT_DYNAMIC_CLASS(wxScreenDC, wxPaintDC) | |
20 | #endif | |
7c78e7c7 | 21 | |
01b2eeec KB |
22 | // Create a DC representing the whole screen |
23 | wxScreenDC::wxScreenDC() | |
7c78e7c7 | 24 | { |
01b2eeec KB |
25 | // TODO |
26 | } | |
7c78e7c7 | 27 | |
01b2eeec | 28 | wxScreenDC::~wxScreenDC() |
7c78e7c7 | 29 | { |
01b2eeec KB |
30 | // TODO |
31 | } | |
7c78e7c7 | 32 |