C++ Channel
Loading...
Searching...
No Matches
static_channel.hpp
Go to the documentation of this file.
1// Copyright (C) 2020-2025 Andrei Avram
2
3#ifndef MSD_CHANNEL_STATIC_CHANNEL_HPP_
4#define MSD_CHANNEL_STATIC_CHANNEL_HPP_
5
6#include "channel.hpp"
7#include "storage.hpp"
8
9#include <cstdlib>
10
13namespace msd {
14
27template <typename T, std::size_t Capacity>
29
30} // namespace msd
31
32#endif // MSD_CHANNEL_STATIC_CHANNEL_HPP_
Thread-safe container for sharing data between threads.
Definition channel.hpp:87