wxFreeChart
drawobject.h
1 // Name: drawobject.h
3 // Purpose:
4 // Author: Moskvichev Andrey V.
5 // Created: 2008/11/07
6 // Copyright: (c) 2008-2010 Moskvichev Andrey V.
7 // Licence: wxWidgets licence
9 
10 #ifndef DRAWOBJECT_H_
11 #define DRAWOBJECT_H_
12 
13 #define wxNoBrush *wxTheBrushList->FindOrCreateBrush(*wxBLACK, wxBRUSHSTYLE_TRANSPARENT)
14 #define wxNoPen *wxThePenList->FindOrCreatePen(*wxBLACK, 1, wxPENSTYLE_TRANSPARENT)
15 
16 class WXDLLIMPEXP_FREECHART DrawObject;
17 
22 class WXDLLIMPEXP_FREECHART DrawObject
23 {
24 public:
25  DrawObject()
26  {
27  }
28 
29  virtual ~DrawObject()
30  {
31  }
32 };
33 
34 #endif /*DRAWOBJECT_H_*/
Base class for objects drawn on chart or perform drawing of another objects (like renderers...
Definition: drawobject.h:22