summaryrefslogtreecommitdiff
path: root/include/sway/layout.h
diff options
context:
space:
mode:
authorDrew DeVault <[email protected]>2017-11-19 17:04:28 -0500
committerDrew DeVault <[email protected]>2017-11-19 17:04:28 -0500
commitdb4fb1c85c132e001fb1ae18f03f7585def1ae19 (patch)
tree91da84c9476e6ec34c65f3f8923961fd893fa721 /include/sway/layout.h
parent733993a651c71f7e2198d505960d6bbd31e0e107 (diff)
Add outputs to the tree
Diffstat (limited to 'include/sway/layout.h')
-rw-r--r--include/sway/layout.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/sway/layout.h b/include/sway/layout.h
new file mode 100644
index 00000000..7e7a9c35
--- /dev/null
+++ b/include/sway/layout.h
@@ -0,0 +1,9 @@
+#ifndef _SWAY_LAYOUT_H
+#define _SWAY_LAYOUT_H
+
+struct sway_container;
+
+void init_layout(void);
+void add_child(struct sway_container *parent, struct sway_container *child);
+
+#endif