~aleteoryx/muditaos

ref: ec703dcdb49d0f7a555a859b041b4a80b4b33a94 muditaos/module-apps/TopBarManager.cpp -rw-r--r-- 492 bytes
ec703dcd — Marek Niepieklo [EGD-5450] Add DEVICE QUALITIER descriptor 5 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright (c) 2017-2021, Mudita Sp. z.o.o. All rights reserved.
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md

#include "TopBarManager.hpp"

namespace app
{
    void TopBarManager::enableIndicators(const gui::top_bar::Indicators &indicators)
    {
        topBarConfiguration.enable(indicators);
    }

    auto TopBarManager::getConfiguration() const noexcept -> const gui::top_bar::Configuration &
    {
        return topBarConfiguration;
    }
} // namespace app