summaryrefslogtreecommitdiffstats
path: root/libkdchart/KDChartTableDataWrapper.cpp
blob: 6cae581f587e12b4c7eac1461a561599f41d3846 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#include "KDChartTableDataWrapper.h"

KDChartTableDataWrapper::KDChartTableDataWrapper( KDChartTableData* data ) :QObject(0), _data(data)
{
}
/*
KDChartData* KDChartTableDataWrapper::cell( uint row, uint col )
{
    KDChartData& item = _data->cell( row, col );
    return &item;
}

void KDChartTableDataWrapper::setCell( uint _row, uint _col, double _element )
{
    // Without this, the user has to wrap the element in a KDChartData
    // In C++ this is handled bu default constructors.
    _data->setCell( _row, _col, _element );

}

void KDChartTableDataWrapper::setCell( uint _row, uint _col, QString _element )
{
    // Without this, the user has to wrap the element in a KDChartData
    // In C++ this is handled bu default constructors.
    _data->setCell( _row, _col, _element );
}

void KDChartTableDataWrapper::setCell( uint _row, uint _col, const KDChartData& _element )
{
    // When overriding setCell above, I also had to override this one. I believe that must be due to a bug in QSA
    _data->setCell( _row, _col, _element );
}

*/

#include "KDChartTableDataWrapper.moc"