aboutsummaryrefslogtreecommitdiff
path: root/src/gui/Page.cpp
blob: 7d43c000b0424ad76b3429930ea897139016983d (plain)
1
2
3
4
5
6
7
8
#include "../../include/gui/Page.hpp"

namespace gsr {
    void Page::add_widget(std::unique_ptr<Widget> widget) {
        widget->parent_widget = this;
        widgets.push_back(std::move(widget));
    }
}