1 // Copyright (C) 2000-2007, Luca Padovani <padovani@sti.uniurb.it>.
2 //
3 // This file is part of GtkMathView, a flexible, high-quality rendering
4 // engine for MathML documents.
5 //
6 // GtkMathView is free software; you can redistribute it and/or modify it
7 // under the terms of the GNU Lesser General Public License as published
8 // by the Free Software Foundation; either version 3 of the License, or
9 // (at your option) any later version.
10 //
11 // GtkMathView is distributed in the hope that it will be useful, but
12 // WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public License
17 // along with this program.  If not, see <http://www.gnu.org/licenses/>.
18 
19 #ifndef __SVG_WrapperArea_hh__
20 #define __SVG_WrapperArea_hh__
21 
22 #include "WrapperArea.hh"
23 
24 class SVG_WrapperArea : public WrapperArea
25 {
26 protected:
27   SVG_WrapperArea(const AreaRef&, const BoundingBox&, const SmartPtr<class Element>&);
28   virtual ~SVG_WrapperArea();
29 
30 public:
31   static SmartPtr<SVG_WrapperArea> create(const AreaRef&, const BoundingBox&, const SmartPtr<class Element>&);
32   virtual AreaRef clone(const AreaRef&) const;
33 
34   virtual void render(RenderingContext&, const scaled&, const scaled&) const;
35 };
36 
37 #endif // __SVG_WrapperArea_hh__
38