1 /*
2  * Copyright (C) 2008 Emweb bv, Herent, Belgium.
3  *
4  * See the LICENSE file for terms of use.
5  */
6 
7 #include "Wt/WPaintDevice.h"
8 
9 #include "Wt/WPainterPath.h"
10 #include "Wt/WRectF.h"
11 #include "Wt/WPointF.h"
12 
13 #include "Wt/WPainter.h"
14 
15 namespace Wt {
16 
WTextItem(const WString & text,double width,double nextWidth)17 WTextItem::WTextItem(const WString& text, double width, double nextWidth)
18   : text_(text),
19     width_(width),
20     nextWidth_(nextWidth)
21 { }
22 
~WPaintDevice()23 WPaintDevice::~WPaintDevice()
24 { }
25 
26 }
27