COMMS
Template library intended to help with implementation of communication protocols.
Loading...
Searching...
No Matches
ProtocolLayerBase.h
1//
2// Copyright 2014 - 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
11
12namespace comms
13{
14
15namespace protocol
16{
17
18namespace details
19{
20
21template <
22 typename TField,
23 typename TNextLayer,
24 typename TDerived,
25 typename... TOptions>
26using ProtocolLayerBase =
27 comms::protocol::ProtocolLayerBase<TField, TNextLayer, TDerived, TOptions...>;
28
29} // namespace details
30
31} // namespace protocol
32
33} // namespace comms
Contains definition of comms::protocol::ProtocolLayerBase.
Base class for all the middle (non MsgDataLayer) protocol transport layers.
Definition ProtocolLayerBase.h:61
Main namespace for all classes / functions of COMMS library.