-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit b8b718d
Showing
847 changed files
with
122,383 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Overview | ||
This repository contains code **generated** by the [commsdsl2tools_qt](https://github.com/commschamp/commsdsl) | ||
using the [CommsDSL](https://github.com/commschamp/CommsDSL-Specification) protocol definition schema files | ||
residing in the [cc.ublox.commsdsl](https://github.com/commschamp/cc.ublox.commsdsl) project. | ||
|
||
Applicable Documentation: | ||
|
||
- [Visual Protocol Analysis](https://github.com/commschamp/commsdsl/blob/master/doc/VisualProtocolAnalysis.md) | ||
|
||
Any issues, questions and/or feature requests | ||
should be submitted against [cc.ublox.commsdsl](https://github.com/commschamp/cc.ublox.commsdsl) project. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
// Generated by commsdsl2tools_qt v6.3.0 | ||
|
||
#include "Message.h" | ||
|
||
namespace cc_tools_qt_plugin | ||
{ | ||
|
||
namespace cc_ublox | ||
{ | ||
|
||
namespace | ||
{ | ||
|
||
QVariantList createProps() | ||
{ | ||
QVariantList props; | ||
return props; | ||
} | ||
|
||
} // namespace | ||
|
||
QString Message::idAsStringImpl() const | ||
{ | ||
return "0x" + QString("%1").arg(static_cast<unsigned long long>(getId()), 4, 16, QChar('0')).toUpper(); | ||
} | ||
|
||
const QVariantList& Message::extraTransportFieldsPropertiesImpl() const | ||
{ | ||
static const QVariantList Props = createProps(); | ||
return Props; | ||
} | ||
|
||
} // namespace cc_ublox | ||
|
||
} // namespace cc_tools_qt_plugin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
// Generated by commsdsl2tools_qt v6.3.0 | ||
|
||
#pragma once | ||
|
||
#include "cc_tools_qt/MessageBase.h" | ||
#include "cc_tools_qt_plugin/cc_ublox/Version.h" | ||
#include "cc_ublox/Message.h" | ||
|
||
namespace cc_tools_qt_plugin | ||
{ | ||
|
||
namespace cc_ublox | ||
{ | ||
|
||
class Message : public | ||
cc_tools_qt::MessageBase< | ||
::cc_ublox::Message | ||
> | ||
{ | ||
protected: | ||
virtual QString idAsStringImpl() const override; | ||
virtual const QVariantList& extraTransportFieldsPropertiesImpl() const override; | ||
}; | ||
|
||
} // namespace cc_ublox | ||
|
||
} // namespace cc_tools_qt_plugin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
// Generated by commsdsl2tools_qt v6.3.0 | ||
|
||
#pragma once | ||
|
||
#include "cc_tools_qt/version.h" | ||
|
||
static_assert(CC_TOOLS_QT_MAKE_VERSION(5, 1, 0) <= cc_tools_qt::version(), | ||
"The version of cc_tools_qt library is too old"); |
Oops, something went wrong.