~aleteoryx/muditaos

ref: 8bab7f0031bc8b0c66e9d1dc2f1c3309a6630bc9 muditaos/module-services/service-gui/messages/DrawMessage.cpp -rw-r--r-- 448 bytes
8bab7f00 — Adam EGD-3585 ServiceGUI and ServiceEink initial cleanup (#953) 5 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright (c) 2017-2020, Mudita Sp. z.o.o. All rights reserved.
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md

#include "DrawMessage.hpp"
#include "GUIMessage.hpp"
#include <Common.hpp>
#include <DrawCommand.hpp>

namespace sgui
{

    DrawMessage::DrawMessage(std::list<gui::Command> commands, gui::RefreshModes mode)
        : GUIMessage(), mode(mode), commands(std::move(commands))
    {
    }
} /* namespace sgui */