Skip to content

Commit

Permalink
First commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
arobenko committed Feb 28, 2024
0 parents commit b8b718d
Show file tree
Hide file tree
Showing 847 changed files with 122,383 additions and 0 deletions.
538 changes: 538 additions & 0 deletions CMakeLists.txt

Large diffs are not rendered by default.

674 changes: 674 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

12 changes: 12 additions & 0 deletions README.md
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.

35 changes: 35 additions & 0 deletions cc_tools_qt_plugin/cc_ublox/Message.cpp
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
27 changes: 27 additions & 0 deletions cc_tools_qt_plugin/cc_ublox/Message.h
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
8 changes: 8 additions & 0 deletions cc_tools_qt_plugin/cc_ublox/Version.h
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");
Loading

0 comments on commit b8b718d

Please sign in to comment.