blob: 7e7a9c35482affdbb5c3d6d7f9207a34d5c1a87f (
plain)
1
2
3
4
5
6
7
8
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
|