Skip to content

Commit f6dacb6

Browse files
committed
Release v3.0.2
2 parents 0dcd3d1 + 2829895 commit f6dacb6

72 files changed

Lines changed: 80 additions & 73 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
@@ -135,7 +135,8 @@ function (cc_plugin protocol interface)
135135
)
136136

137137
set(extra_link_opts)
138-
if ((CMAKE_COMPILER_IS_GNUCC) OR ("${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang"))
138+
if ((NOT OPT_WITH_DEFAULT_SANITIZERS) AND
139+
((CMAKE_COMPILER_IS_GNUCC) OR ("${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang")))
139140
set(extra_link_opts "-Wl,--no-undefined")
140141
endif ()
141142

cc_tools_qt_plugin/Message/cc_mqttsn/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_mqttsn/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_mqttsn/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_mqttsn/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_mqttsn/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_mqttsn

cc_tools_qt_plugin/Message/cc_mqttsn/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_mqttsn/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_mqttsn/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_mqttsn/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)