// Copyright (c) 2017-2024, Mudita Sp. z.o.o. All rights reserved. // For licensing, see https://github.com/mudita/MuditaOS/blob/master/LICENSE.md #include "ThreeBox.hpp" namespace gui { template ThreeBox::ThreeBox(Item *parent, Position x, Position y, Length w, Length h) : Parent(parent, x, y, w, h) {} template HThreeBox::HThreeBox(Item *parent, Position x, Position y, Length w, Length h) : ThreeBox(parent, x, y, w, h) {} template VThreeBox::VThreeBox(Item *parent, Position x, Position y, Length w, Length h) : ThreeBox(parent, x, y, w, h) {} template class HThreeBox; template class HThreeBox; template class VThreeBox; } // namespace gui