##// END OF EJS Templates
proof of concept implementation for barset and barcategory
proof of concept implementation for barset and barcategory

File last commit:

r169:1723c50daa1e
r169:1723c50daa1e
Show More
qbarset.h
29 lines | 544 B | text/x-c | CLexer
#ifndef QBARSET_H
#define QBARSET_H
#include "qchartglobal.h"
QTCOMMERCIALCHART_BEGIN_NAMESPACE
class QTCOMMERCIALCHART_EXPORT QBarSet // : pubclic QObject // TODO: Need for this?
{
public:
QBarSet();
void setName(QString name);
// void setValues(QList<qreal> &values);
// TODO:
QBarSet& operator << (const qreal &value);
// TODO: Hide these from user of QBarSet. (but data model needs access to these)
public:
QString mName;
QList<qreal> mValues;
};
QTCOMMERCIALCHART_END_NAMESPACE
#endif // QBARSET_H