~aleteoryx/muditaos

ref: a7fba1b3438cfcf5cb8831de1cc9fc1244c1c330 muditaos/module-services/service-appmgr/data/NotificationsChangedActionsParams.cpp -rw-r--r-- 561 bytes
a7fba1b3 — Paweł Joński [BH-374] Librarize application-antenna 4 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 <service-appmgr/data/NotificationsChangedActionsParams.hpp>

#include <apps-common/notifications/NotificationData.hpp>

using namespace app::manager::actions;

NotificationsChangedParams::NotificationsChangedParams(Notifications notifications)
    : notifications{std::move(notifications)}
{}

auto NotificationsChangedParams::getNotifications() const noexcept -> const Notifications &
{
    return notifications;
}