]>
Commit | Line | Data |
---|---|---|
23324ae1 FM |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: gdiobj.h | |
e54c96f1 | 3 | // Purpose: interface of wxGDIObject |
23324ae1 FM |
4 | // Author: wxWidgets team |
5 | // RCS-ID: $Id$ | |
526954c5 | 6 | // Licence: wxWindows licence |
23324ae1 FM |
7 | ///////////////////////////////////////////////////////////////////////////// |
8 | ||
9 | /** | |
10 | @class wxGDIObject | |
7c913512 | 11 | |
23d291c2 BP |
12 | This class allows platforms to implement functionality to optimise GDI |
13 | objects, such as wxPen, wxBrush and wxFont. On Windows, the underling GDI | |
14 | objects are a scarce resource and are cleaned up when a usage count goes to | |
15 | zero. On some platforms this class may not have any special functionality. | |
7c913512 | 16 | |
23324ae1 FM |
17 | Since the functionality of this class is platform-specific, it is not |
18 | documented here in detail. | |
7c913512 | 19 | |
23324ae1 | 20 | @library{wxcore} |
23d291c2 | 21 | @category{gdi} |
7c913512 | 22 | |
e54c96f1 | 23 | @see wxPen, wxBrush, wxFont |
23324ae1 FM |
24 | */ |
25 | class wxGDIObject : public wxObject | |
26 | { | |
27 | public: | |
28 | /** | |
29 | Default constructor. | |
30 | */ | |
31 | wxGDIObject(); | |
32 | }; |