// Purpose: cairo device context class
// Author: Stefan Csomor
// Modified by:
-// Created: 01/02/97
+// Created: 2006-10-03
// RCS-ID: $Id$
-// Copyright: (c) Stefan Csomor
+// Copyright: (c) 2006 Stefan Csomor
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
#include "wx/dc.h"
-// For compilers that support precompilation, includes "wx.h".
-#include "wx/wxprec.h"
-
#ifdef __BORLANDC__
#pragma hdrstop
#endif
#include "wx/graphics.h"
+#if wxUSE_GRAPHICS_CONTEXT
+
#include <vector>
using namespace std;
wxGraphicsContext* wxGraphicsContext::Create( const wxWindowDC& dc )
{
return new wxCairoContext(dc);
-}
\ No newline at end of file
+}
+
+#endif // wxUSE_GRAPHICS_CONTEXT