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