TermOx
growth.hpp
1 #ifndef TERMOX_WIDGET_GROWTH_HPP
2 #define TERMOX_WIDGET_GROWTH_HPP
3 namespace ox {
4 
6 enum class Growth : bool {
7  Static, // Fixed size, not dependent on contents
8  Dynamic // Grows in some proportion to the contents
9 };
10 
11 } // namespace ox
12 #endif // TERMOX_WIDGET_GROWTH_HPP