Add outputs to the tree

This commit is contained in:
Drew DeVault 2017-11-19 17:04:28 -05:00
parent 733993a651
commit db4fb1c85c
8 changed files with 229 additions and 4 deletions

9
include/sway/layout.h Normal file
View file

@ -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