Skip to content

Commit d87d0ae

Browse files
committed
Removed "ExtendingClass" definition in the frame layers.
1 parent 98d662a commit d87d0ae

6 files changed

Lines changed: 0 additions & 30 deletions

File tree

include/comms/frame/ChecksumLayer.h

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -73,11 +73,6 @@ class ChecksumLayer : public comms::frame::details::ChecksumLayerBase<TField, TC
7373
/// @brief Provided checksum calculation algorithm
7474
using ChecksumCalc = TCalc;
7575

76-
/// @brief Type of real extending class
77-
/// @details Updated when @ref comms::option::ExtendingClass extension option us used,
78-
/// aliasing @b void if the options is not used.
79-
using ExtendingClass = typename ParsedOptionsInternal::ExtendingClass;
80-
8176
/// @brief Default constructor.
8277
ChecksumLayer() = default;
8378

include/comms/frame/ChecksumPrefixLayer.h

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -75,11 +75,6 @@ class ChecksumPrefixLayer : public comms::frame::details::ChecksumPrefixLayerBas
7575
/// @brief Provided checksum calculation algorithm
7676
using ChecksumCalc = TCalc;
7777

78-
/// @brief Type of real extending class
79-
/// @details Updated when @ref comms::option::ExtendingClass extension option us used,
80-
/// aliasing @b void if the options is not used.
81-
using ExtendingClass = typename ParsedOptionsInternal::ExtendingClass;
82-
8378
/// @brief Default constructor.
8479
ChecksumPrefixLayer() = default;
8580

include/comms/frame/MsgIdLayer.h

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -83,11 +83,6 @@ class MsgIdLayer : public comms::frame::details::MsgIdLayerBase<TField, TMessage
8383
/// @brief Message factory class
8484
using MsgFactory = typename ParsedOptionsInternal::template MsgFactory<TMessage, TAllMessages>;
8585

86-
/// @brief Type of real extending class
87-
/// @details Updated when @ref comms::option::ExtendingClass extension option us used,
88-
/// aliasing @b void if the options is not used.
89-
using ExtendingClass = typename ParsedOptionsInternal::ExtendingClass;
90-
9186
/// @brief All supported message types bundled in std::tuple.
9287
using AllMessages = TAllMessages;
9388

include/comms/frame/MsgSizeLayer.h

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,6 @@ class MsgSizeLayer : public comms::frame::details::MsgSizeLayerBase<TField, TNex
5555
/// @brief Type of the field object used to read/write remaining size value.
5656
using Field = typename BaseImpl::Field;
5757

58-
/// @brief Type of real extending class
59-
/// @details Updated when @ref comms::option::ExtendingClass extension option us used,
60-
/// aliasing @b void if the options is not used.
61-
using ExtendingClass = typename ParsedOptionsInternal::ExtendingClass;
62-
6358
/// @brief Default constructor
6459
explicit MsgSizeLayer() = default;
6560

include/comms/frame/SyncPrefixLayer.h

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,6 @@ class SyncPrefixLayer : public comms::frame::details::SyncPrefixLayerBase<TField
5757
/// @brief Type of the field object used to read/write "sync" value.
5858
using Field = typename BaseImpl::Field;
5959

60-
/// @brief Type of real extending class
61-
/// @details Updated when @ref comms::option::ExtendingClass extension option us used,
62-
/// aliasing @b void if the options is not used.
63-
using ExtendingClass = typename ParsedOptionsInternal::ExtendingClass;
64-
6560
/// @brief Default constructor
6661
SyncPrefixLayer() = default;
6762

include/comms/frame/TransportValueLayer.h

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -69,11 +69,6 @@ class TransportValueLayer : public comms::frame::details::TransportValueLayerBas
6969
/// @brief Type of the field object used to read/write "sync" value.
7070
using Field = typename BaseImpl::Field;
7171

72-
/// @brief Type of real extending class
73-
/// @details Updated when @ref comms::option::ExtendingClass extension option us used,
74-
/// aliasing @b void if the options is not used.
75-
using ExtendingClass = typename ParsedOptionsInternal::ExtendingClass;
76-
7772
/// @brief Default constructor
7873
TransportValueLayer() = default;
7974

0 commit comments

Comments
 (0)