#ifndef _HEADER_DISPLAY_COMPONENTS #define _HEADER_DISPLAY_COMPONENTS #include #include #include "Box.hpp" namespace Display { class Components { public: Components(); void Add(std::shared_ptr box); void Add(std::vector> boxes); void Update(size_t index, std::any modified); void Display(); private: size_t GetSize(StyleHeight sh); // Boxes std::vector> _boxes; }; }; #endif //_HEADER_DISPLAY_COMPONENTS