#ifndef CHARTS_TEST_H #define CHARTS_TEST_H #include #include #include "../../../src/charts/DataPoint.h" class Chart; class ChartsTest: public QWidget { Q_OBJECT public: ChartsTest(); private: void createUi(); void addDataPoint(int index); private slots: void changeDataSet(); private: QString yValuesStr; Chart* chart; QList dataSet; QLabel* valuesLabel; }; #endif