GraphApp: Use a FunctionStore

Change-Id: Ib75947c40167489726fafc493ccb0ebf2862142b
This commit is contained in:
Romain Goyet
2016-08-22 14:40:07 +02:00
parent e1dcffd4ce
commit 00afebbe2d
15 changed files with 166 additions and 36 deletions

View File

@@ -1,8 +1,8 @@
#include "graph_controller.h"
GraphController::GraphController(Responder * parentResponder) :
GraphController::GraphController(Responder * parentResponder, Graph::FunctionStore * functionStore) :
ViewController(parentResponder),
m_view(GraphView())
m_view(GraphView(functionStore))
{
}