aboutsummaryrefslogtreecommitdiff
path: root/historygraph.cpp
diff options
context:
space:
mode:
authorSamuel Fadel <samuelfadel@gmail.com>2015-09-24 17:48:33 -0300
committerSamuel Fadel <samuelfadel@gmail.com>2015-09-24 17:48:33 -0300
commit56c9ebb2e41bd0487199ed95838cd9e1c1d9dd8d (patch)
tree22a05cbba90350fa99665cf71036f035c8e7dbc6 /historygraph.cpp
parent815e94416bdf6bdd012e744c359f0b086da6b6af (diff)
Added placeholder object for history graph; smaller main window.
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;
+}