COMMS
Template library intended to help with implementation of communication protocols.
Loading...
Searching...
No Matches
TransportValueLayerAdapter.h
1//
2// Copyright 2017 - 2024 (C). Alex Robenko. All rights reserved.
3//
4// This Source Code Form is subject to the terms of the Mozilla Public
5// License, v. 2.0. If a copy of the MPL was not distributed with this
6// file, You can obtain one at http://mozilla.org/MPL/2.0/.
7
8#pragma once
9
10#include "TransportValueLayerOptionsParser.h"
11
12namespace comms
13{
14
15namespace protocol
16{
17
18namespace details
19{
20
21template <typename TBase, typename... TOptions>
22using TransportValueLayerAdapterT =
23 typename TransportValueLayerOptionsParser<
24 TOptions...
25 >::template BuildPseudoBase<
26 TBase
27 >;
28
29} // namespace details
30
31} // namespace protocol
32
33} // namespace comms
Main namespace for all classes / functions of COMMS library.