aboutsummaryrefslogtreecommitdiff
path: root/historygraph.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'historygraph.cpp')
-rw-r--r--historygraph.cpp14
1 files changed, 14 insertions, 0 deletions
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;
+}