mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-01-27 07:21:00 -05:00
26 lines
171 B
C++
26 lines
171 B
C++
#pragma once
|
|
|
|
#include <memory>
|
|
|
|
|
|
namespace sys
|
|
{
|
|
|
|
|
|
class Service;
|
|
|
|
class Channel
|
|
{
|
|
|
|
public:
|
|
Channel()
|
|
{
|
|
}
|
|
|
|
|
|
std::vector<std::shared_ptr<Service>> m_services;
|
|
};
|
|
|
|
|
|
}
|