From f3bbe536bc9366babe9008b1e3d4ca7f95e2aeb8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89milie=20Feral?= Date: Mon, 7 Nov 2016 16:23:54 +0100 Subject: [PATCH] [apps] Add a tool box as instance variable of the app container Change-Id: I02e841da8668ca50cd7cd59101445be84244a6eb --- apps/apps_container.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/apps_container.h b/apps/apps_container.h index a88e540d6..22ffdb15a 100644 --- a/apps/apps_container.h +++ b/apps/apps_container.h @@ -5,6 +5,7 @@ #include "graph/app.h" #include "probability/app.h" #include "calculation/app.h" +#include "tool_box_controller.h" #define USE_PIC_VIEW_APP 0 #if USE_PIC_VIEW_APP @@ -29,6 +30,7 @@ private: PicViewApp m_picViewApp; #endif Context m_context; + ToolBoxController m_toolBoxController; }; #endif