From b166f3512f5e426e60a4ff610a9f07239ac18ea1 Mon Sep 17 00:00:00 2001 From: Marcus Fritzsch Date: Thu, 13 Jul 2017 10:23:55 +0200 Subject: clang-format, mostly indenting. Signed-off-by: Marcus Fritzsch --- src/app.hpp | 35 ++++++++++++++++++----------------- 1 file changed, 18 insertions(+), 17 deletions(-) (limited to 'src/app.hpp') diff --git a/src/app.hpp b/src/app.hpp index 0fb929d..4e1c4ff 100644 --- a/src/app.hpp +++ b/src/app.hpp @@ -8,35 +8,36 @@ #include #include -#include "wayland.hpp" -#include "result.hpp" #include "afb_binding_api.hpp" +#include "result.hpp" +#include "wayland.hpp" namespace wl { - struct display; +struct display; } + namespace genivi { - struct controller; +struct controller; } namespace wm { - struct App { - struct binding_api api; +struct App { + struct binding_api api; - // This is the one thing, we do not own. - struct wl::display *display; + // This is the one thing, we do not own. + struct wl::display *display; - std::unique_ptr controller; - std::vector> outputs; + std::unique_ptr controller; + std::vector> outputs; - App(wl::display *d); + App(wl::display *d); - int init(); - int dispatch_events(); - int init_layout(); - }; + int init(); + int dispatch_events(); + int init_layout(); +}; -} // namespace wm +} // namespace wm -#endif //TMCAGLWM_APP_HPP +#endif // TMCAGLWM_APP_HPP -- cgit 1.2.3-korg