Skip to content

Commit f4cfd3c

Browse files
committed
Release 2024-03-05.
2 parents fc4ef04 + 0c1b604 commit f4cfd3c

File tree

1,255 files changed

+1361
-1346
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,255 files changed

+1361
-1346
lines changed

.appveyor.yml

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
image:
22
- Visual Studio 2022
33
- Visual Studio 2019
4-
- Visual Studio 2017
54

65
init:
76
- git config --global core.autocrlf input
@@ -18,8 +17,8 @@ configuration:
1817
- Release
1918

2019
environment:
21-
COMMS_BRANCH: v5.2.1
22-
COMMSDSL_BRANCH: v6.2.1
20+
COMMS_BRANCH: v5.2.2
21+
COMMSDSL_BRANCH: v6.3
2322
matrix:
2423
- CPP_STD: 11
2524
- CPP_STD: 14
@@ -28,28 +27,26 @@ environment:
2827

2928
matrix:
3029
fast_finish: false
31-
exclude:
32-
- image: Visual Studio 2015
33-
CPP_STD: 17
34-
- image: Visual Studio 2015
35-
CPP_STD: 20
36-
- image: Visual Studio 2017
37-
CPP_STD: 20
3830

3931
install:
4032
- call script\appveyor_install.bat
33+
- set PATH=%PATH%;%QTDIR%\bin
4134
- set BUILD_DIR=%APPVEYOR_BUILD_FOLDER%\build.%PLATFORM%.%CONFIGURATION%.%TOOLCHAIN%
4235
- if exist %BUILD_DIR% rmdir /S /Q %BUILD_DIR%
4336
- set COMMS_TAG=%COMMS_BRANCH%
4437
- set COMMSDSL_TAG=%COMMSDSL_BRANCH%
4538
- set COMMON_INSTALL_DIR=%BUILD_DIR%\install
4639
- set COMMON_BUILD_TYPE=%CONFIGURATION%
4740
- set COMMON_CXX_STANDARD=%CPP_STD%
41+
- set GENERATOR="%CMAKE_GENERATOR%"
42+
- set PLATFORM="%CMAKE_PLATFORM%"
4843
- call script\prepare_externals.bat
4944

5045
build_script:
5146
- cd %BUILD_DIR%
52-
- cmake .. -DCMAKE_BUILD_TYPE=%CONFIGURATION% -G "NMake Makefiles" -DBOOST_ROOT="%BOOST_DIR%" -DBoost_USE_STATIC_LIBS=ON -DCMAKE_CXX_STANDARD=%CPP_STD% -DCMAKE_INSTALL_PREFIX=install -DFORCE_EXTRA_BOOST_LIBS=ON -DCMAKE_PREFIX_PATH="%COMMON_INSTALL_DIR%"
53-
- nmake install
47+
- cmake .. -DCMAKE_BUILD_TYPE=%CONFIGURATION% -G "%CMAKE_GENERATOR%" %PLATFORM_PARAM% ^
48+
-DBOOST_ROOT="%BOOST_DIR%" -DBoost_USE_STATIC_LIBS=ON -DCMAKE_CXX_STANDARD=%CPP_STD% ^
49+
-DCMAKE_INSTALL_PREFIX=install -DFORCE_EXTRA_BOOST_LIBS=ON -DCMAKE_PREFIX_PATH="%COMMON_INSTALL_DIR%"
50+
- cmake --build . --config %CONFIGURATION% --target install --parallel %NUMBER_OF_PROCESSORS%
5451

5552

.github/workflows/actions_build.yml

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ name: Github Actions Build
33
on: [push]
44

55
env:
6-
COMMS_BRANCH: v5.2.1
7-
COMMSDSL_BRANCH: v6.2.1
6+
COMMS_BRANCH: v5.2.2
7+
COMMSDSL_BRANCH: v6.3
88

99
jobs:
1010

@@ -127,6 +127,9 @@ jobs:
127127
type: [Debug, Release, MinSizeRel]
128128
cc_ver: [9, 10, 11, 12]
129129
cpp: [11, 14, 17, 20]
130+
exclude:
131+
- cc_ver: 12
132+
cpp: 20
130133

131134
steps:
132135
- uses: actions/checkout@v2
@@ -299,8 +302,16 @@ jobs:
299302
fail-fast: false
300303
matrix:
301304
type: [Debug, Release, MinSizeRel]
302-
cc_ver: [12, 13, 14]
305+
cc_ver: [12, 13, 14, 15]
303306
cpp: [11, 14, 17, 20]
307+
exclude:
308+
- cc_ver: 12
309+
cpp: 20
310+
- cc_ver: 13
311+
cpp: 20
312+
- cc_ver: 14
313+
cpp: 20
314+
304315

305316
steps:
306317
- uses: actions/checkout@v2

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ option (FORCE_EXTRA_BOOST_LIBS "Force linking to extra boost libraries" OFF)
77
option (USE_SANITIZERS "Compile with sanitizers." OFF)
88

99
set (CMAKE_CXX_STANDARD 11 CACHE STRING "The C++ standard to use")
10-
set (MIN_COMMSDSL_VERSION "6.2.4")
10+
set (MIN_COMMSDSL_VERSION "6.3")
1111

1212
include(GNUInstallDirs)
1313

howtos/howto1/include/howto1/Interface.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.2.4
1+
// Generated by commsdsl2comms v6.3.0
22

33
/// @file
44
/// @brief Contains definition of <b>"Interface"</b> interface class.

howtos/howto1/include/howto1/InterfaceCommon.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.2.4
1+
// Generated by commsdsl2comms v6.3.0
22

33
/// @file
44
/// @brief Contains common template parameters independent functionality of

howtos/howto1/include/howto1/MsgId.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.2.4
1+
// Generated by commsdsl2comms v6.3.0
22

33
/// @file
44
/// @brief Contains definition of message ids enumeration.

howtos/howto1/include/howto1/Version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.2.4
1+
// Generated by commsdsl2comms v6.3.0
22

33
/// @file
44
/// @brief Contains protocol version definition.
@@ -22,5 +22,5 @@ inline constexpr unsigned specVersion()
2222
} // namespace howto1
2323

2424
// Generated compile time check for minimal supported version of the COMMS library
25-
static_assert(COMMS_MAKE_VERSION(5, 2, 1) <= comms::version(),
25+
static_assert(COMMS_MAKE_VERSION(5, 2, 2) <= comms::version(),
2626
"The version of COMMS library is too old");

howtos/howto1/include/howto1/dispatch/DispatchClientInputMessage.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.2.4
1+
// Generated by commsdsl2comms v6.3.0
22

33
/// @file
44
/// @brief Contains dispatch to handling function(s) for client input input messages.

howtos/howto1/include/howto1/dispatch/DispatchMessage.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.2.4
1+
// Generated by commsdsl2comms v6.3.0
22

33
/// @file
44
/// @brief Contains dispatch to handling function(s) for all input messages.

howtos/howto1/include/howto1/dispatch/DispatchServerInputMessage.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.2.4
1+
// Generated by commsdsl2comms v6.3.0
22

33
/// @file
44
/// @brief Contains dispatch to handling function(s) for client input input messages.

howtos/howto1/include/howto1/factory/AllMessagesDynMemMsgFactory.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.2.4
1+
// Generated by commsdsl2comms v6.3.0
22

33
/// @file
44
/// @brief Contains message factory with dynamic memory allocation for all the messages.

howtos/howto1/include/howto1/factory/ClientInputMessagesDynMemMsgFactory.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.2.4
1+
// Generated by commsdsl2comms v6.3.0
22

33
/// @file
44
/// @brief Contains message factory with dynamic memory allocation for the client input messages.

howtos/howto1/include/howto1/factory/ServerInputMessagesDynMemMsgFactory.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.2.4
1+
// Generated by commsdsl2comms v6.3.0
22

33
/// @file
44
/// @brief Contains message factory with dynamic memory allocation for the server input messages.

howtos/howto1/include/howto1/field/FieldBase.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.2.4
1+
// Generated by commsdsl2comms v6.3.0
22

33
/// @file
44
/// @brief Contains definition of base class of all the fields.

howtos/howto1/include/howto1/field/InterfaceFlags.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.2.4
1+
// Generated by commsdsl2comms v6.3.0
22

33
/// @file
44
/// @brief Contains definition of <b>"InterfaceFlags"</b> field.

howtos/howto1/include/howto1/field/InterfaceFlagsCommon.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.2.4
1+
// Generated by commsdsl2comms v6.3.0
22

33
/// @file
44
/// @brief Contains common template parameters independent functionality of

howtos/howto1/include/howto1/field/MsgId.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.2.4
1+
// Generated by commsdsl2comms v6.3.0
22

33
/// @file
44
/// @brief Contains definition of <b>"MsgId"</b> field.

howtos/howto1/include/howto1/field/MsgIdCommon.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.2.4
1+
// Generated by commsdsl2comms v6.3.0
22

33
/// @file
44
/// @brief Contains common template parameters independent functionality of

howtos/howto1/include/howto1/frame/Frame.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.2.4
1+
// Generated by commsdsl2comms v6.3.0
22

33
/// @file
44
/// @brief Contains definition of <b>"Frame"</b> frame class.

howtos/howto1/include/howto1/frame/FrameCommon.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.2.4
1+
// Generated by commsdsl2comms v6.3.0
22

33
/// @file
44
/// @brief Contains common template parameters independent functionality of

howtos/howto1/include/howto1/input/AllMessages.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.2.4
1+
// Generated by commsdsl2comms v6.3.0
22

33
/// @file
44
/// @brief Contains definition of the AllMessages messages bundle.

howtos/howto1/include/howto1/input/ClientInputMessages.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.2.4
1+
// Generated by commsdsl2comms v6.3.0
22

33
/// @file
44
/// @brief Contains definition of the ClientInputMessages messages bundle.

howtos/howto1/include/howto1/input/ServerInputMessages.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.2.4
1+
// Generated by commsdsl2comms v6.3.0
22

33
/// @file
44
/// @brief Contains definition of the ServerInputMessages messages bundle.

howtos/howto1/include/howto1/message/Msg1.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.2.4
1+
// Generated by commsdsl2comms v6.3.0
22

33
/// @file
44
/// @brief Contains definition of <b>"Message 1"</b> message and its fields.

howtos/howto1/include/howto1/message/Msg1Common.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.2.4
1+
// Generated by commsdsl2comms v6.3.0
22

33
/// @file
44
/// @brief Contains common template parameters independent functionality of

howtos/howto1/include/howto1/message/Msg2.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.2.4
1+
// Generated by commsdsl2comms v6.3.0
22

33
/// @file
44
/// @brief Contains definition of <b>"Message 2"</b> message and its fields.

howtos/howto1/include/howto1/message/Msg2Common.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.2.4
1+
// Generated by commsdsl2comms v6.3.0
22

33
/// @file
44
/// @brief Contains common template parameters independent functionality of

howtos/howto1/include/howto1/options/AllMessagesDynMemMsgFactoryDefaultOptions.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.2.4
1+
// Generated by commsdsl2comms v6.3.0
22

33
/// @file
44
/// @brief Contains definition of protocol all messages dynamic memory allocation message factory options.

howtos/howto1/include/howto1/options/BareMetalDefaultOptions.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.2.4
1+
// Generated by commsdsl2comms v6.3.0
22

33
/// @file
44
/// @brief Contains definition of protocol bare metal default options.

howtos/howto1/include/howto1/options/ClientDefaultOptions.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.2.4
1+
// Generated by commsdsl2comms v6.3.0
22

33
/// @file
44
/// @brief Contains definition of protocol client default options.

howtos/howto1/include/howto1/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.2.4
1+
// Generated by commsdsl2comms v6.3.0
22

33
/// @file
44
/// @brief Contains definition of protocol client input messages dynamic memory allocation message factory options.

howtos/howto1/include/howto1/options/DataViewDefaultOptions.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.2.4
1+
// Generated by commsdsl2comms v6.3.0
22

33
/// @file
44
/// @brief Contains definition of protocol data view default options.

howtos/howto1/include/howto1/options/DefaultOptions.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.2.4
1+
// Generated by commsdsl2comms v6.3.0
22

33
/// @file
44
/// @brief Contains definition of protocol default options.

howtos/howto1/include/howto1/options/ServerDefaultOptions.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.2.4
1+
// Generated by commsdsl2comms v6.3.0
22

33
/// @file
44
/// @brief Contains definition of protocol server default options.

howtos/howto1/include/howto1/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.2.4
1+
// Generated by commsdsl2comms v6.3.0
22

33
/// @file
44
/// @brief Contains definition of protocol server input messages dynamic memory allocation message factory options.

howtos/howto10/include/howto10/Interface.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.2.4
1+
// Generated by commsdsl2comms v6.3.0
22

33
/// @file
44
/// @brief Contains definition of <b>"Interface"</b> interface class.

howtos/howto10/include/howto10/InterfaceCommon.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.2.4
1+
// Generated by commsdsl2comms v6.3.0
22

33
/// @file
44
/// @brief Contains common template parameters independent functionality of

howtos/howto10/include/howto10/MsgId.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.2.4
1+
// Generated by commsdsl2comms v6.3.0
22

33
/// @file
44
/// @brief Contains definition of message ids enumeration.

howtos/howto10/include/howto10/Version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.2.4
1+
// Generated by commsdsl2comms v6.3.0
22

33
/// @file
44
/// @brief Contains protocol version definition.
@@ -22,5 +22,5 @@ inline constexpr unsigned specVersion()
2222
} // namespace howto10
2323

2424
// Generated compile time check for minimal supported version of the COMMS library
25-
static_assert(COMMS_MAKE_VERSION(5, 2, 1) <= comms::version(),
25+
static_assert(COMMS_MAKE_VERSION(5, 2, 2) <= comms::version(),
2626
"The version of COMMS library is too old");

howtos/howto10/include/howto10/dispatch/DispatchClientInputMessage.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.2.4
1+
// Generated by commsdsl2comms v6.3.0
22

33
/// @file
44
/// @brief Contains dispatch to handling function(s) for client input input messages.

howtos/howto10/include/howto10/dispatch/DispatchMessage.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.2.4
1+
// Generated by commsdsl2comms v6.3.0
22

33
/// @file
44
/// @brief Contains dispatch to handling function(s) for all input messages.

howtos/howto10/include/howto10/dispatch/DispatchServerInputMessage.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.2.4
1+
// Generated by commsdsl2comms v6.3.0
22

33
/// @file
44
/// @brief Contains dispatch to handling function(s) for client input input messages.

howtos/howto10/include/howto10/factory/AllMessagesDynMemMsgFactory.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.2.4
1+
// Generated by commsdsl2comms v6.3.0
22

33
/// @file
44
/// @brief Contains message factory with dynamic memory allocation for all the messages.

howtos/howto10/include/howto10/factory/ClientInputMessagesDynMemMsgFactory.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.2.4
1+
// Generated by commsdsl2comms v6.3.0
22

33
/// @file
44
/// @brief Contains message factory with dynamic memory allocation for the client input messages.

howtos/howto10/include/howto10/factory/ServerInputMessagesDynMemMsgFactory.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.2.4
1+
// Generated by commsdsl2comms v6.3.0
22

33
/// @file
44
/// @brief Contains message factory with dynamic memory allocation for the server input messages.

howtos/howto10/include/howto10/field/FieldBase.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.2.4
1+
// Generated by commsdsl2comms v6.3.0
22

33
/// @file
44
/// @brief Contains definition of base class of all the fields.

howtos/howto10/include/howto10/field/Flags.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.2.4
1+
// Generated by commsdsl2comms v6.3.0
22

33
/// @file
44
/// @brief Contains definition of <b>"Flags"</b> field.

howtos/howto10/include/howto10/field/FlagsCommon.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.2.4
1+
// Generated by commsdsl2comms v6.3.0
22

33
/// @file
44
/// @brief Contains common template parameters independent functionality of

howtos/howto10/include/howto10/field/MsgId.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.2.4
1+
// Generated by commsdsl2comms v6.3.0
22

33
/// @file
44
/// @brief Contains definition of <b>"MsgId"</b> field.

howtos/howto10/include/howto10/field/MsgIdCommon.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.2.4
1+
// Generated by commsdsl2comms v6.3.0
22

33
/// @file
44
/// @brief Contains common template parameters independent functionality of

0 commit comments

Comments
 (0)