1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
#ifndef HISTORYGRAPH_H #define HISTORYGRAPH_H #include <armadillo> #include <QtQuick> class HistoryGraph : public QQuickItem { Q_OBJECT public: HistoryGraph(QQuickItem *parent = 0); public slots: void addHistoryItem(const int &item); protected: QSGNode *updatePaintNode(QSGNode *oldNode, UpdatePaintNodeData *); }; #endif // HISTORYGRAPH_H