OSCAR-code/Graphs/gpiechart.h
2011-07-27 19:21:53 +10:00

20 lines
390 B
C++

#ifndef GPIECHART_H
#define GPIECHART_H
#include "graphlayer.h"
class gPieChart : public gLayer
{
public:
gPieChart(MachineCode code=MC_UNKNOWN,QColor col=Qt::black);
virtual ~gPieChart();
virtual void Plot(gGraphWindow & w,float scrx,float scry);
void AddName(QString name) { m_names.push_back(name); }
protected:
vector<QString> m_names;
};
#endif // GPIECHART_H