aboutsummaryrefslogtreecommitdiffstats
path: root/src/app.hpp
diff options
context:
space:
mode:
authorMarcus Fritzsch <marcus_fritzsch@mentor.com>2017-07-25 12:27:54 +0200
committerMarcus Fritzsch <marcus_fritzsch@mentor.com>2017-08-08 17:24:00 +0200
commit353bfe55c134bb19247bf26c2498c0d87f80dc18 (patch)
treeff1cb65492d0fe3f523fefe21b1fb86fd14e6567 /src/app.hpp
parentf0e3d51ee7adb54cd31f0625a71c86995cf0760f (diff)
app: add very c++-y layout parsing
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Diffstat (limited to 'src/app.hpp')
-rw-r--r--src/app.hpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/app.hpp b/src/app.hpp
index 172e688..82acfda 100644
--- a/src/app.hpp
+++ b/src/app.hpp
@@ -11,6 +11,7 @@
#include "afb_binding_api.hpp"
#include "result.hpp"
#include "wayland.hpp"
+#include "layout.hpp"
namespace wl {
struct display;
@@ -31,6 +32,8 @@ struct App {
std::unique_ptr<struct genivi::controller> controller;
std::vector<std::unique_ptr<struct wl::output>> outputs;
+ layouts_type layouts;
+
App(wl::display *d);
~App();