summaryrefslogtreecommitdiffstats
path: root/include/sway/tree/container.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/sway/tree/container.h')
-rw-r--r--include/sway/tree/container.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/sway/tree/container.h b/include/sway/tree/container.h
index 2a8b8aba..6efda72f 100644
--- a/include/sway/tree/container.h
+++ b/include/sway/tree/container.h
@@ -45,6 +45,7 @@ enum sway_container_border {
45 45
46struct sway_root; 46struct sway_root;
47struct sway_output; 47struct sway_output;
48struct sway_workspace;
48struct sway_view; 49struct sway_view;
49 50
50struct sway_container { 51struct sway_container {
@@ -52,6 +53,7 @@ struct sway_container {
52 // TODO: Encapsulate state for other node types as well like C_CONTAINER 53 // TODO: Encapsulate state for other node types as well like C_CONTAINER
53 struct sway_root *sway_root; 54 struct sway_root *sway_root;
54 struct sway_output *sway_output; 55 struct sway_output *sway_output;
56 struct sway_workspace *sway_workspace;
55 struct sway_view *sway_view; 57 struct sway_view *sway_view;
56 }; 58 };
57 59