summaryrefslogtreecommitdiffstats
path: root/src/app.hpp
diff options
context:
space:
mode:
authorMarcus Fritzsch <marcus_fritzsch@mentor.com>2017-07-13 10:23:55 +0200
committerMarcus Fritzsch <marcus_fritzsch@mentor.com>2017-08-08 17:24:00 +0200
commitb166f3512f5e426e60a4ff610a9f07239ac18ea1 (patch)
tree9b774db75f88f9652c185ee6f5942cfa72370933 /src/app.hpp
parente04b072b79044ca1220499f6d39532c6c98f81db (diff)
clang-format, mostly indenting.
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Diffstat (limited to 'src/app.hpp')
-rw-r--r--src/app.hpp35
1 files changed, 18 insertions, 17 deletions
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 <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