clang-format, mostly indenting.
[staging/windowmanager.git] / src / app.hpp
index 0fb929d..4e1c4ff 100644 (file)
@@ -8,35 +8,36 @@
 #include <json-c/json.h>
 #include <memory>
 
-#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<struct genivi::controller> controller;
-        std::vector<std::unique_ptr<struct wl::output>> outputs;
+   std::unique_ptr<struct genivi::controller> controller;
+   std::vector<std::unique_ptr<struct wl::output>> 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