Files
MuditaOS/module-sys/Service/Channel.hpp
Przemyslaw Brudny e7b9bcf7e9 [EGD-5133] Fix settings bus add duplications
Changed Bus Channels vector to set to prevent
duplicates and cleaned logging.
2021-01-08 17:33:00 +01:00

25 lines
372 B
C++

// Copyright (c) 2017-2020, Mudita Sp. z.o.o. All rights reserved.
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md
#pragma once
#include <memory>
#include <set>
namespace sys
{
class Service;
class Channel
{
public:
Channel()
{}
std::set<std::shared_ptr<Service>> m_services;
};
} // namespace sys