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

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