]> git.saurik.com Git - wxWidgets.git/blob - interface/gdiobj.h
917b0870e1cbd7829af7029af8e59cf021c09ad8
[wxWidgets.git] / interface / gdiobj.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: gdiobj.h
3 // Purpose: documentation for wxGDIObject class
4 // Author: wxWidgets team
5 // RCS-ID: $Id$
6 // Licence: wxWindows license
7 /////////////////////////////////////////////////////////////////////////////
8
9 /**
10 @class wxGDIObject
11 @wxheader{gdiobj.h}
12
13 This class allows platforms to implement functionality to optimise GDI objects,
14 such
15 as wxPen, wxBrush and wxFont. On Windows, the underling GDI objects are a
16 scarce resource
17 and are cleaned up when a usage count goes to zero. On some platforms this
18 class may not have any special functionality.
19
20 Since the functionality of this class is platform-specific, it is not
21 documented here in detail.
22
23 @library{wxcore}
24 @category{FIXME}
25
26 @seealso
27 wxPen, wxBrush, wxFont
28 */
29 class wxGDIObject : public wxObject
30 {
31 public:
32 /**
33 Default constructor.
34 */
35 wxGDIObject();
36 };