#ifndef _WX_FONT_H_BASE_
#define _WX_FONT_H_BASE_
+#ifdef __GNUG__
+ #pragma interface "fontbase.h"
+#endif
+
// ----------------------------------------------------------------------------
// headers
// ----------------------------------------------------------------------------
// wxFontBase represents a font object
// ----------------------------------------------------------------------------
+class WXDLLEXPORT wxFontRefData;
+
class wxFontBase : public wxGDIObject
{
public:
protected:
// get the internal data
- class WXDLLEXPORT wxFontRefData *GetFontData() const
+ wxFontRefData *GetFontData() const
{ return (wxFontRefData *)m_refData; }
private:
// macros
// ----------------------------------------------------------------------------
-// VZ: this is ugly (FIXME)
#define M_FONTDATA GetFontData()
#endif