##// END OF EJS Templates
minor. memoryleak fix
minor. memoryleak fix

File last commit:

r115:8cafc623ea10
r138:7ac6027aefc5
Show More
plotdomain_p.h
28 lines | 448 B | text/x-c | CLexer
#ifndef PLOTDOMAIN_H_
#define PLOTDOMAIN_H_
#include "qchartglobal.h"
#include <QRect>
QTCOMMERCIALCHART_BEGIN_NAMESPACE
class PlotDomain {
public:
PlotDomain();
virtual ~PlotDomain();
qreal spanX() const;
qreal spanY() const;
PlotDomain subDomain(const QRectF& rect, qreal maxWidth, qreal maxHeight) const;
public:
qreal m_minX;
qreal m_maxX;
qreal m_minY;
qreal m_maxY;
};
QTCOMMERCIALCHART_END_NAMESPACE
#endif /* PLOTTER_H_ */