Skip to content

Commit 4c86a01

Browse files
committed
Release v3.0.2
2 parents f5b5f56 + 1a11120 commit 4c86a01

46 files changed

Lines changed: 54 additions & 47 deletions

Some content is hidden

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

CMakeLists.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,8 @@ function (cc_plugin protocol interface)
122122
)
123123

124124
set(extra_link_opts)
125-
if ((CMAKE_COMPILER_IS_GNUCC) OR ("${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang"))
125+
if ((NOT OPT_WITH_DEFAULT_SANITIZERS) AND
126+
((CMAKE_COMPILER_IS_GNUCC) OR ("${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang")))
126127
set(extra_link_opts "-Wl,--no-undefined")
127128
endif ()
128129

cc_tools_qt_plugin/Message/cc_mqtt5/Message.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2tools_qt v7.0.2
1+
// Generated by commsdsl2tools_qt v7.0.3
22

33
#include "Message.h"
44

cc_tools_qt_plugin/Message/cc_mqtt5/Message.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2tools_qt v7.0.2
1+
// Generated by commsdsl2tools_qt v7.0.3
22

33
#pragma once
44

cc_tools_qt_plugin/Message/cc_mqtt5/factory/MsgFactory.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2tools_qt v7.0.2
1+
// Generated by commsdsl2tools_qt v7.0.3
22

33
#include "MsgFactory.h"
44

cc_tools_qt_plugin/Message/cc_mqtt5/factory/MsgFactory.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2tools_qt v7.0.2
1+
// Generated by commsdsl2tools_qt v7.0.3
22

33
#pragma once
44

cc_tools_qt_plugin/Message/cc_mqtt5/frame/Frame.cpp

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2tools_qt v7.0.2
1+
// Generated by commsdsl2tools_qt v7.0.3
22

33
#include "Frame.h"
44

@@ -83,6 +83,11 @@ cc_tools_qt::ToolsMessagePtr Frame::createMessageImpl(const QString& idAsString,
8383
return m_pImpl->createMessage(idAsString, idx);
8484
}
8585

86+
Frame::DataSeq Frame::writeProtMsgImpl(const void* protInterface)
87+
{
88+
return m_pImpl->writeProtMsg(protInterface);
89+
}
90+
8691
} // namespace frame
8792

8893
} // namespace cc_mqtt5

cc_tools_qt_plugin/Message/cc_mqtt5/frame/Frame.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2tools_qt v7.0.2
1+
// Generated by commsdsl2tools_qt v7.0.3
22

33
#pragma once
44

@@ -33,6 +33,7 @@ class Frame : public cc_tools_qt::ToolsFrame
3333
virtual cc_tools_qt::ToolsMessagePtr createExtraInfoMessageImpl() override;
3434
virtual cc_tools_qt::ToolsMessagesList createAllMessagesImpl() override;
3535
virtual cc_tools_qt::ToolsMessagePtr createMessageImpl(const QString& idAsString, unsigned idx) override;
36+
virtual DataSeq writeProtMsgImpl(const void* protInterface) override;
3637

3738
private:
3839
std::unique_ptr<FrameImpl> m_pImpl;

cc_tools_qt_plugin/Message/cc_mqtt5/frame/FrameProtTransportMessage.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2tools_qt v7.0.2
1+
// Generated by commsdsl2tools_qt v7.0.3
22

33
#pragma once
44

cc_tools_qt_plugin/Message/cc_mqtt5/frame/FrameTransportMessage.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2tools_qt v7.0.2
1+
// Generated by commsdsl2tools_qt v7.0.3
22

33
#include "FrameTransportMessage.h"
44

cc_tools_qt_plugin/Message/cc_mqtt5/frame/FrameTransportMessage.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2tools_qt v7.0.2
1+
// Generated by commsdsl2tools_qt v7.0.3
22

33
#pragma once
44

0 commit comments

Comments
 (0)