##// END OF EJS Templates
Renamed to QtCommercialChart
Renamed to QtCommercialChart

File last commit:

r30:ef99599d15b7
r30:ef99599d15b7
Show More
qchartseries.h
38 lines | 701 B | text/x-c | CLexer
Michal Klocek
Fix missing file from one of the prvious commits...
r23 #ifndef QCHARTSERIES_H
#define QCHARTSERIES_H
Tero Ahola
Renamed to QtCommercialChart
r30 #include "qchartglobal.h"
Michal Klocek
Fix missing file from one of the prvious commits...
r23 #include <QObject>
Tero Ahola
Renamed to QtCommercialChart
r30 QTCOMMERCIALCHART_BEGIN_NAMESPACE
Michal Klocek
Fix missing file from one of the prvious commits...
r23
Tero Ahola
Renamed to QtCommercialChart
r30 class QTCOMMERCIALCHART_EXPORT QChartSeries : public QObject
Michal Klocek
Fix missing file from one of the prvious commits...
r23 {
public:
Tero Ahola
Renamed to QtCommercialChart
r30 enum QChartSeriesType {
SeriesTypeLine = 0,
// SeriesTypeArea,
// SeriesTypeBar,
// SeriesTypePie,
SeriesTypeScatter
// SeriesTypeSpline
};
Michal Klocek
Fix missing file from one of the prvious commits...
r23
protected:
QChartSeries(QObject *parent = 0):QObject(parent){};
public:
virtual ~QChartSeries(){};
//factory method
static QChartSeries* create(QObject* parent = 0 ){ return 0;}
//pure virtual
virtual QChartSeriesType type() const = 0;
};
Tero Ahola
Renamed to QtCommercialChart
r30 QTCOMMERCIALCHART_END_NAMESPACE
Michal Klocek
Fix missing file from one of the prvious commits...
r23
#endif