~aleteoryx/muditaos

ref: 402a7416378afb1864120c3aef3854bee610d457 muditaos/module-services/service-gui/messages/DrawMessage.cpp -rw-r--r-- 448 bytes
402a7416 — Piotr Tański [EGD-5026] Change Eink service code structure 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 */