mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
20 lines
390 B
C++
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
|