From 56c9ebb2e41bd0487199ed95838cd9e1c1d9dd8d Mon Sep 17 00:00:00 2001 From: Samuel Fadel Date: Thu, 24 Sep 2015 17:48:33 -0300 Subject: Added placeholder object for history graph; smaller main window. --- historygraph.cpp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 historygraph.cpp (limited to 'historygraph.cpp') diff --git a/historygraph.cpp b/historygraph.cpp new file mode 100644 index 0000000..1a4532a --- /dev/null +++ b/historygraph.cpp @@ -0,0 +1,14 @@ +#include "historygraph.h" + +HistoryGraph::HistoryGraph(QQuickItem *parent) + : QQuickItem(parent) +{ +} + +void HistoryGraph::addHistoryItem(const int &item) +{} + +QSGNode *HistoryGraph::updatePaintNode(QSGNode *oldNode, UpdatePaintNodeData *) +{ + return oldNode; +} -- cgit v1.2.3