##// END OF EJS Templates
Moved scatter impl into a subfolder
Moved scatter impl into a subfolder

File last commit:

r194:c7a6b069859c
r194:c7a6b069859c
Show More
scatterseries_p.h
25 lines | 411 B | text/x-c | CLexer
#ifndef QSCATTERSERIESPRIVATE_H
#define QSCATTERSERIESPRIVATE_H
#include "qchartglobal.h"
#include "qchartseries.h"
#include <QPen>
QTCOMMERCIALCHART_BEGIN_NAMESPACE
/*!
* The PIMPL class of QScatterSeries.
*/
class QScatterSeriesPrivate
{
public:
QScatterSeriesPrivate();
public:
QList<QPointF> m_data;
QPen m_markerPen;
};
QTCOMMERCIALCHART_END_NAMESPACE
#endif // QSCATTERSERIESPRIVATE_H