Files
MuditaOS/module-sys/Service/Channel.hpp
Radoslaw Wicik a8573a404c Apply new style
2020-03-17 10:03:16 +01:00

21 lines
224 B
C++

#pragma once
#include <memory>
namespace sys
{
class Service;
class Channel
{
public:
Channel()
{}
std::vector<std::shared_ptr<Service>> m_services;
};
} // namespace sys