summaryrefslogtreecommitdiffstats
path: root/libkdchart/KDChartCustomBoxWrapper.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libkdchart/KDChartCustomBoxWrapper.cpp')
-rw-r--r--libkdchart/KDChartCustomBoxWrapper.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/libkdchart/KDChartCustomBoxWrapper.cpp b/libkdchart/KDChartCustomBoxWrapper.cpp
new file mode 100644
index 0000000..2ee28eb
--- /dev/null
+++ b/libkdchart/KDChartCustomBoxWrapper.cpp
@@ -0,0 +1,13 @@
+#include "KDChartCustomBoxWrapper.h"
+KDChartCustomBoxWrapper::KDChartCustomBoxWrapper( KDChartCustomBox* data)
+ :QObject(0), _data(data)
+{
+}
+
+const KDChartTextPiece* KDChartCustomBoxWrapper::content() const
+{
+ return &_data->content();
+}
+
+
+#include "KDChartCustomBoxWrapper.moc"