blob: c62b1187374f9aedecf7f417d8b1ab5992618dfe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include "KDChartCustomBoxWrapper.h"
KDChartCustomBoxWrapper::KDChartCustomBoxWrapper( KDChartCustomBox* data)
:TQObject(0), _data(data)
{
}
const KDChartTextPiece* KDChartCustomBoxWrapper::content() const
{
return &_data->content();
}
#include "KDChartCustomBoxWrapper.moc"
|