##// END OF EJS Templates

File last commit:

r67:8474a34cb818
r70:f6809ce9f999 merge
Show More
plotdomain_p.h
25 lines | 364 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;
public:
qreal m_minX;
qreal m_maxX;
qreal m_minY;
qreal m_maxY;
};
QTCOMMERCIALCHART_END_NAMESPACE
#endif /* PLOTTER_H_ */