#include "scrollbar.hpp" #include namespace Gui { std::vector ScrollBar::getAllWidgets() { std::vector widgets; widgets.push_back(mWidgetStart); widgets.push_back(mWidgetEnd); widgets.push_back(mWidgetTrack); widgets.push_back(mWidgetFirstPart); widgets.push_back(mWidgetSecondPart); return widgets; } }