├── .clang-format ├── .cmake.conf ├── .gitreview ├── .tag ├── CMakeLists.txt ├── LICENSE.Apache-2.0.txt ├── LICENSES ├── BSD-3-Clause.txt ├── GFDL-1.3-no-invariants-only.txt ├── GPL-2.0-only.txt ├── GPL-3.0-only.txt ├── LGPL-3.0-only.txt ├── LicenseRef-Qt-Commercial.txt ├── LicenseRef-protobuf.txt └── Qt-GPL-exception-1.0.txt ├── REUSE.toml ├── cmake └── FindWrapProtoc.cmake ├── coin ├── axivion │ ├── ci_config_linux.json │ └── start_analysis.sh └── module_config.yaml ├── configure.cmake ├── dependencies.yaml ├── examples ├── CMakeLists.txt ├── grpc │ ├── CMakeLists.txt │ ├── chat │ │ ├── CMakeLists.txt │ │ ├── client │ │ │ ├── CMakeLists.txt │ │ │ ├── ChatMessages │ │ │ │ ├── FileContinuationDelegate.qml │ │ │ │ ├── FileDelegate.qml │ │ │ │ ├── ImageDelegate.qml │ │ │ │ ├── TextDelegate.qml │ │ │ │ └── UserStatusDelegate.qml │ │ │ ├── ChatView.qml │ │ │ ├── LoginView.qml │ │ │ ├── Main.qml │ │ │ ├── StatusDisplay.qml │ │ │ ├── android │ │ │ │ └── res │ │ │ │ │ ├── drawable-hdpi │ │ │ │ │ └── icon.png │ │ │ │ │ ├── drawable-ldpi │ │ │ │ │ └── icon.png │ │ │ │ │ ├── drawable-mdpi │ │ │ │ │ └── icon.png │ │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ └── icon.png │ │ │ │ │ ├── drawable-xxhdpi │ │ │ │ │ └── icon.png │ │ │ │ │ └── drawable-xxxhdpi │ │ │ │ │ └── icon.png │ │ │ ├── chatengine.cpp │ │ │ ├── chatengine.h │ │ │ ├── chatmessagemodel.cpp │ │ │ ├── chatmessagemodel.h │ │ │ ├── clientworker.cpp │ │ │ ├── clientworker.h │ │ │ ├── main.cpp │ │ │ ├── res │ │ │ │ ├── attach.svg │ │ │ │ ├── generic_file.svg │ │ │ │ ├── qtchat_logo.png │ │ │ │ ├── root.crt │ │ │ │ └── send.svg │ │ │ ├── userstatusmodel.cpp │ │ │ └── userstatusmodel.h │ │ ├── doc │ │ │ ├── images │ │ │ │ ├── chat_login.webp │ │ │ │ ├── chat_room.webp │ │ │ │ └── chat_settings.webp │ │ │ └── src │ │ │ │ └── chat.qdoc │ │ ├── proto │ │ │ ├── chatmessages.proto │ │ │ └── qtgrpcchat.proto │ │ ├── server │ │ │ ├── CMakeLists.txt │ │ │ ├── credentials │ │ │ │ ├── certificates.h │ │ │ │ └── createCerts.sh │ │ │ └── main.cpp │ │ └── vcpkg.json │ ├── clientguide │ │ ├── CMakeLists.txt │ │ ├── client │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ │ ├── doc │ │ │ └── src │ │ │ │ └── clientguide.qdoc │ │ ├── proto │ │ │ └── clientguide.proto │ │ └── server │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ ├── magic8ball │ │ ├── AnimatedAnswer.qml │ │ ├── CMakeLists.txt │ │ ├── MagicBall.qml │ │ ├── MagicText.qml │ │ ├── Main.qml │ │ ├── ScaleAnimation.qml │ │ ├── doc │ │ │ ├── images │ │ │ │ └── magic8ballScreenshot.webp │ │ │ └── src │ │ │ │ └── magic8ball.qdoc │ │ ├── main.cpp │ │ ├── proto │ │ │ └── exampleservice.proto │ │ ├── server │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ │ └── vcpkg.json │ └── vehicle │ │ ├── CMakeLists.txt │ │ ├── Main.qml │ │ ├── StyledProgressBar.qml │ │ ├── StyledText.qml │ │ ├── doc │ │ ├── images │ │ │ └── vehicle.webp │ │ └── src │ │ │ └── vehicle.qdoc │ │ ├── main.cpp │ │ ├── navigationthread.cpp │ │ ├── navigationthread.h │ │ ├── proto │ │ ├── navigationservice.proto │ │ └── vehicleservice.proto │ │ ├── resources │ │ ├── direction_left.svg │ │ ├── direction_right.svg │ │ ├── direction_straight.svg │ │ └── fuel_icon.svg │ │ ├── server │ │ ├── CMakeLists.txt │ │ └── main.cpp │ │ ├── vcpkg.json │ │ ├── vehiclemanager.cpp │ │ ├── vehiclemanager.h │ │ ├── vehiclethread.cpp │ │ └── vehiclethread.h └── protobuf │ ├── CMakeLists.txt │ └── sensors │ ├── CMakeLists.txt │ ├── client │ ├── CMakeLists.txt │ ├── clientconsole.cpp │ ├── clientconsole.h │ ├── clientconsole.ui │ ├── main.cpp │ ├── sensorclient.cpp │ └── sensorclient.h │ ├── doc │ ├── images │ │ ├── client.webp │ │ └── emulator.webp │ └── sensors.qdoc │ ├── emulator │ ├── CMakeLists.txt │ ├── emulatorconsole.cpp │ ├── emulatorconsole.h │ ├── emulatorconsole.ui │ ├── main.cpp │ ├── sensoremulator.cpp │ └── sensoremulator.h │ ├── sensors.proto │ ├── tlv.proto │ └── vcpkg.json ├── licenseRule.json ├── qt_attribution.json ├── qt_cmdline.cmake ├── src ├── CMakeLists.txt ├── grpc │ ├── CMakeLists.txt │ ├── configure.cmake │ ├── doc │ │ ├── qtgrpc.qdocconf │ │ └── src │ │ │ ├── cmake-commands.qdoc │ │ │ ├── qt-add-grpc-example.qdocinc │ │ │ ├── qt-add-grpc.qdoc │ │ │ ├── qtgrpc-index.qdoc │ │ │ ├── qtgrpc-module.qdoc │ │ │ ├── qtgrpc-security.qdoc │ │ │ ├── qtgrpc-shared.qdocinc │ │ │ ├── qtgrpc-toc.qdoc │ │ │ ├── qtgrpcgen.qdoc │ │ │ ├── qtgrpcgen.qdocinc │ │ │ └── snippets │ │ │ └── qt-add-grpc-example.cmake │ ├── qabstractgrpcchannel.cpp │ ├── qabstractgrpcchannel.h │ ├── qabstractgrpcchannel_p.h │ ├── qgrpccalloptions.cpp │ ├── qgrpccalloptions.h │ ├── qgrpccallreply.cpp │ ├── qgrpccallreply.h │ ├── qgrpcchanneloptions.cpp │ ├── qgrpcchanneloptions.h │ ├── qgrpcclientbase.cpp │ ├── qgrpcclientbase.h │ ├── qgrpccommonoptions.cpp │ ├── qgrpccommonoptions_p.h │ ├── qgrpchttp2channel.cpp │ ├── qgrpchttp2channel.h │ ├── qgrpcinterceptor.cpp │ ├── qgrpcinterceptor.h │ ├── qgrpcinterceptorengine_p.h │ ├── qgrpcoperation.cpp │ ├── qgrpcoperation.h │ ├── qgrpcoperation_p.h │ ├── qgrpcoperationcontext.cpp │ ├── qgrpcoperationcontext.h │ ├── qgrpcoperationcontext_p.h │ ├── qgrpcserializationformat.cpp │ ├── qgrpcserializationformat.h │ ├── qgrpcstatus.cpp │ ├── qgrpcstatus.h │ ├── qgrpcstream.cpp │ ├── qgrpcstream.h │ ├── qtgrpcglobal.h │ ├── qtgrpclogging.cpp │ ├── qtgrpclogging_p.h │ ├── qtgrpcnamespace.h │ └── qtgrpcnamespace.qdoc ├── grpcquick │ ├── CMakeLists.txt │ ├── doc │ │ └── qtgrpcquick-qmltypes.qdoc │ ├── qqmlabstractgrpcchannel.cpp │ ├── qqmlabstractgrpcchannel.h │ ├── qqmlabstractgrpcchannel_p.h │ ├── qqmlgrpccalloptions.cpp │ ├── qqmlgrpccalloptions.h │ ├── qqmlgrpcchanneloptions.cpp │ ├── qqmlgrpcchanneloptions_p.h │ ├── qqmlgrpcfunctionalhandlers.cpp │ ├── qqmlgrpcfunctionalhandlers.h │ ├── qqmlgrpchttp2channel.cpp │ ├── qqmlgrpchttp2channel_p.h │ ├── qqmlgrpcmetadata.cpp │ ├── qqmlgrpcmetadata_p.h │ ├── qqmlgrpcnamespace_p.h │ ├── qtgrpcquicklogging.cpp │ ├── qtgrpcquicklogging_p.h │ ├── qtqmlgrpcstreamsender.cpp │ └── qtqmlgrpcstreamsender.h ├── protobuf │ ├── CMakeLists.txt │ ├── Qt6ProtobufBuildInternals.cmake │ ├── QtProtobufProperties.cmake.in │ ├── configure.cmake │ ├── doc │ │ ├── QtProtobufDoc │ │ ├── images │ │ │ ├── msvc-kit.webp │ │ │ ├── path-env-variable.webp │ │ │ └── qt-creator.webp │ │ ├── qtprotobuf.qdocconf │ │ └── src │ │ │ ├── cmake-commands.qdoc │ │ │ ├── cmake-properties.qdoc │ │ │ ├── qt-add-protobuf-example.qdocinc │ │ │ ├── qt-add-protobuf.qdoc │ │ │ ├── qtprotobuf-generated-code.qdoc │ │ │ ├── qtprotobuf-toc.qdoc │ │ │ ├── qtprotobuf.qdoc │ │ │ └── qtprotobufgen.qdoc │ ├── protobuffieldpresencechecker_p.h │ ├── protobufscalarjsonserializers_p.h │ ├── protobufscalarserializers_p.cpp │ ├── protobufscalarserializers_p.h │ ├── qabstractprotobufserializer.cpp │ ├── qabstractprotobufserializer.h │ ├── qprotobufdeserializerbase.cpp │ ├── qprotobufdeserializerbase_p.h │ ├── qprotobufjsonserializer.cpp │ ├── qprotobufjsonserializer.h │ ├── qprotobufjsonserializer_p.h │ ├── qprotobuflazymessagepointer.h │ ├── qprotobufmessage.cpp │ ├── qprotobufmessage.h │ ├── qprotobufmessage_p.h │ ├── qprotobufobject.h │ ├── qprotobufobject.qdoc │ ├── qprotobufoneof.cpp │ ├── qprotobufoneof.h │ ├── qprotobufpropertyordering.cpp │ ├── qprotobufpropertyordering.h │ ├── qprotobufpropertyorderingbuilder_p.h │ ├── qprotobufregistration.cpp │ ├── qprotobufregistration.h │ ├── qprotobufregistration_p.h │ ├── qprotobufrepeatediterator.cpp │ ├── qprotobufrepeatediterator.h │ ├── qprotobufselfcheckiterator_p.h │ ├── qprotobufserializer.cpp │ ├── qprotobufserializer.h │ ├── qprotobufserializer_p.h │ ├── qprotobufserializerbase.cpp │ ├── qprotobufserializerbase_p.h │ ├── qt_cmdline.cmake │ ├── qtprotobufdefs_p.h │ ├── qtprotobufglobal.h │ ├── qtprotobuflogging.cpp │ ├── qtprotobuflogging_p.h │ ├── qtprotobufserializerhelpers.cpp │ ├── qtprotobufserializerhelpers_p.h │ ├── qtprotobuftypes.cpp │ └── qtprotobuftypes.h ├── protobufqttypes │ ├── CMakeLists.txt │ ├── doc │ │ ├── protobufqtcoretypes.qdoc │ │ └── protobufqtguitypes.qdoc │ ├── protobufqtcoretypes │ │ ├── CMakeLists.txt │ │ ├── QtCore │ │ │ └── QtCore.proto │ │ ├── qtprotobufqtcoretypes.cpp │ │ ├── qtprotobufqtcoretypes.h │ │ ├── qtprotobufqtcoretypesglobal.h │ │ └── qtprotobufqttypescommon_p.h │ └── protobufqtguitypes │ │ ├── CMakeLists.txt │ │ ├── QtGui │ │ └── QtGui.proto │ │ ├── qtprotobufqtguitypes.cpp │ │ ├── qtprotobufqtguitypes.h │ │ └── qtprotobufqtguitypesglobal.h ├── protobufquick │ ├── CMakeLists.txt │ └── qqmlprotobuftypes_p.h ├── qt_cmdline.cmake ├── tools │ ├── CMakeLists.txt │ ├── doc │ │ └── qtprotoccommon.qdocinc │ ├── host │ │ └── CMakeLists.txt │ ├── qtgrpcgen │ │ ├── CMakeLists.txt │ │ ├── Qt6GrpcToolsMacros.cmake │ │ ├── clientdeclarationprinter.cpp │ │ ├── clientdeclarationprinter.h │ │ ├── clientdefinitionprinter.cpp │ │ ├── clientdefinitionprinter.h │ │ ├── grpctemplates.cpp │ │ ├── grpctemplates.h │ │ ├── main.cpp │ │ ├── qgrpcgenerator.cpp │ │ ├── qgrpcgenerator.h │ │ ├── qmlclientdeclarationprinter.cpp │ │ ├── qmlclientdeclarationprinter.h │ │ ├── qmlclientdefinitionprinter.cpp │ │ ├── qmlclientdefinitionprinter.h │ │ ├── serverdeclarationprinter.cpp │ │ └── serverdeclarationprinter.h │ ├── qtprotobufgen │ │ ├── CMakeLists.txt │ │ ├── Qt6ProtobufToolsMacros.cmake │ │ ├── QtProtocCommandWrapper.cmake │ │ ├── enumdeclarationprinter.cpp │ │ ├── enumdeclarationprinter.h │ │ ├── enumdefinitionprinter.cpp │ │ ├── enumdefinitionprinter.h │ │ ├── main.cpp │ │ ├── messagedeclarationprinter.cpp │ │ ├── messagedeclarationprinter.h │ │ ├── messagedefinitionprinter.cpp │ │ ├── messagedefinitionprinter.h │ │ ├── qprotobufgenerator.cpp │ │ └── qprotobufgenerator.h │ └── qtprotoccommon │ │ ├── CMakeLists.txt │ │ ├── baseprinter.cpp │ │ ├── baseprinter.h │ │ ├── commontemplates.cpp │ │ ├── commontemplates.h │ │ ├── descriptorprinterbase.h │ │ ├── generatorbase.cpp │ │ ├── generatorbase.h │ │ ├── generatorcommon.cpp │ │ ├── generatorcommon.h │ │ ├── options.cpp │ │ ├── options.h │ │ ├── qtprotocdefs.h │ │ ├── utils.cpp │ │ └── utils.h └── wellknown │ ├── CMakeLists.txt │ ├── Qt6ProtobufWellKnownTypesBuildInternals.cmake │ ├── QtProtobufWellKnownTypesExtras.cmake.in │ ├── doc │ └── qtprotobufwellknowntypes.qdoc │ ├── qprotobufanysupport.cpp │ ├── qprotobufanysupport.h │ ├── qprotobufwellknowntypesjsonserializers.cpp │ ├── qprotobufwellknowntypesjsonserializers_p.h │ └── qtprotobufwellknowntypesglobal.h └── tests ├── CMakeLists.txt ├── auto ├── CMakeLists.txt ├── grpc │ ├── CMakeLists.txt │ ├── client │ │ ├── CMakeLists.txt │ │ ├── bidistream │ │ │ ├── CMakeLists.txt │ │ │ └── tst_grpc_client_bidistream.cpp │ │ ├── clientstream │ │ │ ├── CMakeLists.txt │ │ │ └── tst_grpc_client_clientstream.cpp │ │ ├── deadline │ │ │ ├── CMakeLists.txt │ │ │ └── tst_grpc_client_deadline.cpp │ │ ├── end2end │ │ │ ├── CMakeLists.txt │ │ │ ├── event.proto │ │ │ ├── eventhub.proto │ │ │ └── tst_grpc_client_end2end.cpp │ │ ├── interceptors │ │ │ ├── CMakeLists.txt │ │ │ ├── interceptor1.proto │ │ │ ├── interceptor2.proto │ │ │ └── tst_grpc_client_interceptors.cpp │ │ ├── serverstream │ │ │ ├── BLACKLIST │ │ │ ├── CMakeLists.txt │ │ │ └── tst_grpc_client_serverstream.cpp │ │ ├── shared │ │ │ ├── CMakeLists.txt │ │ │ ├── client_service │ │ │ │ └── CMakeLists.txt │ │ │ ├── client_test_common │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── grpcclienttestbase.cpp │ │ │ │ └── grpcclienttestbase.h │ │ │ ├── mockserver │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── certificates.h │ │ │ │ ├── mockserver.cpp │ │ │ │ ├── mockserver.h │ │ │ │ └── tags.h │ │ │ ├── test_server │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── assets │ │ │ │ │ ├── cert.pem │ │ │ │ │ ├── generate.sh │ │ │ │ │ └── key.pem │ │ │ │ ├── testserver.cpp │ │ │ │ ├── testserverrunner.cpp │ │ │ │ └── testserverrunner.h │ │ │ └── test_server_go │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── main.go │ │ ├── ssl │ │ │ ├── CMakeLists.txt │ │ │ └── tst_grpc_client_ssl.cpp │ │ └── unarycall │ │ │ ├── BLACKLIST │ │ │ ├── CMakeLists.txt │ │ │ └── tst_grpc_client_unarycall.cpp │ ├── qgrpccalloptions │ │ ├── CMakeLists.txt │ │ └── tst_qgrpccalloptions.cpp │ ├── qgrpcchanneloptions │ │ ├── CMakeLists.txt │ │ └── tst_qgrpcchanneloptions.cpp │ ├── qgrpchttp2channel │ │ ├── CMakeLists.txt │ │ └── tst_qgrpchttp2channel.cpp │ ├── qgrpcserializationformat │ │ ├── CMakeLists.txt │ │ └── tst_qgrpcserializationformat.cpp │ ├── qgrpcstatus │ │ ├── CMakeLists.txt │ │ └── tst_qgrpcstatus.cpp │ ├── server │ │ ├── CMakeLists.txt │ │ └── tst_grpc_server.cpp │ └── shared │ │ ├── assets │ │ └── testfile │ │ ├── grpccommonoptions.h │ │ ├── message_latency_defs.h │ │ ├── proto │ │ └── testservice.proto │ │ └── server_proc_runner.h ├── grpcgen │ ├── CMakeLists.txt │ ├── data │ │ ├── 666-invalid-identifier.proto │ │ ├── cmake_generated │ │ │ ├── generate_package_subfolders │ │ │ │ ├── qtgrpc │ │ │ │ │ └── tests │ │ │ │ │ │ ├── qtgrpcgen_client.grpc.qpb.cpp │ │ │ │ │ │ └── qtgrpcgen_client.grpc.qpb.h │ │ │ │ └── tst_qtgrpcgen_generate_package_subfolders_exports.qpb.h │ │ │ ├── invalid-identifier │ │ │ │ ├── 666-invalid-identifier.qpb.cpp │ │ │ │ ├── 666-invalid-identifier.qpb.h │ │ │ │ ├── 666-invalid-identifier_client.grpc.qpb.cpp │ │ │ │ ├── 666-invalid-identifier_client.grpc.qpb.h │ │ │ │ ├── 666-invalid-identifier_qtprotoreg.cpp │ │ │ │ ├── tst_qtgrpcgen_invalid-identifier_exports.qpb.h │ │ │ │ └── tst_qtgrpcgen_protobuf_invalid-identifier_exports.qpb.h │ │ │ ├── no_options │ │ │ │ ├── qtgrpcgen_client.grpc.qpb.cpp │ │ │ │ ├── qtgrpcgen_client.grpc.qpb.h │ │ │ │ └── tst_qtgrpcgen_no_options_exports.qpb.h │ │ │ ├── protobuf_common │ │ │ │ ├── qtgrpc │ │ │ │ │ └── tests │ │ │ │ │ │ ├── qtgrpcgen.qpb.cpp │ │ │ │ │ │ ├── qtgrpcgen.qpb.h │ │ │ │ │ │ └── qtgrpcgen_qtprotoreg.cpp │ │ │ │ └── tst_qtgrpcgen_protobuf_common_exports.qpb.h │ │ │ └── qml │ │ │ │ ├── qmlqtgrpcgen_client.grpc.qpb.cpp │ │ │ │ ├── qmlqtgrpcgen_client.grpc.qpb.h │ │ │ │ ├── qtgrpcgen.qpb.cpp │ │ │ │ ├── qtgrpcgen.qpb.h │ │ │ │ ├── qtgrpcgen_client.grpc.qpb.cpp │ │ │ │ ├── qtgrpcgen_client.grpc.qpb.h │ │ │ │ ├── qtgrpcgen_qtprotoreg.cpp │ │ │ │ └── tst_qtgrpcgen_qml_exports.qpb.h │ │ ├── cmd_line_generated │ │ │ ├── export_macro_custom_file_name │ │ │ │ ├── qtgrpcgen_client.grpc.qpb.cpp │ │ │ │ └── qtgrpcgen_client.grpc.qpb.h │ │ │ ├── export_macro_custom_file_name_force_generate │ │ │ │ ├── custom_file_name.hpp │ │ │ │ ├── qtgrpcgen_client.grpc.qpb.cpp │ │ │ │ └── qtgrpcgen_client.grpc.qpb.h │ │ │ ├── export_macro_custom_file_name_skip_generate │ │ │ │ ├── qtgrpcgen_client.grpc.qpb.cpp │ │ │ │ └── qtgrpcgen_client.grpc.qpb.h │ │ │ ├── header_guard_filename │ │ │ │ ├── qtgrpcgen_client.grpc.qpb.cpp │ │ │ │ └── qtgrpcgen_client.grpc.qpb.h │ │ │ ├── header_guard_pragma │ │ │ │ ├── qtgrpcgen_client.grpc.qpb.cpp │ │ │ │ └── qtgrpcgen_client.grpc.qpb.h │ │ │ ├── no_options │ │ │ │ ├── qtgrpcgen_client.grpc.qpb.cpp │ │ │ │ └── qtgrpcgen_client.grpc.qpb.h │ │ │ ├── qml │ │ │ │ ├── qmlqtgrpcgen_client.grpc.qpb.cpp │ │ │ │ ├── qmlqtgrpcgen_client.grpc.qpb.h │ │ │ │ ├── qtgrpcgen_client.grpc.qpb.cpp │ │ │ │ └── qtgrpcgen_client.grpc.qpb.h │ │ │ ├── qml_uri │ │ │ │ ├── qmlqtgrpcgen_client.grpc.qpb.cpp │ │ │ │ ├── qmlqtgrpcgen_client.grpc.qpb.h │ │ │ │ ├── qtgrpcgen_client.grpc.qpb.cpp │ │ │ │ └── qtgrpcgen_client.grpc.qpb.h │ │ │ ├── qml_uri_export_macro │ │ │ │ ├── qmlqtgrpcgen_client.grpc.qpb.cpp │ │ │ │ ├── qmlqtgrpcgen_client.grpc.qpb.h │ │ │ │ ├── qtgrpcgen_client.grpc.qpb.cpp │ │ │ │ └── qtgrpcgen_client.grpc.qpb.h │ │ │ └── qml_uri_export_macro_generate_package_subfolders │ │ │ │ └── qtgrpc │ │ │ │ └── tests │ │ │ │ ├── qmlqtgrpcgen_client.grpc.qpb.cpp │ │ │ │ ├── qmlqtgrpcgen_client.grpc.qpb.h │ │ │ │ ├── qtgrpcgen_client.grpc.qpb.cpp │ │ │ │ └── qtgrpcgen_client.grpc.qpb.h │ │ └── qtgrpcgen.proto │ └── tst_qtgrpcgen.cpp ├── grpcquick │ ├── CMakeLists.txt │ ├── calloptions │ │ ├── CMakeLists.txt │ │ ├── qml │ │ │ └── tst_calloptions.qml │ │ └── tst_calloptions_qml.cpp │ ├── channeloptions │ │ ├── CMakeLists.txt │ │ ├── qml │ │ │ └── tst_channeloptions.qml │ │ └── tst_channeloptions_qml.cpp │ ├── client │ │ ├── CMakeLists.txt │ │ ├── bidistream │ │ │ ├── CMakeLists.txt │ │ │ ├── qml │ │ │ │ └── tst_grpc_client_bidistream.qml │ │ │ └── tst_grpc_client_bidistream_qml.cpp │ │ ├── clientstream │ │ │ ├── CMakeLists.txt │ │ │ ├── qml │ │ │ │ └── tst_grpc_client_clientstream.qml │ │ │ └── tst_grpc_client_clientstream_qml.cpp │ │ ├── serverstream │ │ │ ├── CMakeLists.txt │ │ │ ├── qml │ │ │ │ └── tst_grpc_client_serverstream.qml │ │ │ └── tst_grpc_client_serverstream_qml.cpp │ │ └── unarycall │ │ │ ├── CMakeLists.txt │ │ │ ├── qml │ │ │ └── tst_grpc_client_unarycall.qml │ │ │ └── tst_grpc_client_unarycall_qml.cpp │ ├── http2channel │ │ ├── CMakeLists.txt │ │ ├── qml │ │ │ └── tst_grpchttp2channel.qml │ │ └── tst_grpchttp2channel_qml.cpp │ └── metadata │ │ ├── CMakeLists.txt │ │ ├── qml │ │ └── tst_metadata.qml │ │ └── tst_metadata_qml.cpp ├── protobuf │ ├── CMakeLists.txt │ ├── basic │ │ ├── CMakeLists.txt │ │ ├── proto │ │ │ ├── basicmessages.proto │ │ │ ├── fieldindexrange.proto │ │ │ ├── generate_unknownfield_data.py │ │ │ ├── mapmessages.proto │ │ │ ├── repeatedmessages.proto │ │ │ ├── repeatednonpackedmessages.proto │ │ │ └── unknownfield.proto │ │ ├── qtprotobufserializertestdata.h │ │ ├── tst_protobuf_basictypes.cpp │ │ ├── tst_protobuf_deserialization_basictypes.cpp │ │ ├── tst_protobuf_deserialization_complex_maptypes.cpp │ │ ├── tst_protobuf_deserialization_maptypes.cpp │ │ ├── tst_protobuf_deserialization_repeatedtypes.cpp │ │ ├── tst_protobuf_internals.cpp │ │ ├── tst_protobuf_maptypes.cpp │ │ ├── tst_protobuf_non_packed_repeatedtypes.cpp │ │ ├── tst_protobuf_raw_serializers.cpp │ │ ├── tst_protobuf_repeatedtypes.cpp │ │ ├── tst_protobuf_serialization_basictypes.cpp │ │ ├── tst_protobuf_serialization_complex_maptypes.cpp │ │ ├── tst_protobuf_serialization_maptypes.cpp │ │ ├── tst_protobuf_serialization_repeatedtypes.cpp │ │ └── tst_protobuf_unknown_field.cpp │ ├── conformance │ │ ├── CMakeLists.txt │ │ ├── data │ │ │ ├── conformance.proto │ │ │ ├── qt_attribution.json │ │ │ └── test_messages_proto3.proto │ │ ├── expect_failing_tests_v3.21.9.0.txt │ │ └── tst_protobuf_conformance.cpp │ ├── converters │ │ ├── CMakeLists.txt │ │ └── tst_protobuf_converter.cpp │ ├── duplicated_metatypes │ │ ├── CMakeLists.txt │ │ ├── proto │ │ │ ├── duplicated_metatypes.proto │ │ │ └── duplicated_metatypes_external.proto │ │ └── tst_protobuf_duplicatedmetatypes.cpp │ ├── enums │ │ ├── CMakeLists.txt │ │ ├── enummessages.proto │ │ ├── tst_protobuf_deserialization_enumtypes.cpp │ │ ├── tst_protobuf_enumtypes.cpp │ │ └── tst_protobuf_serialization_enumtypes.cpp │ ├── externalpackage │ │ ├── CMakeLists.txt │ │ ├── proto │ │ │ ├── externalpackage.proto │ │ │ └── externalpackageconsumer.proto │ │ └── tst_protobuf_externalpackage.cpp │ ├── extranamespace │ │ ├── CMakeLists.txt │ │ ├── proto │ │ │ └── extranamespace.proto │ │ └── tst_protobuf_extranamespace.cpp │ ├── json │ │ ├── CMakeLists.txt │ │ ├── tst_protobuf_deserialization_json_basictypes.cpp │ │ ├── tst_protobuf_deserialization_json_enumtypes.cpp │ │ ├── tst_protobuf_deserialization_json_maptypes.cpp │ │ ├── tst_protobuf_deserialization_json_repeatedtypes.cpp │ │ ├── tst_protobuf_serialization_json_basictypes.cpp │ │ ├── tst_protobuf_serialization_json_enumtypes.cpp │ │ ├── tst_protobuf_serialization_json_maptypes.cpp │ │ └── tst_protobuf_serialization_json_repeatedtypes.cpp │ ├── nested │ │ ├── CMakeLists.txt │ │ ├── proto │ │ │ ├── externalpackage.proto │ │ │ └── nestedmessages.proto │ │ └── tst_protobuf_nestedtypes.cpp │ ├── nopackage │ │ ├── CMakeLists.txt │ │ └── tst_protobuf_nopackagetypes.cpp │ ├── optional │ │ ├── CMakeLists.txt │ │ ├── tst_protobuf_deserialization_optional.cpp │ │ ├── tst_protobuf_optional.cpp │ │ └── tst_protobuf_serialization_optional.cpp │ ├── qprotobuflazymessagepointer │ │ ├── CMakeLists.txt │ │ └── tst_qprotobuflazymessagepointer.cpp │ ├── qprotobufoneof │ │ ├── CMakeLists.txt │ │ └── tst_qprotobufoneof.cpp │ ├── qprotobufpropertyorderingbuilder │ │ ├── CMakeLists.txt │ │ └── tst_qprotobufpropertyorderingbuilder.cpp │ ├── recursive │ │ ├── CMakeLists.txt │ │ ├── recursive.proto │ │ └── tst_protobuf_recursive.cpp │ ├── sequence │ │ ├── CMakeLists.txt │ │ ├── proto │ │ │ └── sequence.proto │ │ └── tst_protobuf_sequence.cpp │ ├── shared │ │ └── qtprotobuftestscommon.h │ ├── syntax │ │ ├── CMakeLists.txt │ │ └── tst_protobuf_syntax.cpp │ ├── transparentwrapper │ │ ├── CMakeLists.txt │ │ └── tst_protobuf_transparentwrapper.cpp │ └── wellknown │ │ ├── CMakeLists.txt │ │ ├── proto │ │ ├── durationtest.proto │ │ └── generate_anymessages_data.py │ │ ├── tst_protobuf_any.cpp │ │ ├── tst_protobuf_duration.cpp │ │ └── tst_protobuf_timestamp.cpp ├── protobufgen │ ├── CMakeLists.txt │ ├── data │ │ ├── annotation.proto │ │ ├── cmake_generated │ │ │ ├── copy_comments │ │ │ │ ├── annotation.qpb.cpp │ │ │ │ ├── annotation.qpb.h │ │ │ │ ├── annotation_qtprotoreg.cpp │ │ │ │ └── tst_qtprotobufgen_copy_comments_exports.qpb.h │ │ │ ├── export_macro │ │ │ │ ├── qtprotobufgen.qpb.cpp │ │ │ │ ├── qtprotobufgen.qpb.h │ │ │ │ ├── qtprotobufgen_qtprotoreg.cpp │ │ │ │ └── tst_qtprotobufgen_export_macro_exports.qpb.h │ │ │ ├── extra_namespace │ │ │ │ ├── qtprotobufgen.qpb.cpp │ │ │ │ ├── qtprotobufgen.qpb.h │ │ │ │ ├── qtprotobufgen_qtprotoreg.cpp │ │ │ │ └── tst_qtprotobufgen_extra_namespace_exports.qpb.h │ │ │ ├── generate_package_subfolders │ │ │ │ ├── qt │ │ │ │ │ └── protobuf │ │ │ │ │ │ ├── qtprotobufgen.qpb.cpp │ │ │ │ │ │ ├── qtprotobufgen.qpb.h │ │ │ │ │ │ └── qtprotobufgen_qtprotoreg.cpp │ │ │ │ └── tst_qtprotobufgen_generate_package_subfolders_exports.qpb.h │ │ │ ├── no_options │ │ │ │ ├── qtprotobufgen.qpb.cpp │ │ │ │ ├── qtprotobufgen.qpb.h │ │ │ │ ├── qtprotobufgen_qtprotoreg.cpp │ │ │ │ └── tst_qtprotobufgen_no_options_exports.qpb.h │ │ │ ├── qml │ │ │ │ ├── qtprotobufgen.qpb.cpp │ │ │ │ ├── qtprotobufgen.qpb.h │ │ │ │ ├── qtprotobufgen_qtprotoreg.cpp │ │ │ │ └── tst_qtprotobufgen_qml_exports.qpb.h │ │ │ ├── qml_uri │ │ │ │ ├── qtprotobufgen.qpb.cpp │ │ │ │ ├── qtprotobufgen.qpb.h │ │ │ │ ├── qtprotobufgen_qtprotoreg.cpp │ │ │ │ └── tst_qtprotobufgen_qml_uri_exports.qpb.h │ │ │ └── static │ │ │ │ ├── qtprotobufgen.qpb.cpp │ │ │ │ ├── qtprotobufgen.qpb.h │ │ │ │ └── qtprotobufgen_qtprotoreg.cpp │ │ ├── cmd_line_generated │ │ │ ├── copy_comments │ │ │ │ ├── annotation.qpb.cpp │ │ │ │ ├── annotation.qpb.h │ │ │ │ └── annotation_qtprotoreg.cpp │ │ │ ├── export_macro │ │ │ │ ├── qtprotobufgen.qpb.cpp │ │ │ │ ├── qtprotobufgen.qpb.h │ │ │ │ └── qtprotobufgen_qtprotoreg.cpp │ │ │ ├── export_macro_custom_file_name │ │ │ │ ├── qtprotobufgen.qpb.cpp │ │ │ │ ├── qtprotobufgen.qpb.h │ │ │ │ └── qtprotobufgen_qtprotoreg.cpp │ │ │ ├── export_macro_custom_file_name_force_generate │ │ │ │ ├── custom_file_name.hpp │ │ │ │ ├── qtprotobufgen.qpb.cpp │ │ │ │ ├── qtprotobufgen.qpb.h │ │ │ │ └── qtprotobufgen_qtprotoreg.cpp │ │ │ ├── export_macro_custom_file_name_skip_generate │ │ │ │ ├── qtprotobufgen.qpb.cpp │ │ │ │ ├── qtprotobufgen.qpb.h │ │ │ │ └── qtprotobufgen_qtprotoreg.cpp │ │ │ ├── extra_namespace │ │ │ │ ├── qtprotobufgen.qpb.cpp │ │ │ │ ├── qtprotobufgen.qpb.h │ │ │ │ └── qtprotobufgen_qtprotoreg.cpp │ │ │ ├── generate_package_subfolders │ │ │ │ └── qt │ │ │ │ │ └── protobuf │ │ │ │ │ ├── qtprotobufgen.qpb.cpp │ │ │ │ │ ├── qtprotobufgen.qpb.h │ │ │ │ │ └── qtprotobufgen_qtprotoreg.cpp │ │ │ ├── header_guard_filename │ │ │ │ ├── qtprotobufgenminimal.qpb.cpp │ │ │ │ ├── qtprotobufgenminimal.qpb.h │ │ │ │ └── qtprotobufgenminimal_qtprotoreg.cpp │ │ │ ├── header_guard_pragma │ │ │ │ ├── qtprotobufgenminimal.qpb.cpp │ │ │ │ ├── qtprotobufgenminimal.qpb.h │ │ │ │ └── qtprotobufgenminimal_qtprotoreg.cpp │ │ │ ├── no_options │ │ │ │ ├── qtprotobufgen.qpb.cpp │ │ │ │ ├── qtprotobufgen.qpb.h │ │ │ │ └── qtprotobufgen_qtprotoreg.cpp │ │ │ ├── qml │ │ │ │ ├── qtprotobufgen.qpb.cpp │ │ │ │ ├── qtprotobufgen.qpb.h │ │ │ │ └── qtprotobufgen_qtprotoreg.cpp │ │ │ ├── qml_uri │ │ │ │ ├── qtprotobufgen.qpb.cpp │ │ │ │ ├── qtprotobufgen.qpb.h │ │ │ │ └── qtprotobufgen_qtprotoreg.cpp │ │ │ ├── qml_uri_export_macro │ │ │ │ ├── qtprotobufgen.qpb.cpp │ │ │ │ ├── qtprotobufgen.qpb.h │ │ │ │ └── qtprotobufgen_qtprotoreg.cpp │ │ │ └── qml_uri_export_macro_generate_package_subfolders │ │ │ │ └── qt │ │ │ │ └── protobuf │ │ │ │ ├── qtprotobufgen.qpb.cpp │ │ │ │ ├── qtprotobufgen.qpb.h │ │ │ │ └── qtprotobufgen_qtprotoreg.cpp │ │ ├── qtprotobufgen.proto │ │ ├── qtprotobufgen_mutable_getter_clashing.proto │ │ └── qtprotobufgenminimal.proto │ └── tst_qtprotobufgen.cpp ├── protobufqml │ ├── CMakeLists.txt │ ├── basic │ │ ├── CMakeLists.txt │ │ ├── qml │ │ │ └── tst_basic.qml │ │ └── tst_protobuf_basictypes_qml.cpp │ ├── enums │ │ ├── CMakeLists.txt │ │ ├── qml │ │ │ └── tst_enumtypes.qml │ │ └── tst_protobuf_enumtypes_qml.cpp │ ├── messagelists │ │ ├── CMakeLists.txt │ │ ├── qml │ │ │ └── tst_repeated.qml │ │ └── tst_protobuf_repeated_qml.cpp │ ├── nested │ │ ├── CMakeLists.txt │ │ ├── qml │ │ │ └── tst_nested.qml │ │ └── tst_protobuf_nested_qml.cpp │ ├── nopackage │ │ ├── CMakeLists.txt │ │ ├── qml │ │ │ └── tst_nopackage.qml │ │ └── tst_protobuf_nopackage_qml.cpp │ ├── oneof │ │ ├── CMakeLists.txt │ │ ├── qml │ │ │ └── tst_oneof.qml │ │ └── tst_protobuf_oneof_qml.cpp │ └── syntax │ │ ├── CMakeLists.txt │ │ ├── qml │ │ └── tst_syntax.qml │ │ └── tst_protobuf_syntax_qml.cpp ├── protobufqttypes │ ├── CMakeLists.txt │ ├── qtcoretypesnested.proto │ ├── qtguitypesnested.proto │ ├── qtprotobufqttypescoretest.cpp │ └── qtprotobufqttypesguitest.cpp ├── protocplugintestcommon │ ├── CMakeLists.txt │ ├── protocplugintestcommon.cpp │ └── protocplugintestcommon.h └── shared │ └── data │ └── proto │ ├── additionalenums.proto │ ├── anymessages.proto │ ├── basicmessages.proto │ ├── extranamespace.proto │ ├── fieldindexrange.proto │ ├── mapmessages.proto │ ├── nopackage.proto │ ├── nopackageexternal.proto │ ├── oneofmessages.proto │ ├── optional.proto │ ├── qtcoretypes.proto │ ├── qtguitypes.proto │ ├── repeatedmessages.proto │ ├── repeatednonpackedmessages.proto │ ├── syntax.proto │ ├── testserivcenomessages.proto │ ├── testservice.proto │ └── timestampmessages.proto ├── benchmarks ├── CMakeLists.txt └── protobuf │ ├── CMakeLists.txt │ └── deserialize │ ├── CMakeLists.txt │ ├── data │ └── bench.proto │ ├── tst_bench_deserialize_protobuf.cpp │ ├── tst_bench_deserialize_protobuf_base.cpp │ ├── tst_bench_deserialize_protobuf_base.h │ └── tst_bench_deserialize_protobuf_json.cpp └── manual ├── CMakeLists.txt └── grpc ├── CMakeLists.txt └── benchmarks ├── CMakeLists.txt ├── asyncbenchserver ├── CMakeLists.txt ├── asyncbenchserver.cpp └── rpcjobs.h ├── bench_async_ref_client ├── CMakeLists.txt └── bench_async_ref_client.cpp ├── bench_qtgrpcclient ├── CMakeLists.txt └── bench_qtgrpcclient.cpp ├── proto └── bench.proto └── qrpcbench_common.h /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/.clang-format -------------------------------------------------------------------------------- /.cmake.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/.cmake.conf -------------------------------------------------------------------------------- /.gitreview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/.gitreview -------------------------------------------------------------------------------- /.tag: -------------------------------------------------------------------------------- 1 | 70b8deb394a791a12f85aba54a81e8a1973c75e3 2 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.Apache-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/LICENSE.Apache-2.0.txt -------------------------------------------------------------------------------- /LICENSES/BSD-3-Clause.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/LICENSES/BSD-3-Clause.txt -------------------------------------------------------------------------------- /LICENSES/GFDL-1.3-no-invariants-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/LICENSES/GFDL-1.3-no-invariants-only.txt -------------------------------------------------------------------------------- /LICENSES/GPL-2.0-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/LICENSES/GPL-2.0-only.txt -------------------------------------------------------------------------------- /LICENSES/GPL-3.0-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/LICENSES/GPL-3.0-only.txt -------------------------------------------------------------------------------- /LICENSES/LGPL-3.0-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/LICENSES/LGPL-3.0-only.txt -------------------------------------------------------------------------------- /LICENSES/LicenseRef-Qt-Commercial.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/LICENSES/LicenseRef-Qt-Commercial.txt -------------------------------------------------------------------------------- /LICENSES/LicenseRef-protobuf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/LICENSES/LicenseRef-protobuf.txt -------------------------------------------------------------------------------- /LICENSES/Qt-GPL-exception-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/LICENSES/Qt-GPL-exception-1.0.txt -------------------------------------------------------------------------------- /REUSE.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/REUSE.toml -------------------------------------------------------------------------------- /cmake/FindWrapProtoc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/cmake/FindWrapProtoc.cmake -------------------------------------------------------------------------------- /coin/axivion/ci_config_linux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/coin/axivion/ci_config_linux.json -------------------------------------------------------------------------------- /coin/axivion/start_analysis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/coin/axivion/start_analysis.sh -------------------------------------------------------------------------------- /coin/module_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/coin/module_config.yaml -------------------------------------------------------------------------------- /configure.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/configure.cmake -------------------------------------------------------------------------------- /dependencies.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/dependencies.yaml -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/grpc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/CMakeLists.txt -------------------------------------------------------------------------------- /examples/grpc/chat/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/chat/CMakeLists.txt -------------------------------------------------------------------------------- /examples/grpc/chat/client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/chat/client/CMakeLists.txt -------------------------------------------------------------------------------- /examples/grpc/chat/client/ChatMessages/FileContinuationDelegate.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/chat/client/ChatMessages/FileContinuationDelegate.qml -------------------------------------------------------------------------------- /examples/grpc/chat/client/ChatMessages/FileDelegate.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/chat/client/ChatMessages/FileDelegate.qml -------------------------------------------------------------------------------- /examples/grpc/chat/client/ChatMessages/ImageDelegate.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/chat/client/ChatMessages/ImageDelegate.qml -------------------------------------------------------------------------------- /examples/grpc/chat/client/ChatMessages/TextDelegate.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/chat/client/ChatMessages/TextDelegate.qml -------------------------------------------------------------------------------- /examples/grpc/chat/client/ChatMessages/UserStatusDelegate.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/chat/client/ChatMessages/UserStatusDelegate.qml -------------------------------------------------------------------------------- /examples/grpc/chat/client/ChatView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/chat/client/ChatView.qml -------------------------------------------------------------------------------- /examples/grpc/chat/client/LoginView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/chat/client/LoginView.qml -------------------------------------------------------------------------------- /examples/grpc/chat/client/Main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/chat/client/Main.qml -------------------------------------------------------------------------------- /examples/grpc/chat/client/StatusDisplay.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/chat/client/StatusDisplay.qml -------------------------------------------------------------------------------- /examples/grpc/chat/client/android/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/chat/client/android/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /examples/grpc/chat/client/android/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/chat/client/android/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /examples/grpc/chat/client/android/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/chat/client/android/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /examples/grpc/chat/client/android/res/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/chat/client/android/res/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /examples/grpc/chat/client/android/res/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/chat/client/android/res/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /examples/grpc/chat/client/android/res/drawable-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/chat/client/android/res/drawable-xxxhdpi/icon.png -------------------------------------------------------------------------------- /examples/grpc/chat/client/chatengine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/chat/client/chatengine.cpp -------------------------------------------------------------------------------- /examples/grpc/chat/client/chatengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/chat/client/chatengine.h -------------------------------------------------------------------------------- /examples/grpc/chat/client/chatmessagemodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/chat/client/chatmessagemodel.cpp -------------------------------------------------------------------------------- /examples/grpc/chat/client/chatmessagemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/chat/client/chatmessagemodel.h -------------------------------------------------------------------------------- /examples/grpc/chat/client/clientworker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/chat/client/clientworker.cpp -------------------------------------------------------------------------------- /examples/grpc/chat/client/clientworker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/chat/client/clientworker.h -------------------------------------------------------------------------------- /examples/grpc/chat/client/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/chat/client/main.cpp -------------------------------------------------------------------------------- /examples/grpc/chat/client/res/attach.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/chat/client/res/attach.svg -------------------------------------------------------------------------------- /examples/grpc/chat/client/res/generic_file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/chat/client/res/generic_file.svg -------------------------------------------------------------------------------- /examples/grpc/chat/client/res/qtchat_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/chat/client/res/qtchat_logo.png -------------------------------------------------------------------------------- /examples/grpc/chat/client/res/root.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/chat/client/res/root.crt -------------------------------------------------------------------------------- /examples/grpc/chat/client/res/send.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/chat/client/res/send.svg -------------------------------------------------------------------------------- /examples/grpc/chat/client/userstatusmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/chat/client/userstatusmodel.cpp -------------------------------------------------------------------------------- /examples/grpc/chat/client/userstatusmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/chat/client/userstatusmodel.h -------------------------------------------------------------------------------- /examples/grpc/chat/doc/images/chat_login.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/chat/doc/images/chat_login.webp -------------------------------------------------------------------------------- /examples/grpc/chat/doc/images/chat_room.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/chat/doc/images/chat_room.webp -------------------------------------------------------------------------------- /examples/grpc/chat/doc/images/chat_settings.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/chat/doc/images/chat_settings.webp -------------------------------------------------------------------------------- /examples/grpc/chat/doc/src/chat.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/chat/doc/src/chat.qdoc -------------------------------------------------------------------------------- /examples/grpc/chat/proto/chatmessages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/chat/proto/chatmessages.proto -------------------------------------------------------------------------------- /examples/grpc/chat/proto/qtgrpcchat.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/chat/proto/qtgrpcchat.proto -------------------------------------------------------------------------------- /examples/grpc/chat/server/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/chat/server/CMakeLists.txt -------------------------------------------------------------------------------- /examples/grpc/chat/server/credentials/certificates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/chat/server/credentials/certificates.h -------------------------------------------------------------------------------- /examples/grpc/chat/server/credentials/createCerts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/chat/server/credentials/createCerts.sh -------------------------------------------------------------------------------- /examples/grpc/chat/server/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/chat/server/main.cpp -------------------------------------------------------------------------------- /examples/grpc/chat/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/chat/vcpkg.json -------------------------------------------------------------------------------- /examples/grpc/clientguide/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/clientguide/CMakeLists.txt -------------------------------------------------------------------------------- /examples/grpc/clientguide/client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/clientguide/client/CMakeLists.txt -------------------------------------------------------------------------------- /examples/grpc/clientguide/client/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/clientguide/client/main.cpp -------------------------------------------------------------------------------- /examples/grpc/clientguide/doc/src/clientguide.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/clientguide/doc/src/clientguide.qdoc -------------------------------------------------------------------------------- /examples/grpc/clientguide/proto/clientguide.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/clientguide/proto/clientguide.proto -------------------------------------------------------------------------------- /examples/grpc/clientguide/server/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/clientguide/server/CMakeLists.txt -------------------------------------------------------------------------------- /examples/grpc/clientguide/server/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/clientguide/server/main.cpp -------------------------------------------------------------------------------- /examples/grpc/magic8ball/AnimatedAnswer.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/magic8ball/AnimatedAnswer.qml -------------------------------------------------------------------------------- /examples/grpc/magic8ball/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/magic8ball/CMakeLists.txt -------------------------------------------------------------------------------- /examples/grpc/magic8ball/MagicBall.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/magic8ball/MagicBall.qml -------------------------------------------------------------------------------- /examples/grpc/magic8ball/MagicText.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/magic8ball/MagicText.qml -------------------------------------------------------------------------------- /examples/grpc/magic8ball/Main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/magic8ball/Main.qml -------------------------------------------------------------------------------- /examples/grpc/magic8ball/ScaleAnimation.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/magic8ball/ScaleAnimation.qml -------------------------------------------------------------------------------- /examples/grpc/magic8ball/doc/images/magic8ballScreenshot.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/magic8ball/doc/images/magic8ballScreenshot.webp -------------------------------------------------------------------------------- /examples/grpc/magic8ball/doc/src/magic8ball.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/magic8ball/doc/src/magic8ball.qdoc -------------------------------------------------------------------------------- /examples/grpc/magic8ball/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/magic8ball/main.cpp -------------------------------------------------------------------------------- /examples/grpc/magic8ball/proto/exampleservice.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/magic8ball/proto/exampleservice.proto -------------------------------------------------------------------------------- /examples/grpc/magic8ball/server/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/magic8ball/server/CMakeLists.txt -------------------------------------------------------------------------------- /examples/grpc/magic8ball/server/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/magic8ball/server/main.cpp -------------------------------------------------------------------------------- /examples/grpc/magic8ball/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/magic8ball/vcpkg.json -------------------------------------------------------------------------------- /examples/grpc/vehicle/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/vehicle/CMakeLists.txt -------------------------------------------------------------------------------- /examples/grpc/vehicle/Main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/vehicle/Main.qml -------------------------------------------------------------------------------- /examples/grpc/vehicle/StyledProgressBar.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/vehicle/StyledProgressBar.qml -------------------------------------------------------------------------------- /examples/grpc/vehicle/StyledText.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/vehicle/StyledText.qml -------------------------------------------------------------------------------- /examples/grpc/vehicle/doc/images/vehicle.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/vehicle/doc/images/vehicle.webp -------------------------------------------------------------------------------- /examples/grpc/vehicle/doc/src/vehicle.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/vehicle/doc/src/vehicle.qdoc -------------------------------------------------------------------------------- /examples/grpc/vehicle/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/vehicle/main.cpp -------------------------------------------------------------------------------- /examples/grpc/vehicle/navigationthread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/vehicle/navigationthread.cpp -------------------------------------------------------------------------------- /examples/grpc/vehicle/navigationthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/vehicle/navigationthread.h -------------------------------------------------------------------------------- /examples/grpc/vehicle/proto/navigationservice.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/vehicle/proto/navigationservice.proto -------------------------------------------------------------------------------- /examples/grpc/vehicle/proto/vehicleservice.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/vehicle/proto/vehicleservice.proto -------------------------------------------------------------------------------- /examples/grpc/vehicle/resources/direction_left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/vehicle/resources/direction_left.svg -------------------------------------------------------------------------------- /examples/grpc/vehicle/resources/direction_right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/vehicle/resources/direction_right.svg -------------------------------------------------------------------------------- /examples/grpc/vehicle/resources/direction_straight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/vehicle/resources/direction_straight.svg -------------------------------------------------------------------------------- /examples/grpc/vehicle/resources/fuel_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/vehicle/resources/fuel_icon.svg -------------------------------------------------------------------------------- /examples/grpc/vehicle/server/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/vehicle/server/CMakeLists.txt -------------------------------------------------------------------------------- /examples/grpc/vehicle/server/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/vehicle/server/main.cpp -------------------------------------------------------------------------------- /examples/grpc/vehicle/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/vehicle/vcpkg.json -------------------------------------------------------------------------------- /examples/grpc/vehicle/vehiclemanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/vehicle/vehiclemanager.cpp -------------------------------------------------------------------------------- /examples/grpc/vehicle/vehiclemanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/vehicle/vehiclemanager.h -------------------------------------------------------------------------------- /examples/grpc/vehicle/vehiclethread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/vehicle/vehiclethread.cpp -------------------------------------------------------------------------------- /examples/grpc/vehicle/vehiclethread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/grpc/vehicle/vehiclethread.h -------------------------------------------------------------------------------- /examples/protobuf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/protobuf/CMakeLists.txt -------------------------------------------------------------------------------- /examples/protobuf/sensors/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/protobuf/sensors/CMakeLists.txt -------------------------------------------------------------------------------- /examples/protobuf/sensors/client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/protobuf/sensors/client/CMakeLists.txt -------------------------------------------------------------------------------- /examples/protobuf/sensors/client/clientconsole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/protobuf/sensors/client/clientconsole.cpp -------------------------------------------------------------------------------- /examples/protobuf/sensors/client/clientconsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/protobuf/sensors/client/clientconsole.h -------------------------------------------------------------------------------- /examples/protobuf/sensors/client/clientconsole.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/protobuf/sensors/client/clientconsole.ui -------------------------------------------------------------------------------- /examples/protobuf/sensors/client/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/protobuf/sensors/client/main.cpp -------------------------------------------------------------------------------- /examples/protobuf/sensors/client/sensorclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/protobuf/sensors/client/sensorclient.cpp -------------------------------------------------------------------------------- /examples/protobuf/sensors/client/sensorclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/protobuf/sensors/client/sensorclient.h -------------------------------------------------------------------------------- /examples/protobuf/sensors/doc/images/client.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/protobuf/sensors/doc/images/client.webp -------------------------------------------------------------------------------- /examples/protobuf/sensors/doc/images/emulator.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/protobuf/sensors/doc/images/emulator.webp -------------------------------------------------------------------------------- /examples/protobuf/sensors/doc/sensors.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/protobuf/sensors/doc/sensors.qdoc -------------------------------------------------------------------------------- /examples/protobuf/sensors/emulator/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/protobuf/sensors/emulator/CMakeLists.txt -------------------------------------------------------------------------------- /examples/protobuf/sensors/emulator/emulatorconsole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/protobuf/sensors/emulator/emulatorconsole.cpp -------------------------------------------------------------------------------- /examples/protobuf/sensors/emulator/emulatorconsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/protobuf/sensors/emulator/emulatorconsole.h -------------------------------------------------------------------------------- /examples/protobuf/sensors/emulator/emulatorconsole.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/protobuf/sensors/emulator/emulatorconsole.ui -------------------------------------------------------------------------------- /examples/protobuf/sensors/emulator/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/protobuf/sensors/emulator/main.cpp -------------------------------------------------------------------------------- /examples/protobuf/sensors/emulator/sensoremulator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/protobuf/sensors/emulator/sensoremulator.cpp -------------------------------------------------------------------------------- /examples/protobuf/sensors/emulator/sensoremulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/protobuf/sensors/emulator/sensoremulator.h -------------------------------------------------------------------------------- /examples/protobuf/sensors/sensors.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/protobuf/sensors/sensors.proto -------------------------------------------------------------------------------- /examples/protobuf/sensors/tlv.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/protobuf/sensors/tlv.proto -------------------------------------------------------------------------------- /examples/protobuf/sensors/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/examples/protobuf/sensors/vcpkg.json -------------------------------------------------------------------------------- /licenseRule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/licenseRule.json -------------------------------------------------------------------------------- /qt_attribution.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/qt_attribution.json -------------------------------------------------------------------------------- /qt_cmdline.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/qt_cmdline.cmake -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/grpc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpc/CMakeLists.txt -------------------------------------------------------------------------------- /src/grpc/configure.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpc/configure.cmake -------------------------------------------------------------------------------- /src/grpc/doc/qtgrpc.qdocconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpc/doc/qtgrpc.qdocconf -------------------------------------------------------------------------------- /src/grpc/doc/src/cmake-commands.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpc/doc/src/cmake-commands.qdoc -------------------------------------------------------------------------------- /src/grpc/doc/src/qt-add-grpc-example.qdocinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpc/doc/src/qt-add-grpc-example.qdocinc -------------------------------------------------------------------------------- /src/grpc/doc/src/qt-add-grpc.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpc/doc/src/qt-add-grpc.qdoc -------------------------------------------------------------------------------- /src/grpc/doc/src/qtgrpc-index.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpc/doc/src/qtgrpc-index.qdoc -------------------------------------------------------------------------------- /src/grpc/doc/src/qtgrpc-module.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpc/doc/src/qtgrpc-module.qdoc -------------------------------------------------------------------------------- /src/grpc/doc/src/qtgrpc-security.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpc/doc/src/qtgrpc-security.qdoc -------------------------------------------------------------------------------- /src/grpc/doc/src/qtgrpc-shared.qdocinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpc/doc/src/qtgrpc-shared.qdocinc -------------------------------------------------------------------------------- /src/grpc/doc/src/qtgrpc-toc.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpc/doc/src/qtgrpc-toc.qdoc -------------------------------------------------------------------------------- /src/grpc/doc/src/qtgrpcgen.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpc/doc/src/qtgrpcgen.qdoc -------------------------------------------------------------------------------- /src/grpc/doc/src/qtgrpcgen.qdocinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpc/doc/src/qtgrpcgen.qdocinc -------------------------------------------------------------------------------- /src/grpc/doc/src/snippets/qt-add-grpc-example.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpc/doc/src/snippets/qt-add-grpc-example.cmake -------------------------------------------------------------------------------- /src/grpc/qabstractgrpcchannel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpc/qabstractgrpcchannel.cpp -------------------------------------------------------------------------------- /src/grpc/qabstractgrpcchannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpc/qabstractgrpcchannel.h -------------------------------------------------------------------------------- /src/grpc/qabstractgrpcchannel_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpc/qabstractgrpcchannel_p.h -------------------------------------------------------------------------------- /src/grpc/qgrpccalloptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpc/qgrpccalloptions.cpp -------------------------------------------------------------------------------- /src/grpc/qgrpccalloptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpc/qgrpccalloptions.h -------------------------------------------------------------------------------- /src/grpc/qgrpccallreply.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpc/qgrpccallreply.cpp -------------------------------------------------------------------------------- /src/grpc/qgrpccallreply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpc/qgrpccallreply.h -------------------------------------------------------------------------------- /src/grpc/qgrpcchanneloptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpc/qgrpcchanneloptions.cpp -------------------------------------------------------------------------------- /src/grpc/qgrpcchanneloptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpc/qgrpcchanneloptions.h -------------------------------------------------------------------------------- /src/grpc/qgrpcclientbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpc/qgrpcclientbase.cpp -------------------------------------------------------------------------------- /src/grpc/qgrpcclientbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpc/qgrpcclientbase.h -------------------------------------------------------------------------------- /src/grpc/qgrpccommonoptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpc/qgrpccommonoptions.cpp -------------------------------------------------------------------------------- /src/grpc/qgrpccommonoptions_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpc/qgrpccommonoptions_p.h -------------------------------------------------------------------------------- /src/grpc/qgrpchttp2channel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpc/qgrpchttp2channel.cpp -------------------------------------------------------------------------------- /src/grpc/qgrpchttp2channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpc/qgrpchttp2channel.h -------------------------------------------------------------------------------- /src/grpc/qgrpcinterceptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpc/qgrpcinterceptor.cpp -------------------------------------------------------------------------------- /src/grpc/qgrpcinterceptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpc/qgrpcinterceptor.h -------------------------------------------------------------------------------- /src/grpc/qgrpcinterceptorengine_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpc/qgrpcinterceptorengine_p.h -------------------------------------------------------------------------------- /src/grpc/qgrpcoperation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpc/qgrpcoperation.cpp -------------------------------------------------------------------------------- /src/grpc/qgrpcoperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpc/qgrpcoperation.h -------------------------------------------------------------------------------- /src/grpc/qgrpcoperation_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpc/qgrpcoperation_p.h -------------------------------------------------------------------------------- /src/grpc/qgrpcoperationcontext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpc/qgrpcoperationcontext.cpp -------------------------------------------------------------------------------- /src/grpc/qgrpcoperationcontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpc/qgrpcoperationcontext.h -------------------------------------------------------------------------------- /src/grpc/qgrpcoperationcontext_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpc/qgrpcoperationcontext_p.h -------------------------------------------------------------------------------- /src/grpc/qgrpcserializationformat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpc/qgrpcserializationformat.cpp -------------------------------------------------------------------------------- /src/grpc/qgrpcserializationformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpc/qgrpcserializationformat.h -------------------------------------------------------------------------------- /src/grpc/qgrpcstatus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpc/qgrpcstatus.cpp -------------------------------------------------------------------------------- /src/grpc/qgrpcstatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpc/qgrpcstatus.h -------------------------------------------------------------------------------- /src/grpc/qgrpcstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpc/qgrpcstream.cpp -------------------------------------------------------------------------------- /src/grpc/qgrpcstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpc/qgrpcstream.h -------------------------------------------------------------------------------- /src/grpc/qtgrpcglobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpc/qtgrpcglobal.h -------------------------------------------------------------------------------- /src/grpc/qtgrpclogging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpc/qtgrpclogging.cpp -------------------------------------------------------------------------------- /src/grpc/qtgrpclogging_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpc/qtgrpclogging_p.h -------------------------------------------------------------------------------- /src/grpc/qtgrpcnamespace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpc/qtgrpcnamespace.h -------------------------------------------------------------------------------- /src/grpc/qtgrpcnamespace.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpc/qtgrpcnamespace.qdoc -------------------------------------------------------------------------------- /src/grpcquick/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpcquick/CMakeLists.txt -------------------------------------------------------------------------------- /src/grpcquick/doc/qtgrpcquick-qmltypes.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpcquick/doc/qtgrpcquick-qmltypes.qdoc -------------------------------------------------------------------------------- /src/grpcquick/qqmlabstractgrpcchannel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpcquick/qqmlabstractgrpcchannel.cpp -------------------------------------------------------------------------------- /src/grpcquick/qqmlabstractgrpcchannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpcquick/qqmlabstractgrpcchannel.h -------------------------------------------------------------------------------- /src/grpcquick/qqmlabstractgrpcchannel_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpcquick/qqmlabstractgrpcchannel_p.h -------------------------------------------------------------------------------- /src/grpcquick/qqmlgrpccalloptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpcquick/qqmlgrpccalloptions.cpp -------------------------------------------------------------------------------- /src/grpcquick/qqmlgrpccalloptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpcquick/qqmlgrpccalloptions.h -------------------------------------------------------------------------------- /src/grpcquick/qqmlgrpcchanneloptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpcquick/qqmlgrpcchanneloptions.cpp -------------------------------------------------------------------------------- /src/grpcquick/qqmlgrpcchanneloptions_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpcquick/qqmlgrpcchanneloptions_p.h -------------------------------------------------------------------------------- /src/grpcquick/qqmlgrpcfunctionalhandlers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpcquick/qqmlgrpcfunctionalhandlers.cpp -------------------------------------------------------------------------------- /src/grpcquick/qqmlgrpcfunctionalhandlers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpcquick/qqmlgrpcfunctionalhandlers.h -------------------------------------------------------------------------------- /src/grpcquick/qqmlgrpchttp2channel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpcquick/qqmlgrpchttp2channel.cpp -------------------------------------------------------------------------------- /src/grpcquick/qqmlgrpchttp2channel_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpcquick/qqmlgrpchttp2channel_p.h -------------------------------------------------------------------------------- /src/grpcquick/qqmlgrpcmetadata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpcquick/qqmlgrpcmetadata.cpp -------------------------------------------------------------------------------- /src/grpcquick/qqmlgrpcmetadata_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpcquick/qqmlgrpcmetadata_p.h -------------------------------------------------------------------------------- /src/grpcquick/qqmlgrpcnamespace_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpcquick/qqmlgrpcnamespace_p.h -------------------------------------------------------------------------------- /src/grpcquick/qtgrpcquicklogging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpcquick/qtgrpcquicklogging.cpp -------------------------------------------------------------------------------- /src/grpcquick/qtgrpcquicklogging_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpcquick/qtgrpcquicklogging_p.h -------------------------------------------------------------------------------- /src/grpcquick/qtqmlgrpcstreamsender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpcquick/qtqmlgrpcstreamsender.cpp -------------------------------------------------------------------------------- /src/grpcquick/qtqmlgrpcstreamsender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/grpcquick/qtqmlgrpcstreamsender.h -------------------------------------------------------------------------------- /src/protobuf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobuf/CMakeLists.txt -------------------------------------------------------------------------------- /src/protobuf/Qt6ProtobufBuildInternals.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobuf/Qt6ProtobufBuildInternals.cmake -------------------------------------------------------------------------------- /src/protobuf/QtProtobufProperties.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobuf/QtProtobufProperties.cmake.in -------------------------------------------------------------------------------- /src/protobuf/configure.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobuf/configure.cmake -------------------------------------------------------------------------------- /src/protobuf/doc/QtProtobufDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobuf/doc/QtProtobufDoc -------------------------------------------------------------------------------- /src/protobuf/doc/images/msvc-kit.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobuf/doc/images/msvc-kit.webp -------------------------------------------------------------------------------- /src/protobuf/doc/images/path-env-variable.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobuf/doc/images/path-env-variable.webp -------------------------------------------------------------------------------- /src/protobuf/doc/images/qt-creator.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobuf/doc/images/qt-creator.webp -------------------------------------------------------------------------------- /src/protobuf/doc/qtprotobuf.qdocconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobuf/doc/qtprotobuf.qdocconf -------------------------------------------------------------------------------- /src/protobuf/doc/src/cmake-commands.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobuf/doc/src/cmake-commands.qdoc -------------------------------------------------------------------------------- /src/protobuf/doc/src/cmake-properties.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobuf/doc/src/cmake-properties.qdoc -------------------------------------------------------------------------------- /src/protobuf/doc/src/qt-add-protobuf-example.qdocinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobuf/doc/src/qt-add-protobuf-example.qdocinc -------------------------------------------------------------------------------- /src/protobuf/doc/src/qt-add-protobuf.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobuf/doc/src/qt-add-protobuf.qdoc -------------------------------------------------------------------------------- /src/protobuf/doc/src/qtprotobuf-generated-code.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobuf/doc/src/qtprotobuf-generated-code.qdoc -------------------------------------------------------------------------------- /src/protobuf/doc/src/qtprotobuf-toc.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobuf/doc/src/qtprotobuf-toc.qdoc -------------------------------------------------------------------------------- /src/protobuf/doc/src/qtprotobuf.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobuf/doc/src/qtprotobuf.qdoc -------------------------------------------------------------------------------- /src/protobuf/doc/src/qtprotobufgen.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobuf/doc/src/qtprotobufgen.qdoc -------------------------------------------------------------------------------- /src/protobuf/protobuffieldpresencechecker_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobuf/protobuffieldpresencechecker_p.h -------------------------------------------------------------------------------- /src/protobuf/protobufscalarjsonserializers_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobuf/protobufscalarjsonserializers_p.h -------------------------------------------------------------------------------- /src/protobuf/protobufscalarserializers_p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobuf/protobufscalarserializers_p.cpp -------------------------------------------------------------------------------- /src/protobuf/protobufscalarserializers_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobuf/protobufscalarserializers_p.h -------------------------------------------------------------------------------- /src/protobuf/qabstractprotobufserializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobuf/qabstractprotobufserializer.cpp -------------------------------------------------------------------------------- /src/protobuf/qabstractprotobufserializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobuf/qabstractprotobufserializer.h -------------------------------------------------------------------------------- /src/protobuf/qprotobufdeserializerbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobuf/qprotobufdeserializerbase.cpp -------------------------------------------------------------------------------- /src/protobuf/qprotobufdeserializerbase_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobuf/qprotobufdeserializerbase_p.h -------------------------------------------------------------------------------- /src/protobuf/qprotobufjsonserializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobuf/qprotobufjsonserializer.cpp -------------------------------------------------------------------------------- /src/protobuf/qprotobufjsonserializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobuf/qprotobufjsonserializer.h -------------------------------------------------------------------------------- /src/protobuf/qprotobufjsonserializer_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobuf/qprotobufjsonserializer_p.h -------------------------------------------------------------------------------- /src/protobuf/qprotobuflazymessagepointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobuf/qprotobuflazymessagepointer.h -------------------------------------------------------------------------------- /src/protobuf/qprotobufmessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobuf/qprotobufmessage.cpp -------------------------------------------------------------------------------- /src/protobuf/qprotobufmessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobuf/qprotobufmessage.h -------------------------------------------------------------------------------- /src/protobuf/qprotobufmessage_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobuf/qprotobufmessage_p.h -------------------------------------------------------------------------------- /src/protobuf/qprotobufobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobuf/qprotobufobject.h -------------------------------------------------------------------------------- /src/protobuf/qprotobufobject.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobuf/qprotobufobject.qdoc -------------------------------------------------------------------------------- /src/protobuf/qprotobufoneof.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobuf/qprotobufoneof.cpp -------------------------------------------------------------------------------- /src/protobuf/qprotobufoneof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobuf/qprotobufoneof.h -------------------------------------------------------------------------------- /src/protobuf/qprotobufpropertyordering.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobuf/qprotobufpropertyordering.cpp -------------------------------------------------------------------------------- /src/protobuf/qprotobufpropertyordering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobuf/qprotobufpropertyordering.h -------------------------------------------------------------------------------- /src/protobuf/qprotobufpropertyorderingbuilder_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobuf/qprotobufpropertyorderingbuilder_p.h -------------------------------------------------------------------------------- /src/protobuf/qprotobufregistration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobuf/qprotobufregistration.cpp -------------------------------------------------------------------------------- /src/protobuf/qprotobufregistration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobuf/qprotobufregistration.h -------------------------------------------------------------------------------- /src/protobuf/qprotobufregistration_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobuf/qprotobufregistration_p.h -------------------------------------------------------------------------------- /src/protobuf/qprotobufrepeatediterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobuf/qprotobufrepeatediterator.cpp -------------------------------------------------------------------------------- /src/protobuf/qprotobufrepeatediterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobuf/qprotobufrepeatediterator.h -------------------------------------------------------------------------------- /src/protobuf/qprotobufselfcheckiterator_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobuf/qprotobufselfcheckiterator_p.h -------------------------------------------------------------------------------- /src/protobuf/qprotobufserializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobuf/qprotobufserializer.cpp -------------------------------------------------------------------------------- /src/protobuf/qprotobufserializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobuf/qprotobufserializer.h -------------------------------------------------------------------------------- /src/protobuf/qprotobufserializer_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobuf/qprotobufserializer_p.h -------------------------------------------------------------------------------- /src/protobuf/qprotobufserializerbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobuf/qprotobufserializerbase.cpp -------------------------------------------------------------------------------- /src/protobuf/qprotobufserializerbase_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobuf/qprotobufserializerbase_p.h -------------------------------------------------------------------------------- /src/protobuf/qt_cmdline.cmake: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/protobuf/qtprotobufdefs_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobuf/qtprotobufdefs_p.h -------------------------------------------------------------------------------- /src/protobuf/qtprotobufglobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobuf/qtprotobufglobal.h -------------------------------------------------------------------------------- /src/protobuf/qtprotobuflogging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobuf/qtprotobuflogging.cpp -------------------------------------------------------------------------------- /src/protobuf/qtprotobuflogging_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobuf/qtprotobuflogging_p.h -------------------------------------------------------------------------------- /src/protobuf/qtprotobufserializerhelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobuf/qtprotobufserializerhelpers.cpp -------------------------------------------------------------------------------- /src/protobuf/qtprotobufserializerhelpers_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobuf/qtprotobufserializerhelpers_p.h -------------------------------------------------------------------------------- /src/protobuf/qtprotobuftypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobuf/qtprotobuftypes.cpp -------------------------------------------------------------------------------- /src/protobuf/qtprotobuftypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobuf/qtprotobuftypes.h -------------------------------------------------------------------------------- /src/protobufqttypes/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobufqttypes/CMakeLists.txt -------------------------------------------------------------------------------- /src/protobufqttypes/doc/protobufqtcoretypes.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobufqttypes/doc/protobufqtcoretypes.qdoc -------------------------------------------------------------------------------- /src/protobufqttypes/doc/protobufqtguitypes.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobufqttypes/doc/protobufqtguitypes.qdoc -------------------------------------------------------------------------------- /src/protobufqttypes/protobufqtcoretypes/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobufqttypes/protobufqtcoretypes/CMakeLists.txt -------------------------------------------------------------------------------- /src/protobufqttypes/protobufqtcoretypes/QtCore/QtCore.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobufqttypes/protobufqtcoretypes/QtCore/QtCore.proto -------------------------------------------------------------------------------- /src/protobufqttypes/protobufqtcoretypes/qtprotobufqtcoretypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobufqttypes/protobufqtcoretypes/qtprotobufqtcoretypes.cpp -------------------------------------------------------------------------------- /src/protobufqttypes/protobufqtcoretypes/qtprotobufqtcoretypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobufqttypes/protobufqtcoretypes/qtprotobufqtcoretypes.h -------------------------------------------------------------------------------- /src/protobufqttypes/protobufqtcoretypes/qtprotobufqtcoretypesglobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobufqttypes/protobufqtcoretypes/qtprotobufqtcoretypesglobal.h -------------------------------------------------------------------------------- /src/protobufqttypes/protobufqtcoretypes/qtprotobufqttypescommon_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobufqttypes/protobufqtcoretypes/qtprotobufqttypescommon_p.h -------------------------------------------------------------------------------- /src/protobufqttypes/protobufqtguitypes/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobufqttypes/protobufqtguitypes/CMakeLists.txt -------------------------------------------------------------------------------- /src/protobufqttypes/protobufqtguitypes/QtGui/QtGui.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobufqttypes/protobufqtguitypes/QtGui/QtGui.proto -------------------------------------------------------------------------------- /src/protobufqttypes/protobufqtguitypes/qtprotobufqtguitypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobufqttypes/protobufqtguitypes/qtprotobufqtguitypes.cpp -------------------------------------------------------------------------------- /src/protobufqttypes/protobufqtguitypes/qtprotobufqtguitypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobufqttypes/protobufqtguitypes/qtprotobufqtguitypes.h -------------------------------------------------------------------------------- /src/protobufqttypes/protobufqtguitypes/qtprotobufqtguitypesglobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobufqttypes/protobufqtguitypes/qtprotobufqtguitypesglobal.h -------------------------------------------------------------------------------- /src/protobufquick/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobufquick/CMakeLists.txt -------------------------------------------------------------------------------- /src/protobufquick/qqmlprotobuftypes_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/protobufquick/qqmlprotobuftypes_p.h -------------------------------------------------------------------------------- /src/qt_cmdline.cmake: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/tools/CMakeLists.txt -------------------------------------------------------------------------------- /src/tools/doc/qtprotoccommon.qdocinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/tools/doc/qtprotoccommon.qdocinc -------------------------------------------------------------------------------- /src/tools/host/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/tools/host/CMakeLists.txt -------------------------------------------------------------------------------- /src/tools/qtgrpcgen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/tools/qtgrpcgen/CMakeLists.txt -------------------------------------------------------------------------------- /src/tools/qtgrpcgen/Qt6GrpcToolsMacros.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/tools/qtgrpcgen/Qt6GrpcToolsMacros.cmake -------------------------------------------------------------------------------- /src/tools/qtgrpcgen/clientdeclarationprinter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/tools/qtgrpcgen/clientdeclarationprinter.cpp -------------------------------------------------------------------------------- /src/tools/qtgrpcgen/clientdeclarationprinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/tools/qtgrpcgen/clientdeclarationprinter.h -------------------------------------------------------------------------------- /src/tools/qtgrpcgen/clientdefinitionprinter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/tools/qtgrpcgen/clientdefinitionprinter.cpp -------------------------------------------------------------------------------- /src/tools/qtgrpcgen/clientdefinitionprinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/tools/qtgrpcgen/clientdefinitionprinter.h -------------------------------------------------------------------------------- /src/tools/qtgrpcgen/grpctemplates.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/tools/qtgrpcgen/grpctemplates.cpp -------------------------------------------------------------------------------- /src/tools/qtgrpcgen/grpctemplates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/tools/qtgrpcgen/grpctemplates.h -------------------------------------------------------------------------------- /src/tools/qtgrpcgen/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/tools/qtgrpcgen/main.cpp -------------------------------------------------------------------------------- /src/tools/qtgrpcgen/qgrpcgenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/tools/qtgrpcgen/qgrpcgenerator.cpp -------------------------------------------------------------------------------- /src/tools/qtgrpcgen/qgrpcgenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/tools/qtgrpcgen/qgrpcgenerator.h -------------------------------------------------------------------------------- /src/tools/qtgrpcgen/qmlclientdeclarationprinter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/tools/qtgrpcgen/qmlclientdeclarationprinter.cpp -------------------------------------------------------------------------------- /src/tools/qtgrpcgen/qmlclientdeclarationprinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/tools/qtgrpcgen/qmlclientdeclarationprinter.h -------------------------------------------------------------------------------- /src/tools/qtgrpcgen/qmlclientdefinitionprinter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/tools/qtgrpcgen/qmlclientdefinitionprinter.cpp -------------------------------------------------------------------------------- /src/tools/qtgrpcgen/qmlclientdefinitionprinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/tools/qtgrpcgen/qmlclientdefinitionprinter.h -------------------------------------------------------------------------------- /src/tools/qtgrpcgen/serverdeclarationprinter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/tools/qtgrpcgen/serverdeclarationprinter.cpp -------------------------------------------------------------------------------- /src/tools/qtgrpcgen/serverdeclarationprinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/tools/qtgrpcgen/serverdeclarationprinter.h -------------------------------------------------------------------------------- /src/tools/qtprotobufgen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/tools/qtprotobufgen/CMakeLists.txt -------------------------------------------------------------------------------- /src/tools/qtprotobufgen/Qt6ProtobufToolsMacros.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/tools/qtprotobufgen/Qt6ProtobufToolsMacros.cmake -------------------------------------------------------------------------------- /src/tools/qtprotobufgen/QtProtocCommandWrapper.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/tools/qtprotobufgen/QtProtocCommandWrapper.cmake -------------------------------------------------------------------------------- /src/tools/qtprotobufgen/enumdeclarationprinter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/tools/qtprotobufgen/enumdeclarationprinter.cpp -------------------------------------------------------------------------------- /src/tools/qtprotobufgen/enumdeclarationprinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/tools/qtprotobufgen/enumdeclarationprinter.h -------------------------------------------------------------------------------- /src/tools/qtprotobufgen/enumdefinitionprinter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/tools/qtprotobufgen/enumdefinitionprinter.cpp -------------------------------------------------------------------------------- /src/tools/qtprotobufgen/enumdefinitionprinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/tools/qtprotobufgen/enumdefinitionprinter.h -------------------------------------------------------------------------------- /src/tools/qtprotobufgen/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/tools/qtprotobufgen/main.cpp -------------------------------------------------------------------------------- /src/tools/qtprotobufgen/messagedeclarationprinter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/tools/qtprotobufgen/messagedeclarationprinter.cpp -------------------------------------------------------------------------------- /src/tools/qtprotobufgen/messagedeclarationprinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/tools/qtprotobufgen/messagedeclarationprinter.h -------------------------------------------------------------------------------- /src/tools/qtprotobufgen/messagedefinitionprinter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/tools/qtprotobufgen/messagedefinitionprinter.cpp -------------------------------------------------------------------------------- /src/tools/qtprotobufgen/messagedefinitionprinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/tools/qtprotobufgen/messagedefinitionprinter.h -------------------------------------------------------------------------------- /src/tools/qtprotobufgen/qprotobufgenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/tools/qtprotobufgen/qprotobufgenerator.cpp -------------------------------------------------------------------------------- /src/tools/qtprotobufgen/qprotobufgenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/tools/qtprotobufgen/qprotobufgenerator.h -------------------------------------------------------------------------------- /src/tools/qtprotoccommon/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/tools/qtprotoccommon/CMakeLists.txt -------------------------------------------------------------------------------- /src/tools/qtprotoccommon/baseprinter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/tools/qtprotoccommon/baseprinter.cpp -------------------------------------------------------------------------------- /src/tools/qtprotoccommon/baseprinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/tools/qtprotoccommon/baseprinter.h -------------------------------------------------------------------------------- /src/tools/qtprotoccommon/commontemplates.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/tools/qtprotoccommon/commontemplates.cpp -------------------------------------------------------------------------------- /src/tools/qtprotoccommon/commontemplates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/tools/qtprotoccommon/commontemplates.h -------------------------------------------------------------------------------- /src/tools/qtprotoccommon/descriptorprinterbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/tools/qtprotoccommon/descriptorprinterbase.h -------------------------------------------------------------------------------- /src/tools/qtprotoccommon/generatorbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/tools/qtprotoccommon/generatorbase.cpp -------------------------------------------------------------------------------- /src/tools/qtprotoccommon/generatorbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/tools/qtprotoccommon/generatorbase.h -------------------------------------------------------------------------------- /src/tools/qtprotoccommon/generatorcommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/tools/qtprotoccommon/generatorcommon.cpp -------------------------------------------------------------------------------- /src/tools/qtprotoccommon/generatorcommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/tools/qtprotoccommon/generatorcommon.h -------------------------------------------------------------------------------- /src/tools/qtprotoccommon/options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/tools/qtprotoccommon/options.cpp -------------------------------------------------------------------------------- /src/tools/qtprotoccommon/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/tools/qtprotoccommon/options.h -------------------------------------------------------------------------------- /src/tools/qtprotoccommon/qtprotocdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/tools/qtprotoccommon/qtprotocdefs.h -------------------------------------------------------------------------------- /src/tools/qtprotoccommon/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/tools/qtprotoccommon/utils.cpp -------------------------------------------------------------------------------- /src/tools/qtprotoccommon/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/tools/qtprotoccommon/utils.h -------------------------------------------------------------------------------- /src/wellknown/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/wellknown/CMakeLists.txt -------------------------------------------------------------------------------- /src/wellknown/Qt6ProtobufWellKnownTypesBuildInternals.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/wellknown/Qt6ProtobufWellKnownTypesBuildInternals.cmake -------------------------------------------------------------------------------- /src/wellknown/QtProtobufWellKnownTypesExtras.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/wellknown/QtProtobufWellKnownTypesExtras.cmake.in -------------------------------------------------------------------------------- /src/wellknown/doc/qtprotobufwellknowntypes.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/wellknown/doc/qtprotobufwellknowntypes.qdoc -------------------------------------------------------------------------------- /src/wellknown/qprotobufanysupport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/wellknown/qprotobufanysupport.cpp -------------------------------------------------------------------------------- /src/wellknown/qprotobufanysupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/wellknown/qprotobufanysupport.h -------------------------------------------------------------------------------- /src/wellknown/qprotobufwellknowntypesjsonserializers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/wellknown/qprotobufwellknowntypesjsonserializers.cpp -------------------------------------------------------------------------------- /src/wellknown/qprotobufwellknowntypesjsonserializers_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/wellknown/qprotobufwellknowntypesjsonserializers_p.h -------------------------------------------------------------------------------- /src/wellknown/qtprotobufwellknowntypesglobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/src/wellknown/qtprotobufwellknowntypesglobal.h -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/grpc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpc/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/grpc/client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpc/client/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/grpc/client/bidistream/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpc/client/bidistream/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/grpc/client/bidistream/tst_grpc_client_bidistream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpc/client/bidistream/tst_grpc_client_bidistream.cpp -------------------------------------------------------------------------------- /tests/auto/grpc/client/clientstream/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpc/client/clientstream/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/grpc/client/clientstream/tst_grpc_client_clientstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpc/client/clientstream/tst_grpc_client_clientstream.cpp -------------------------------------------------------------------------------- /tests/auto/grpc/client/deadline/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpc/client/deadline/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/grpc/client/deadline/tst_grpc_client_deadline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpc/client/deadline/tst_grpc_client_deadline.cpp -------------------------------------------------------------------------------- /tests/auto/grpc/client/end2end/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpc/client/end2end/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/grpc/client/end2end/event.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpc/client/end2end/event.proto -------------------------------------------------------------------------------- /tests/auto/grpc/client/end2end/eventhub.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpc/client/end2end/eventhub.proto -------------------------------------------------------------------------------- /tests/auto/grpc/client/end2end/tst_grpc_client_end2end.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpc/client/end2end/tst_grpc_client_end2end.cpp -------------------------------------------------------------------------------- /tests/auto/grpc/client/interceptors/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpc/client/interceptors/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/grpc/client/interceptors/interceptor1.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpc/client/interceptors/interceptor1.proto -------------------------------------------------------------------------------- /tests/auto/grpc/client/interceptors/interceptor2.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpc/client/interceptors/interceptor2.proto -------------------------------------------------------------------------------- /tests/auto/grpc/client/interceptors/tst_grpc_client_interceptors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpc/client/interceptors/tst_grpc_client_interceptors.cpp -------------------------------------------------------------------------------- /tests/auto/grpc/client/serverstream/BLACKLIST: -------------------------------------------------------------------------------- 1 | [Deadline] 2 | macos 64bit arm 3 | -------------------------------------------------------------------------------- /tests/auto/grpc/client/serverstream/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpc/client/serverstream/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/grpc/client/serverstream/tst_grpc_client_serverstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpc/client/serverstream/tst_grpc_client_serverstream.cpp -------------------------------------------------------------------------------- /tests/auto/grpc/client/shared/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpc/client/shared/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/grpc/client/shared/client_service/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpc/client/shared/client_service/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/grpc/client/shared/client_test_common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpc/client/shared/client_test_common/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/grpc/client/shared/client_test_common/grpcclienttestbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpc/client/shared/client_test_common/grpcclienttestbase.cpp -------------------------------------------------------------------------------- /tests/auto/grpc/client/shared/client_test_common/grpcclienttestbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpc/client/shared/client_test_common/grpcclienttestbase.h -------------------------------------------------------------------------------- /tests/auto/grpc/client/shared/mockserver/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpc/client/shared/mockserver/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/grpc/client/shared/mockserver/certificates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpc/client/shared/mockserver/certificates.h -------------------------------------------------------------------------------- /tests/auto/grpc/client/shared/mockserver/mockserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpc/client/shared/mockserver/mockserver.cpp -------------------------------------------------------------------------------- /tests/auto/grpc/client/shared/mockserver/mockserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpc/client/shared/mockserver/mockserver.h -------------------------------------------------------------------------------- /tests/auto/grpc/client/shared/mockserver/tags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpc/client/shared/mockserver/tags.h -------------------------------------------------------------------------------- /tests/auto/grpc/client/shared/test_server/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpc/client/shared/test_server/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/grpc/client/shared/test_server/assets/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpc/client/shared/test_server/assets/cert.pem -------------------------------------------------------------------------------- /tests/auto/grpc/client/shared/test_server/assets/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpc/client/shared/test_server/assets/generate.sh -------------------------------------------------------------------------------- /tests/auto/grpc/client/shared/test_server/assets/key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpc/client/shared/test_server/assets/key.pem -------------------------------------------------------------------------------- /tests/auto/grpc/client/shared/test_server/testserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpc/client/shared/test_server/testserver.cpp -------------------------------------------------------------------------------- /tests/auto/grpc/client/shared/test_server/testserverrunner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpc/client/shared/test_server/testserverrunner.cpp -------------------------------------------------------------------------------- /tests/auto/grpc/client/shared/test_server/testserverrunner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpc/client/shared/test_server/testserverrunner.h -------------------------------------------------------------------------------- /tests/auto/grpc/client/shared/test_server_go/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpc/client/shared/test_server_go/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/grpc/client/shared/test_server_go/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpc/client/shared/test_server_go/main.go -------------------------------------------------------------------------------- /tests/auto/grpc/client/ssl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpc/client/ssl/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/grpc/client/ssl/tst_grpc_client_ssl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpc/client/ssl/tst_grpc_client_ssl.cpp -------------------------------------------------------------------------------- /tests/auto/grpc/client/unarycall/BLACKLIST: -------------------------------------------------------------------------------- 1 | [Deadline] 2 | macos 64bit arm 3 | -------------------------------------------------------------------------------- /tests/auto/grpc/client/unarycall/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpc/client/unarycall/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/grpc/client/unarycall/tst_grpc_client_unarycall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpc/client/unarycall/tst_grpc_client_unarycall.cpp -------------------------------------------------------------------------------- /tests/auto/grpc/qgrpccalloptions/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpc/qgrpccalloptions/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/grpc/qgrpccalloptions/tst_qgrpccalloptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpc/qgrpccalloptions/tst_qgrpccalloptions.cpp -------------------------------------------------------------------------------- /tests/auto/grpc/qgrpcchanneloptions/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpc/qgrpcchanneloptions/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/grpc/qgrpcchanneloptions/tst_qgrpcchanneloptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpc/qgrpcchanneloptions/tst_qgrpcchanneloptions.cpp -------------------------------------------------------------------------------- /tests/auto/grpc/qgrpchttp2channel/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpc/qgrpchttp2channel/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/grpc/qgrpchttp2channel/tst_qgrpchttp2channel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpc/qgrpchttp2channel/tst_qgrpchttp2channel.cpp -------------------------------------------------------------------------------- /tests/auto/grpc/qgrpcserializationformat/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpc/qgrpcserializationformat/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/grpc/qgrpcserializationformat/tst_qgrpcserializationformat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpc/qgrpcserializationformat/tst_qgrpcserializationformat.cpp -------------------------------------------------------------------------------- /tests/auto/grpc/qgrpcstatus/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpc/qgrpcstatus/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/grpc/qgrpcstatus/tst_qgrpcstatus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpc/qgrpcstatus/tst_qgrpcstatus.cpp -------------------------------------------------------------------------------- /tests/auto/grpc/server/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpc/server/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/grpc/server/tst_grpc_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpc/server/tst_grpc_server.cpp -------------------------------------------------------------------------------- /tests/auto/grpc/shared/assets/testfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpc/shared/assets/testfile -------------------------------------------------------------------------------- /tests/auto/grpc/shared/grpccommonoptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpc/shared/grpccommonoptions.h -------------------------------------------------------------------------------- /tests/auto/grpc/shared/message_latency_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpc/shared/message_latency_defs.h -------------------------------------------------------------------------------- /tests/auto/grpc/shared/proto/testservice.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpc/shared/proto/testservice.proto -------------------------------------------------------------------------------- /tests/auto/grpc/shared/server_proc_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpc/shared/server_proc_runner.h -------------------------------------------------------------------------------- /tests/auto/grpcgen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcgen/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/grpcgen/data/666-invalid-identifier.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcgen/data/666-invalid-identifier.proto -------------------------------------------------------------------------------- /tests/auto/grpcgen/data/cmake_generated/generate_package_subfolders/qtgrpc/tests/qtgrpcgen_client.grpc.qpb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcgen/data/cmake_generated/generate_package_subfolders/qtgrpc/tests/qtgrpcgen_client.grpc.qpb.cpp -------------------------------------------------------------------------------- /tests/auto/grpcgen/data/cmake_generated/generate_package_subfolders/qtgrpc/tests/qtgrpcgen_client.grpc.qpb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcgen/data/cmake_generated/generate_package_subfolders/qtgrpc/tests/qtgrpcgen_client.grpc.qpb.h -------------------------------------------------------------------------------- /tests/auto/grpcgen/data/cmake_generated/generate_package_subfolders/tst_qtgrpcgen_generate_package_subfolders_exports.qpb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcgen/data/cmake_generated/generate_package_subfolders/tst_qtgrpcgen_generate_package_subfolders_exports.qpb.h -------------------------------------------------------------------------------- /tests/auto/grpcgen/data/cmake_generated/invalid-identifier/666-invalid-identifier.qpb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcgen/data/cmake_generated/invalid-identifier/666-invalid-identifier.qpb.cpp -------------------------------------------------------------------------------- /tests/auto/grpcgen/data/cmake_generated/invalid-identifier/666-invalid-identifier.qpb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcgen/data/cmake_generated/invalid-identifier/666-invalid-identifier.qpb.h -------------------------------------------------------------------------------- /tests/auto/grpcgen/data/cmake_generated/invalid-identifier/666-invalid-identifier_client.grpc.qpb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcgen/data/cmake_generated/invalid-identifier/666-invalid-identifier_client.grpc.qpb.cpp -------------------------------------------------------------------------------- /tests/auto/grpcgen/data/cmake_generated/invalid-identifier/666-invalid-identifier_client.grpc.qpb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcgen/data/cmake_generated/invalid-identifier/666-invalid-identifier_client.grpc.qpb.h -------------------------------------------------------------------------------- /tests/auto/grpcgen/data/cmake_generated/invalid-identifier/666-invalid-identifier_qtprotoreg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcgen/data/cmake_generated/invalid-identifier/666-invalid-identifier_qtprotoreg.cpp -------------------------------------------------------------------------------- /tests/auto/grpcgen/data/cmake_generated/invalid-identifier/tst_qtgrpcgen_invalid-identifier_exports.qpb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcgen/data/cmake_generated/invalid-identifier/tst_qtgrpcgen_invalid-identifier_exports.qpb.h -------------------------------------------------------------------------------- /tests/auto/grpcgen/data/cmake_generated/invalid-identifier/tst_qtgrpcgen_protobuf_invalid-identifier_exports.qpb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcgen/data/cmake_generated/invalid-identifier/tst_qtgrpcgen_protobuf_invalid-identifier_exports.qpb.h -------------------------------------------------------------------------------- /tests/auto/grpcgen/data/cmake_generated/no_options/qtgrpcgen_client.grpc.qpb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcgen/data/cmake_generated/no_options/qtgrpcgen_client.grpc.qpb.cpp -------------------------------------------------------------------------------- /tests/auto/grpcgen/data/cmake_generated/no_options/qtgrpcgen_client.grpc.qpb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcgen/data/cmake_generated/no_options/qtgrpcgen_client.grpc.qpb.h -------------------------------------------------------------------------------- /tests/auto/grpcgen/data/cmake_generated/no_options/tst_qtgrpcgen_no_options_exports.qpb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcgen/data/cmake_generated/no_options/tst_qtgrpcgen_no_options_exports.qpb.h -------------------------------------------------------------------------------- /tests/auto/grpcgen/data/cmake_generated/protobuf_common/qtgrpc/tests/qtgrpcgen.qpb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcgen/data/cmake_generated/protobuf_common/qtgrpc/tests/qtgrpcgen.qpb.cpp -------------------------------------------------------------------------------- /tests/auto/grpcgen/data/cmake_generated/protobuf_common/qtgrpc/tests/qtgrpcgen.qpb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcgen/data/cmake_generated/protobuf_common/qtgrpc/tests/qtgrpcgen.qpb.h -------------------------------------------------------------------------------- /tests/auto/grpcgen/data/cmake_generated/protobuf_common/qtgrpc/tests/qtgrpcgen_qtprotoreg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcgen/data/cmake_generated/protobuf_common/qtgrpc/tests/qtgrpcgen_qtprotoreg.cpp -------------------------------------------------------------------------------- /tests/auto/grpcgen/data/cmake_generated/protobuf_common/tst_qtgrpcgen_protobuf_common_exports.qpb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcgen/data/cmake_generated/protobuf_common/tst_qtgrpcgen_protobuf_common_exports.qpb.h -------------------------------------------------------------------------------- /tests/auto/grpcgen/data/cmake_generated/qml/qmlqtgrpcgen_client.grpc.qpb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcgen/data/cmake_generated/qml/qmlqtgrpcgen_client.grpc.qpb.cpp -------------------------------------------------------------------------------- /tests/auto/grpcgen/data/cmake_generated/qml/qmlqtgrpcgen_client.grpc.qpb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcgen/data/cmake_generated/qml/qmlqtgrpcgen_client.grpc.qpb.h -------------------------------------------------------------------------------- /tests/auto/grpcgen/data/cmake_generated/qml/qtgrpcgen.qpb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcgen/data/cmake_generated/qml/qtgrpcgen.qpb.cpp -------------------------------------------------------------------------------- /tests/auto/grpcgen/data/cmake_generated/qml/qtgrpcgen.qpb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcgen/data/cmake_generated/qml/qtgrpcgen.qpb.h -------------------------------------------------------------------------------- /tests/auto/grpcgen/data/cmake_generated/qml/qtgrpcgen_client.grpc.qpb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcgen/data/cmake_generated/qml/qtgrpcgen_client.grpc.qpb.cpp -------------------------------------------------------------------------------- /tests/auto/grpcgen/data/cmake_generated/qml/qtgrpcgen_client.grpc.qpb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcgen/data/cmake_generated/qml/qtgrpcgen_client.grpc.qpb.h -------------------------------------------------------------------------------- /tests/auto/grpcgen/data/cmake_generated/qml/qtgrpcgen_qtprotoreg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcgen/data/cmake_generated/qml/qtgrpcgen_qtprotoreg.cpp -------------------------------------------------------------------------------- /tests/auto/grpcgen/data/cmake_generated/qml/tst_qtgrpcgen_qml_exports.qpb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcgen/data/cmake_generated/qml/tst_qtgrpcgen_qml_exports.qpb.h -------------------------------------------------------------------------------- /tests/auto/grpcgen/data/cmd_line_generated/export_macro_custom_file_name/qtgrpcgen_client.grpc.qpb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcgen/data/cmd_line_generated/export_macro_custom_file_name/qtgrpcgen_client.grpc.qpb.cpp -------------------------------------------------------------------------------- /tests/auto/grpcgen/data/cmd_line_generated/export_macro_custom_file_name/qtgrpcgen_client.grpc.qpb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcgen/data/cmd_line_generated/export_macro_custom_file_name/qtgrpcgen_client.grpc.qpb.h -------------------------------------------------------------------------------- /tests/auto/grpcgen/data/cmd_line_generated/export_macro_custom_file_name_force_generate/custom_file_name.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcgen/data/cmd_line_generated/export_macro_custom_file_name_force_generate/custom_file_name.hpp -------------------------------------------------------------------------------- /tests/auto/grpcgen/data/cmd_line_generated/export_macro_custom_file_name_force_generate/qtgrpcgen_client.grpc.qpb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcgen/data/cmd_line_generated/export_macro_custom_file_name_force_generate/qtgrpcgen_client.grpc.qpb.cpp -------------------------------------------------------------------------------- /tests/auto/grpcgen/data/cmd_line_generated/export_macro_custom_file_name_force_generate/qtgrpcgen_client.grpc.qpb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcgen/data/cmd_line_generated/export_macro_custom_file_name_force_generate/qtgrpcgen_client.grpc.qpb.h -------------------------------------------------------------------------------- /tests/auto/grpcgen/data/cmd_line_generated/export_macro_custom_file_name_skip_generate/qtgrpcgen_client.grpc.qpb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcgen/data/cmd_line_generated/export_macro_custom_file_name_skip_generate/qtgrpcgen_client.grpc.qpb.cpp -------------------------------------------------------------------------------- /tests/auto/grpcgen/data/cmd_line_generated/export_macro_custom_file_name_skip_generate/qtgrpcgen_client.grpc.qpb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcgen/data/cmd_line_generated/export_macro_custom_file_name_skip_generate/qtgrpcgen_client.grpc.qpb.h -------------------------------------------------------------------------------- /tests/auto/grpcgen/data/cmd_line_generated/header_guard_filename/qtgrpcgen_client.grpc.qpb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcgen/data/cmd_line_generated/header_guard_filename/qtgrpcgen_client.grpc.qpb.cpp -------------------------------------------------------------------------------- /tests/auto/grpcgen/data/cmd_line_generated/header_guard_filename/qtgrpcgen_client.grpc.qpb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcgen/data/cmd_line_generated/header_guard_filename/qtgrpcgen_client.grpc.qpb.h -------------------------------------------------------------------------------- /tests/auto/grpcgen/data/cmd_line_generated/header_guard_pragma/qtgrpcgen_client.grpc.qpb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcgen/data/cmd_line_generated/header_guard_pragma/qtgrpcgen_client.grpc.qpb.cpp -------------------------------------------------------------------------------- /tests/auto/grpcgen/data/cmd_line_generated/header_guard_pragma/qtgrpcgen_client.grpc.qpb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcgen/data/cmd_line_generated/header_guard_pragma/qtgrpcgen_client.grpc.qpb.h -------------------------------------------------------------------------------- /tests/auto/grpcgen/data/cmd_line_generated/no_options/qtgrpcgen_client.grpc.qpb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcgen/data/cmd_line_generated/no_options/qtgrpcgen_client.grpc.qpb.cpp -------------------------------------------------------------------------------- /tests/auto/grpcgen/data/cmd_line_generated/no_options/qtgrpcgen_client.grpc.qpb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcgen/data/cmd_line_generated/no_options/qtgrpcgen_client.grpc.qpb.h -------------------------------------------------------------------------------- /tests/auto/grpcgen/data/cmd_line_generated/qml/qmlqtgrpcgen_client.grpc.qpb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcgen/data/cmd_line_generated/qml/qmlqtgrpcgen_client.grpc.qpb.cpp -------------------------------------------------------------------------------- /tests/auto/grpcgen/data/cmd_line_generated/qml/qmlqtgrpcgen_client.grpc.qpb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcgen/data/cmd_line_generated/qml/qmlqtgrpcgen_client.grpc.qpb.h -------------------------------------------------------------------------------- /tests/auto/grpcgen/data/cmd_line_generated/qml/qtgrpcgen_client.grpc.qpb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcgen/data/cmd_line_generated/qml/qtgrpcgen_client.grpc.qpb.cpp -------------------------------------------------------------------------------- /tests/auto/grpcgen/data/cmd_line_generated/qml/qtgrpcgen_client.grpc.qpb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcgen/data/cmd_line_generated/qml/qtgrpcgen_client.grpc.qpb.h -------------------------------------------------------------------------------- /tests/auto/grpcgen/data/cmd_line_generated/qml_uri/qmlqtgrpcgen_client.grpc.qpb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcgen/data/cmd_line_generated/qml_uri/qmlqtgrpcgen_client.grpc.qpb.cpp -------------------------------------------------------------------------------- /tests/auto/grpcgen/data/cmd_line_generated/qml_uri/qmlqtgrpcgen_client.grpc.qpb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcgen/data/cmd_line_generated/qml_uri/qmlqtgrpcgen_client.grpc.qpb.h -------------------------------------------------------------------------------- /tests/auto/grpcgen/data/cmd_line_generated/qml_uri/qtgrpcgen_client.grpc.qpb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcgen/data/cmd_line_generated/qml_uri/qtgrpcgen_client.grpc.qpb.cpp -------------------------------------------------------------------------------- /tests/auto/grpcgen/data/cmd_line_generated/qml_uri/qtgrpcgen_client.grpc.qpb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcgen/data/cmd_line_generated/qml_uri/qtgrpcgen_client.grpc.qpb.h -------------------------------------------------------------------------------- /tests/auto/grpcgen/data/cmd_line_generated/qml_uri_export_macro/qmlqtgrpcgen_client.grpc.qpb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcgen/data/cmd_line_generated/qml_uri_export_macro/qmlqtgrpcgen_client.grpc.qpb.cpp -------------------------------------------------------------------------------- /tests/auto/grpcgen/data/cmd_line_generated/qml_uri_export_macro/qmlqtgrpcgen_client.grpc.qpb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcgen/data/cmd_line_generated/qml_uri_export_macro/qmlqtgrpcgen_client.grpc.qpb.h -------------------------------------------------------------------------------- /tests/auto/grpcgen/data/cmd_line_generated/qml_uri_export_macro/qtgrpcgen_client.grpc.qpb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcgen/data/cmd_line_generated/qml_uri_export_macro/qtgrpcgen_client.grpc.qpb.cpp -------------------------------------------------------------------------------- /tests/auto/grpcgen/data/cmd_line_generated/qml_uri_export_macro/qtgrpcgen_client.grpc.qpb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcgen/data/cmd_line_generated/qml_uri_export_macro/qtgrpcgen_client.grpc.qpb.h -------------------------------------------------------------------------------- /tests/auto/grpcgen/data/cmd_line_generated/qml_uri_export_macro_generate_package_subfolders/qtgrpc/tests/qmlqtgrpcgen_client.grpc.qpb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcgen/data/cmd_line_generated/qml_uri_export_macro_generate_package_subfolders/qtgrpc/tests/qmlqtgrpcgen_client.grpc.qpb.cpp -------------------------------------------------------------------------------- /tests/auto/grpcgen/data/cmd_line_generated/qml_uri_export_macro_generate_package_subfolders/qtgrpc/tests/qmlqtgrpcgen_client.grpc.qpb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcgen/data/cmd_line_generated/qml_uri_export_macro_generate_package_subfolders/qtgrpc/tests/qmlqtgrpcgen_client.grpc.qpb.h -------------------------------------------------------------------------------- /tests/auto/grpcgen/data/cmd_line_generated/qml_uri_export_macro_generate_package_subfolders/qtgrpc/tests/qtgrpcgen_client.grpc.qpb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcgen/data/cmd_line_generated/qml_uri_export_macro_generate_package_subfolders/qtgrpc/tests/qtgrpcgen_client.grpc.qpb.cpp -------------------------------------------------------------------------------- /tests/auto/grpcgen/data/cmd_line_generated/qml_uri_export_macro_generate_package_subfolders/qtgrpc/tests/qtgrpcgen_client.grpc.qpb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcgen/data/cmd_line_generated/qml_uri_export_macro_generate_package_subfolders/qtgrpc/tests/qtgrpcgen_client.grpc.qpb.h -------------------------------------------------------------------------------- /tests/auto/grpcgen/data/qtgrpcgen.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcgen/data/qtgrpcgen.proto -------------------------------------------------------------------------------- /tests/auto/grpcgen/tst_qtgrpcgen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcgen/tst_qtgrpcgen.cpp -------------------------------------------------------------------------------- /tests/auto/grpcquick/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcquick/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/grpcquick/calloptions/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcquick/calloptions/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/grpcquick/calloptions/qml/tst_calloptions.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcquick/calloptions/qml/tst_calloptions.qml -------------------------------------------------------------------------------- /tests/auto/grpcquick/calloptions/tst_calloptions_qml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcquick/calloptions/tst_calloptions_qml.cpp -------------------------------------------------------------------------------- /tests/auto/grpcquick/channeloptions/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcquick/channeloptions/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/grpcquick/channeloptions/qml/tst_channeloptions.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcquick/channeloptions/qml/tst_channeloptions.qml -------------------------------------------------------------------------------- /tests/auto/grpcquick/channeloptions/tst_channeloptions_qml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcquick/channeloptions/tst_channeloptions_qml.cpp -------------------------------------------------------------------------------- /tests/auto/grpcquick/client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcquick/client/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/grpcquick/client/bidistream/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcquick/client/bidistream/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/grpcquick/client/bidistream/qml/tst_grpc_client_bidistream.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcquick/client/bidistream/qml/tst_grpc_client_bidistream.qml -------------------------------------------------------------------------------- /tests/auto/grpcquick/client/bidistream/tst_grpc_client_bidistream_qml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcquick/client/bidistream/tst_grpc_client_bidistream_qml.cpp -------------------------------------------------------------------------------- /tests/auto/grpcquick/client/clientstream/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcquick/client/clientstream/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/grpcquick/client/clientstream/qml/tst_grpc_client_clientstream.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcquick/client/clientstream/qml/tst_grpc_client_clientstream.qml -------------------------------------------------------------------------------- /tests/auto/grpcquick/client/clientstream/tst_grpc_client_clientstream_qml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcquick/client/clientstream/tst_grpc_client_clientstream_qml.cpp -------------------------------------------------------------------------------- /tests/auto/grpcquick/client/serverstream/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcquick/client/serverstream/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/grpcquick/client/serverstream/qml/tst_grpc_client_serverstream.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcquick/client/serverstream/qml/tst_grpc_client_serverstream.qml -------------------------------------------------------------------------------- /tests/auto/grpcquick/client/serverstream/tst_grpc_client_serverstream_qml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcquick/client/serverstream/tst_grpc_client_serverstream_qml.cpp -------------------------------------------------------------------------------- /tests/auto/grpcquick/client/unarycall/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcquick/client/unarycall/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/grpcquick/client/unarycall/qml/tst_grpc_client_unarycall.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcquick/client/unarycall/qml/tst_grpc_client_unarycall.qml -------------------------------------------------------------------------------- /tests/auto/grpcquick/client/unarycall/tst_grpc_client_unarycall_qml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcquick/client/unarycall/tst_grpc_client_unarycall_qml.cpp -------------------------------------------------------------------------------- /tests/auto/grpcquick/http2channel/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcquick/http2channel/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/grpcquick/http2channel/qml/tst_grpchttp2channel.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcquick/http2channel/qml/tst_grpchttp2channel.qml -------------------------------------------------------------------------------- /tests/auto/grpcquick/http2channel/tst_grpchttp2channel_qml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcquick/http2channel/tst_grpchttp2channel_qml.cpp -------------------------------------------------------------------------------- /tests/auto/grpcquick/metadata/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcquick/metadata/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/grpcquick/metadata/qml/tst_metadata.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcquick/metadata/qml/tst_metadata.qml -------------------------------------------------------------------------------- /tests/auto/grpcquick/metadata/tst_metadata_qml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/grpcquick/metadata/tst_metadata_qml.cpp -------------------------------------------------------------------------------- /tests/auto/protobuf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/protobuf/basic/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/basic/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/protobuf/basic/proto/basicmessages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/basic/proto/basicmessages.proto -------------------------------------------------------------------------------- /tests/auto/protobuf/basic/proto/fieldindexrange.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/basic/proto/fieldindexrange.proto -------------------------------------------------------------------------------- /tests/auto/protobuf/basic/proto/generate_unknownfield_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/basic/proto/generate_unknownfield_data.py -------------------------------------------------------------------------------- /tests/auto/protobuf/basic/proto/mapmessages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/basic/proto/mapmessages.proto -------------------------------------------------------------------------------- /tests/auto/protobuf/basic/proto/repeatedmessages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/basic/proto/repeatedmessages.proto -------------------------------------------------------------------------------- /tests/auto/protobuf/basic/proto/repeatednonpackedmessages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/basic/proto/repeatednonpackedmessages.proto -------------------------------------------------------------------------------- /tests/auto/protobuf/basic/proto/unknownfield.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/basic/proto/unknownfield.proto -------------------------------------------------------------------------------- /tests/auto/protobuf/basic/qtprotobufserializertestdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/basic/qtprotobufserializertestdata.h -------------------------------------------------------------------------------- /tests/auto/protobuf/basic/tst_protobuf_basictypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/basic/tst_protobuf_basictypes.cpp -------------------------------------------------------------------------------- /tests/auto/protobuf/basic/tst_protobuf_deserialization_basictypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/basic/tst_protobuf_deserialization_basictypes.cpp -------------------------------------------------------------------------------- /tests/auto/protobuf/basic/tst_protobuf_deserialization_complex_maptypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/basic/tst_protobuf_deserialization_complex_maptypes.cpp -------------------------------------------------------------------------------- /tests/auto/protobuf/basic/tst_protobuf_deserialization_maptypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/basic/tst_protobuf_deserialization_maptypes.cpp -------------------------------------------------------------------------------- /tests/auto/protobuf/basic/tst_protobuf_deserialization_repeatedtypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/basic/tst_protobuf_deserialization_repeatedtypes.cpp -------------------------------------------------------------------------------- /tests/auto/protobuf/basic/tst_protobuf_internals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/basic/tst_protobuf_internals.cpp -------------------------------------------------------------------------------- /tests/auto/protobuf/basic/tst_protobuf_maptypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/basic/tst_protobuf_maptypes.cpp -------------------------------------------------------------------------------- /tests/auto/protobuf/basic/tst_protobuf_non_packed_repeatedtypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/basic/tst_protobuf_non_packed_repeatedtypes.cpp -------------------------------------------------------------------------------- /tests/auto/protobuf/basic/tst_protobuf_raw_serializers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/basic/tst_protobuf_raw_serializers.cpp -------------------------------------------------------------------------------- /tests/auto/protobuf/basic/tst_protobuf_repeatedtypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/basic/tst_protobuf_repeatedtypes.cpp -------------------------------------------------------------------------------- /tests/auto/protobuf/basic/tst_protobuf_serialization_basictypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/basic/tst_protobuf_serialization_basictypes.cpp -------------------------------------------------------------------------------- /tests/auto/protobuf/basic/tst_protobuf_serialization_complex_maptypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/basic/tst_protobuf_serialization_complex_maptypes.cpp -------------------------------------------------------------------------------- /tests/auto/protobuf/basic/tst_protobuf_serialization_maptypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/basic/tst_protobuf_serialization_maptypes.cpp -------------------------------------------------------------------------------- /tests/auto/protobuf/basic/tst_protobuf_serialization_repeatedtypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/basic/tst_protobuf_serialization_repeatedtypes.cpp -------------------------------------------------------------------------------- /tests/auto/protobuf/basic/tst_protobuf_unknown_field.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/basic/tst_protobuf_unknown_field.cpp -------------------------------------------------------------------------------- /tests/auto/protobuf/conformance/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/conformance/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/protobuf/conformance/data/conformance.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/conformance/data/conformance.proto -------------------------------------------------------------------------------- /tests/auto/protobuf/conformance/data/qt_attribution.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/conformance/data/qt_attribution.json -------------------------------------------------------------------------------- /tests/auto/protobuf/conformance/data/test_messages_proto3.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/conformance/data/test_messages_proto3.proto -------------------------------------------------------------------------------- /tests/auto/protobuf/conformance/expect_failing_tests_v3.21.9.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/conformance/expect_failing_tests_v3.21.9.0.txt -------------------------------------------------------------------------------- /tests/auto/protobuf/conformance/tst_protobuf_conformance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/conformance/tst_protobuf_conformance.cpp -------------------------------------------------------------------------------- /tests/auto/protobuf/converters/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/converters/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/protobuf/converters/tst_protobuf_converter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/converters/tst_protobuf_converter.cpp -------------------------------------------------------------------------------- /tests/auto/protobuf/duplicated_metatypes/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/duplicated_metatypes/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/protobuf/duplicated_metatypes/proto/duplicated_metatypes.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/duplicated_metatypes/proto/duplicated_metatypes.proto -------------------------------------------------------------------------------- /tests/auto/protobuf/duplicated_metatypes/proto/duplicated_metatypes_external.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/duplicated_metatypes/proto/duplicated_metatypes_external.proto -------------------------------------------------------------------------------- /tests/auto/protobuf/duplicated_metatypes/tst_protobuf_duplicatedmetatypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/duplicated_metatypes/tst_protobuf_duplicatedmetatypes.cpp -------------------------------------------------------------------------------- /tests/auto/protobuf/enums/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/enums/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/protobuf/enums/enummessages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/enums/enummessages.proto -------------------------------------------------------------------------------- /tests/auto/protobuf/enums/tst_protobuf_deserialization_enumtypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/enums/tst_protobuf_deserialization_enumtypes.cpp -------------------------------------------------------------------------------- /tests/auto/protobuf/enums/tst_protobuf_enumtypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/enums/tst_protobuf_enumtypes.cpp -------------------------------------------------------------------------------- /tests/auto/protobuf/enums/tst_protobuf_serialization_enumtypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/enums/tst_protobuf_serialization_enumtypes.cpp -------------------------------------------------------------------------------- /tests/auto/protobuf/externalpackage/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/externalpackage/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/protobuf/externalpackage/proto/externalpackage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/externalpackage/proto/externalpackage.proto -------------------------------------------------------------------------------- /tests/auto/protobuf/externalpackage/proto/externalpackageconsumer.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/externalpackage/proto/externalpackageconsumer.proto -------------------------------------------------------------------------------- /tests/auto/protobuf/externalpackage/tst_protobuf_externalpackage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/externalpackage/tst_protobuf_externalpackage.cpp -------------------------------------------------------------------------------- /tests/auto/protobuf/extranamespace/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/extranamespace/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/protobuf/extranamespace/proto/extranamespace.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/extranamespace/proto/extranamespace.proto -------------------------------------------------------------------------------- /tests/auto/protobuf/extranamespace/tst_protobuf_extranamespace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/extranamespace/tst_protobuf_extranamespace.cpp -------------------------------------------------------------------------------- /tests/auto/protobuf/json/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/json/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/protobuf/json/tst_protobuf_deserialization_json_basictypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/json/tst_protobuf_deserialization_json_basictypes.cpp -------------------------------------------------------------------------------- /tests/auto/protobuf/json/tst_protobuf_deserialization_json_enumtypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/json/tst_protobuf_deserialization_json_enumtypes.cpp -------------------------------------------------------------------------------- /tests/auto/protobuf/json/tst_protobuf_deserialization_json_maptypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/json/tst_protobuf_deserialization_json_maptypes.cpp -------------------------------------------------------------------------------- /tests/auto/protobuf/json/tst_protobuf_deserialization_json_repeatedtypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/json/tst_protobuf_deserialization_json_repeatedtypes.cpp -------------------------------------------------------------------------------- /tests/auto/protobuf/json/tst_protobuf_serialization_json_basictypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/json/tst_protobuf_serialization_json_basictypes.cpp -------------------------------------------------------------------------------- /tests/auto/protobuf/json/tst_protobuf_serialization_json_enumtypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/json/tst_protobuf_serialization_json_enumtypes.cpp -------------------------------------------------------------------------------- /tests/auto/protobuf/json/tst_protobuf_serialization_json_maptypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/json/tst_protobuf_serialization_json_maptypes.cpp -------------------------------------------------------------------------------- /tests/auto/protobuf/json/tst_protobuf_serialization_json_repeatedtypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/json/tst_protobuf_serialization_json_repeatedtypes.cpp -------------------------------------------------------------------------------- /tests/auto/protobuf/nested/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/nested/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/protobuf/nested/proto/externalpackage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/nested/proto/externalpackage.proto -------------------------------------------------------------------------------- /tests/auto/protobuf/nested/proto/nestedmessages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/nested/proto/nestedmessages.proto -------------------------------------------------------------------------------- /tests/auto/protobuf/nested/tst_protobuf_nestedtypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/nested/tst_protobuf_nestedtypes.cpp -------------------------------------------------------------------------------- /tests/auto/protobuf/nopackage/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/nopackage/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/protobuf/nopackage/tst_protobuf_nopackagetypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/nopackage/tst_protobuf_nopackagetypes.cpp -------------------------------------------------------------------------------- /tests/auto/protobuf/optional/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/optional/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/protobuf/optional/tst_protobuf_deserialization_optional.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/optional/tst_protobuf_deserialization_optional.cpp -------------------------------------------------------------------------------- /tests/auto/protobuf/optional/tst_protobuf_optional.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/optional/tst_protobuf_optional.cpp -------------------------------------------------------------------------------- /tests/auto/protobuf/optional/tst_protobuf_serialization_optional.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/optional/tst_protobuf_serialization_optional.cpp -------------------------------------------------------------------------------- /tests/auto/protobuf/qprotobuflazymessagepointer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/qprotobuflazymessagepointer/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/protobuf/qprotobuflazymessagepointer/tst_qprotobuflazymessagepointer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/qprotobuflazymessagepointer/tst_qprotobuflazymessagepointer.cpp -------------------------------------------------------------------------------- /tests/auto/protobuf/qprotobufoneof/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/qprotobufoneof/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/protobuf/qprotobufoneof/tst_qprotobufoneof.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/qprotobufoneof/tst_qprotobufoneof.cpp -------------------------------------------------------------------------------- /tests/auto/protobuf/qprotobufpropertyorderingbuilder/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/qprotobufpropertyorderingbuilder/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/protobuf/qprotobufpropertyorderingbuilder/tst_qprotobufpropertyorderingbuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/qprotobufpropertyorderingbuilder/tst_qprotobufpropertyorderingbuilder.cpp -------------------------------------------------------------------------------- /tests/auto/protobuf/recursive/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/recursive/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/protobuf/recursive/recursive.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/recursive/recursive.proto -------------------------------------------------------------------------------- /tests/auto/protobuf/recursive/tst_protobuf_recursive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/recursive/tst_protobuf_recursive.cpp -------------------------------------------------------------------------------- /tests/auto/protobuf/sequence/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/sequence/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/protobuf/sequence/proto/sequence.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/sequence/proto/sequence.proto -------------------------------------------------------------------------------- /tests/auto/protobuf/sequence/tst_protobuf_sequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/sequence/tst_protobuf_sequence.cpp -------------------------------------------------------------------------------- /tests/auto/protobuf/shared/qtprotobuftestscommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/shared/qtprotobuftestscommon.h -------------------------------------------------------------------------------- /tests/auto/protobuf/syntax/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/syntax/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/protobuf/syntax/tst_protobuf_syntax.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/syntax/tst_protobuf_syntax.cpp -------------------------------------------------------------------------------- /tests/auto/protobuf/transparentwrapper/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/transparentwrapper/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/protobuf/transparentwrapper/tst_protobuf_transparentwrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/transparentwrapper/tst_protobuf_transparentwrapper.cpp -------------------------------------------------------------------------------- /tests/auto/protobuf/wellknown/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/wellknown/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/protobuf/wellknown/proto/durationtest.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/wellknown/proto/durationtest.proto -------------------------------------------------------------------------------- /tests/auto/protobuf/wellknown/proto/generate_anymessages_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/wellknown/proto/generate_anymessages_data.py -------------------------------------------------------------------------------- /tests/auto/protobuf/wellknown/tst_protobuf_any.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/wellknown/tst_protobuf_any.cpp -------------------------------------------------------------------------------- /tests/auto/protobuf/wellknown/tst_protobuf_duration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/wellknown/tst_protobuf_duration.cpp -------------------------------------------------------------------------------- /tests/auto/protobuf/wellknown/tst_protobuf_timestamp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobuf/wellknown/tst_protobuf_timestamp.cpp -------------------------------------------------------------------------------- /tests/auto/protobufgen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/annotation.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/annotation.proto -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmake_generated/copy_comments/annotation.qpb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmake_generated/copy_comments/annotation.qpb.cpp -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmake_generated/copy_comments/annotation.qpb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmake_generated/copy_comments/annotation.qpb.h -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmake_generated/copy_comments/annotation_qtprotoreg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmake_generated/copy_comments/annotation_qtprotoreg.cpp -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmake_generated/copy_comments/tst_qtprotobufgen_copy_comments_exports.qpb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmake_generated/copy_comments/tst_qtprotobufgen_copy_comments_exports.qpb.h -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmake_generated/export_macro/qtprotobufgen.qpb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmake_generated/export_macro/qtprotobufgen.qpb.cpp -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmake_generated/export_macro/qtprotobufgen.qpb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmake_generated/export_macro/qtprotobufgen.qpb.h -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmake_generated/export_macro/qtprotobufgen_qtprotoreg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmake_generated/export_macro/qtprotobufgen_qtprotoreg.cpp -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmake_generated/export_macro/tst_qtprotobufgen_export_macro_exports.qpb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmake_generated/export_macro/tst_qtprotobufgen_export_macro_exports.qpb.h -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmake_generated/extra_namespace/qtprotobufgen.qpb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmake_generated/extra_namespace/qtprotobufgen.qpb.cpp -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmake_generated/extra_namespace/qtprotobufgen.qpb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmake_generated/extra_namespace/qtprotobufgen.qpb.h -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmake_generated/extra_namespace/qtprotobufgen_qtprotoreg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmake_generated/extra_namespace/qtprotobufgen_qtprotoreg.cpp -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmake_generated/extra_namespace/tst_qtprotobufgen_extra_namespace_exports.qpb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmake_generated/extra_namespace/tst_qtprotobufgen_extra_namespace_exports.qpb.h -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmake_generated/generate_package_subfolders/qt/protobuf/qtprotobufgen.qpb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmake_generated/generate_package_subfolders/qt/protobuf/qtprotobufgen.qpb.cpp -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmake_generated/generate_package_subfolders/qt/protobuf/qtprotobufgen.qpb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmake_generated/generate_package_subfolders/qt/protobuf/qtprotobufgen.qpb.h -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmake_generated/generate_package_subfolders/qt/protobuf/qtprotobufgen_qtprotoreg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmake_generated/generate_package_subfolders/qt/protobuf/qtprotobufgen_qtprotoreg.cpp -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmake_generated/generate_package_subfolders/tst_qtprotobufgen_generate_package_subfolders_exports.qpb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmake_generated/generate_package_subfolders/tst_qtprotobufgen_generate_package_subfolders_exports.qpb.h -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmake_generated/no_options/qtprotobufgen.qpb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmake_generated/no_options/qtprotobufgen.qpb.cpp -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmake_generated/no_options/qtprotobufgen.qpb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmake_generated/no_options/qtprotobufgen.qpb.h -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmake_generated/no_options/qtprotobufgen_qtprotoreg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmake_generated/no_options/qtprotobufgen_qtprotoreg.cpp -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmake_generated/no_options/tst_qtprotobufgen_no_options_exports.qpb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmake_generated/no_options/tst_qtprotobufgen_no_options_exports.qpb.h -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmake_generated/qml/qtprotobufgen.qpb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmake_generated/qml/qtprotobufgen.qpb.cpp -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmake_generated/qml/qtprotobufgen.qpb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmake_generated/qml/qtprotobufgen.qpb.h -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmake_generated/qml/qtprotobufgen_qtprotoreg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmake_generated/qml/qtprotobufgen_qtprotoreg.cpp -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmake_generated/qml/tst_qtprotobufgen_qml_exports.qpb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmake_generated/qml/tst_qtprotobufgen_qml_exports.qpb.h -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmake_generated/qml_uri/qtprotobufgen.qpb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmake_generated/qml_uri/qtprotobufgen.qpb.cpp -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmake_generated/qml_uri/qtprotobufgen.qpb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmake_generated/qml_uri/qtprotobufgen.qpb.h -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmake_generated/qml_uri/qtprotobufgen_qtprotoreg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmake_generated/qml_uri/qtprotobufgen_qtprotoreg.cpp -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmake_generated/qml_uri/tst_qtprotobufgen_qml_uri_exports.qpb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmake_generated/qml_uri/tst_qtprotobufgen_qml_uri_exports.qpb.h -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmake_generated/static/qtprotobufgen.qpb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmake_generated/static/qtprotobufgen.qpb.cpp -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmake_generated/static/qtprotobufgen.qpb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmake_generated/static/qtprotobufgen.qpb.h -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmake_generated/static/qtprotobufgen_qtprotoreg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmake_generated/static/qtprotobufgen_qtprotoreg.cpp -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmd_line_generated/copy_comments/annotation.qpb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmd_line_generated/copy_comments/annotation.qpb.cpp -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmd_line_generated/copy_comments/annotation.qpb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmd_line_generated/copy_comments/annotation.qpb.h -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmd_line_generated/copy_comments/annotation_qtprotoreg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmd_line_generated/copy_comments/annotation_qtprotoreg.cpp -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmd_line_generated/export_macro/qtprotobufgen.qpb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmd_line_generated/export_macro/qtprotobufgen.qpb.cpp -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmd_line_generated/export_macro/qtprotobufgen.qpb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmd_line_generated/export_macro/qtprotobufgen.qpb.h -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmd_line_generated/export_macro/qtprotobufgen_qtprotoreg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmd_line_generated/export_macro/qtprotobufgen_qtprotoreg.cpp -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmd_line_generated/export_macro_custom_file_name/qtprotobufgen.qpb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmd_line_generated/export_macro_custom_file_name/qtprotobufgen.qpb.cpp -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmd_line_generated/export_macro_custom_file_name/qtprotobufgen.qpb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmd_line_generated/export_macro_custom_file_name/qtprotobufgen.qpb.h -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmd_line_generated/export_macro_custom_file_name/qtprotobufgen_qtprotoreg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmd_line_generated/export_macro_custom_file_name/qtprotobufgen_qtprotoreg.cpp -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmd_line_generated/export_macro_custom_file_name_force_generate/custom_file_name.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmd_line_generated/export_macro_custom_file_name_force_generate/custom_file_name.hpp -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmd_line_generated/export_macro_custom_file_name_force_generate/qtprotobufgen.qpb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmd_line_generated/export_macro_custom_file_name_force_generate/qtprotobufgen.qpb.cpp -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmd_line_generated/export_macro_custom_file_name_force_generate/qtprotobufgen.qpb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmd_line_generated/export_macro_custom_file_name_force_generate/qtprotobufgen.qpb.h -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmd_line_generated/export_macro_custom_file_name_force_generate/qtprotobufgen_qtprotoreg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmd_line_generated/export_macro_custom_file_name_force_generate/qtprotobufgen_qtprotoreg.cpp -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmd_line_generated/export_macro_custom_file_name_skip_generate/qtprotobufgen.qpb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmd_line_generated/export_macro_custom_file_name_skip_generate/qtprotobufgen.qpb.cpp -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmd_line_generated/export_macro_custom_file_name_skip_generate/qtprotobufgen.qpb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmd_line_generated/export_macro_custom_file_name_skip_generate/qtprotobufgen.qpb.h -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmd_line_generated/export_macro_custom_file_name_skip_generate/qtprotobufgen_qtprotoreg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmd_line_generated/export_macro_custom_file_name_skip_generate/qtprotobufgen_qtprotoreg.cpp -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmd_line_generated/extra_namespace/qtprotobufgen.qpb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmd_line_generated/extra_namespace/qtprotobufgen.qpb.cpp -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmd_line_generated/extra_namespace/qtprotobufgen.qpb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmd_line_generated/extra_namespace/qtprotobufgen.qpb.h -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmd_line_generated/extra_namespace/qtprotobufgen_qtprotoreg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmd_line_generated/extra_namespace/qtprotobufgen_qtprotoreg.cpp -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmd_line_generated/generate_package_subfolders/qt/protobuf/qtprotobufgen.qpb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmd_line_generated/generate_package_subfolders/qt/protobuf/qtprotobufgen.qpb.cpp -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmd_line_generated/generate_package_subfolders/qt/protobuf/qtprotobufgen.qpb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmd_line_generated/generate_package_subfolders/qt/protobuf/qtprotobufgen.qpb.h -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmd_line_generated/generate_package_subfolders/qt/protobuf/qtprotobufgen_qtprotoreg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmd_line_generated/generate_package_subfolders/qt/protobuf/qtprotobufgen_qtprotoreg.cpp -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmd_line_generated/header_guard_filename/qtprotobufgenminimal.qpb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmd_line_generated/header_guard_filename/qtprotobufgenminimal.qpb.cpp -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmd_line_generated/header_guard_filename/qtprotobufgenminimal.qpb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmd_line_generated/header_guard_filename/qtprotobufgenminimal.qpb.h -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmd_line_generated/header_guard_filename/qtprotobufgenminimal_qtprotoreg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmd_line_generated/header_guard_filename/qtprotobufgenminimal_qtprotoreg.cpp -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmd_line_generated/header_guard_pragma/qtprotobufgenminimal.qpb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmd_line_generated/header_guard_pragma/qtprotobufgenminimal.qpb.cpp -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmd_line_generated/header_guard_pragma/qtprotobufgenminimal.qpb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmd_line_generated/header_guard_pragma/qtprotobufgenminimal.qpb.h -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmd_line_generated/header_guard_pragma/qtprotobufgenminimal_qtprotoreg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmd_line_generated/header_guard_pragma/qtprotobufgenminimal_qtprotoreg.cpp -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmd_line_generated/no_options/qtprotobufgen.qpb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmd_line_generated/no_options/qtprotobufgen.qpb.cpp -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmd_line_generated/no_options/qtprotobufgen.qpb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmd_line_generated/no_options/qtprotobufgen.qpb.h -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmd_line_generated/no_options/qtprotobufgen_qtprotoreg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmd_line_generated/no_options/qtprotobufgen_qtprotoreg.cpp -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmd_line_generated/qml/qtprotobufgen.qpb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmd_line_generated/qml/qtprotobufgen.qpb.cpp -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmd_line_generated/qml/qtprotobufgen.qpb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmd_line_generated/qml/qtprotobufgen.qpb.h -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmd_line_generated/qml/qtprotobufgen_qtprotoreg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmd_line_generated/qml/qtprotobufgen_qtprotoreg.cpp -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmd_line_generated/qml_uri/qtprotobufgen.qpb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmd_line_generated/qml_uri/qtprotobufgen.qpb.cpp -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmd_line_generated/qml_uri/qtprotobufgen.qpb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmd_line_generated/qml_uri/qtprotobufgen.qpb.h -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmd_line_generated/qml_uri/qtprotobufgen_qtprotoreg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmd_line_generated/qml_uri/qtprotobufgen_qtprotoreg.cpp -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmd_line_generated/qml_uri_export_macro/qtprotobufgen.qpb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmd_line_generated/qml_uri_export_macro/qtprotobufgen.qpb.cpp -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmd_line_generated/qml_uri_export_macro/qtprotobufgen.qpb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmd_line_generated/qml_uri_export_macro/qtprotobufgen.qpb.h -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmd_line_generated/qml_uri_export_macro/qtprotobufgen_qtprotoreg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmd_line_generated/qml_uri_export_macro/qtprotobufgen_qtprotoreg.cpp -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmd_line_generated/qml_uri_export_macro_generate_package_subfolders/qt/protobuf/qtprotobufgen.qpb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmd_line_generated/qml_uri_export_macro_generate_package_subfolders/qt/protobuf/qtprotobufgen.qpb.cpp -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmd_line_generated/qml_uri_export_macro_generate_package_subfolders/qt/protobuf/qtprotobufgen.qpb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmd_line_generated/qml_uri_export_macro_generate_package_subfolders/qt/protobuf/qtprotobufgen.qpb.h -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/cmd_line_generated/qml_uri_export_macro_generate_package_subfolders/qt/protobuf/qtprotobufgen_qtprotoreg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/cmd_line_generated/qml_uri_export_macro_generate_package_subfolders/qt/protobuf/qtprotobufgen_qtprotoreg.cpp -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/qtprotobufgen.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/qtprotobufgen.proto -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/qtprotobufgen_mutable_getter_clashing.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/qtprotobufgen_mutable_getter_clashing.proto -------------------------------------------------------------------------------- /tests/auto/protobufgen/data/qtprotobufgenminimal.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/data/qtprotobufgenminimal.proto -------------------------------------------------------------------------------- /tests/auto/protobufgen/tst_qtprotobufgen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufgen/tst_qtprotobufgen.cpp -------------------------------------------------------------------------------- /tests/auto/protobufqml/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufqml/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/protobufqml/basic/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufqml/basic/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/protobufqml/basic/qml/tst_basic.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufqml/basic/qml/tst_basic.qml -------------------------------------------------------------------------------- /tests/auto/protobufqml/basic/tst_protobuf_basictypes_qml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufqml/basic/tst_protobuf_basictypes_qml.cpp -------------------------------------------------------------------------------- /tests/auto/protobufqml/enums/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufqml/enums/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/protobufqml/enums/qml/tst_enumtypes.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufqml/enums/qml/tst_enumtypes.qml -------------------------------------------------------------------------------- /tests/auto/protobufqml/enums/tst_protobuf_enumtypes_qml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufqml/enums/tst_protobuf_enumtypes_qml.cpp -------------------------------------------------------------------------------- /tests/auto/protobufqml/messagelists/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufqml/messagelists/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/protobufqml/messagelists/qml/tst_repeated.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufqml/messagelists/qml/tst_repeated.qml -------------------------------------------------------------------------------- /tests/auto/protobufqml/messagelists/tst_protobuf_repeated_qml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufqml/messagelists/tst_protobuf_repeated_qml.cpp -------------------------------------------------------------------------------- /tests/auto/protobufqml/nested/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufqml/nested/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/protobufqml/nested/qml/tst_nested.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufqml/nested/qml/tst_nested.qml -------------------------------------------------------------------------------- /tests/auto/protobufqml/nested/tst_protobuf_nested_qml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufqml/nested/tst_protobuf_nested_qml.cpp -------------------------------------------------------------------------------- /tests/auto/protobufqml/nopackage/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufqml/nopackage/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/protobufqml/nopackage/qml/tst_nopackage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufqml/nopackage/qml/tst_nopackage.qml -------------------------------------------------------------------------------- /tests/auto/protobufqml/nopackage/tst_protobuf_nopackage_qml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufqml/nopackage/tst_protobuf_nopackage_qml.cpp -------------------------------------------------------------------------------- /tests/auto/protobufqml/oneof/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufqml/oneof/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/protobufqml/oneof/qml/tst_oneof.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufqml/oneof/qml/tst_oneof.qml -------------------------------------------------------------------------------- /tests/auto/protobufqml/oneof/tst_protobuf_oneof_qml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufqml/oneof/tst_protobuf_oneof_qml.cpp -------------------------------------------------------------------------------- /tests/auto/protobufqml/syntax/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufqml/syntax/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/protobufqml/syntax/qml/tst_syntax.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufqml/syntax/qml/tst_syntax.qml -------------------------------------------------------------------------------- /tests/auto/protobufqml/syntax/tst_protobuf_syntax_qml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufqml/syntax/tst_protobuf_syntax_qml.cpp -------------------------------------------------------------------------------- /tests/auto/protobufqttypes/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufqttypes/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/protobufqttypes/qtcoretypesnested.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufqttypes/qtcoretypesnested.proto -------------------------------------------------------------------------------- /tests/auto/protobufqttypes/qtguitypesnested.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufqttypes/qtguitypesnested.proto -------------------------------------------------------------------------------- /tests/auto/protobufqttypes/qtprotobufqttypescoretest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufqttypes/qtprotobufqttypescoretest.cpp -------------------------------------------------------------------------------- /tests/auto/protobufqttypes/qtprotobufqttypesguitest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protobufqttypes/qtprotobufqttypesguitest.cpp -------------------------------------------------------------------------------- /tests/auto/protocplugintestcommon/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protocplugintestcommon/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/protocplugintestcommon/protocplugintestcommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protocplugintestcommon/protocplugintestcommon.cpp -------------------------------------------------------------------------------- /tests/auto/protocplugintestcommon/protocplugintestcommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/protocplugintestcommon/protocplugintestcommon.h -------------------------------------------------------------------------------- /tests/auto/shared/data/proto/additionalenums.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/shared/data/proto/additionalenums.proto -------------------------------------------------------------------------------- /tests/auto/shared/data/proto/anymessages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/shared/data/proto/anymessages.proto -------------------------------------------------------------------------------- /tests/auto/shared/data/proto/basicmessages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/shared/data/proto/basicmessages.proto -------------------------------------------------------------------------------- /tests/auto/shared/data/proto/extranamespace.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/shared/data/proto/extranamespace.proto -------------------------------------------------------------------------------- /tests/auto/shared/data/proto/fieldindexrange.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/shared/data/proto/fieldindexrange.proto -------------------------------------------------------------------------------- /tests/auto/shared/data/proto/mapmessages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/shared/data/proto/mapmessages.proto -------------------------------------------------------------------------------- /tests/auto/shared/data/proto/nopackage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/shared/data/proto/nopackage.proto -------------------------------------------------------------------------------- /tests/auto/shared/data/proto/nopackageexternal.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/shared/data/proto/nopackageexternal.proto -------------------------------------------------------------------------------- /tests/auto/shared/data/proto/oneofmessages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/shared/data/proto/oneofmessages.proto -------------------------------------------------------------------------------- /tests/auto/shared/data/proto/optional.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/shared/data/proto/optional.proto -------------------------------------------------------------------------------- /tests/auto/shared/data/proto/qtcoretypes.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/shared/data/proto/qtcoretypes.proto -------------------------------------------------------------------------------- /tests/auto/shared/data/proto/qtguitypes.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/shared/data/proto/qtguitypes.proto -------------------------------------------------------------------------------- /tests/auto/shared/data/proto/repeatedmessages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/shared/data/proto/repeatedmessages.proto -------------------------------------------------------------------------------- /tests/auto/shared/data/proto/repeatednonpackedmessages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/shared/data/proto/repeatednonpackedmessages.proto -------------------------------------------------------------------------------- /tests/auto/shared/data/proto/syntax.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/shared/data/proto/syntax.proto -------------------------------------------------------------------------------- /tests/auto/shared/data/proto/testserivcenomessages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/shared/data/proto/testserivcenomessages.proto -------------------------------------------------------------------------------- /tests/auto/shared/data/proto/testservice.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/shared/data/proto/testservice.proto -------------------------------------------------------------------------------- /tests/auto/shared/data/proto/timestampmessages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/auto/shared/data/proto/timestampmessages.proto -------------------------------------------------------------------------------- /tests/benchmarks/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/benchmarks/CMakeLists.txt -------------------------------------------------------------------------------- /tests/benchmarks/protobuf/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2024 The Qt Company Ltd. 2 | # SPDX-License-Identifier: BSD-3-Clause 3 | 4 | add_subdirectory(deserialize) 5 | -------------------------------------------------------------------------------- /tests/benchmarks/protobuf/deserialize/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/benchmarks/protobuf/deserialize/CMakeLists.txt -------------------------------------------------------------------------------- /tests/benchmarks/protobuf/deserialize/data/bench.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/benchmarks/protobuf/deserialize/data/bench.proto -------------------------------------------------------------------------------- /tests/benchmarks/protobuf/deserialize/tst_bench_deserialize_protobuf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/benchmarks/protobuf/deserialize/tst_bench_deserialize_protobuf.cpp -------------------------------------------------------------------------------- /tests/benchmarks/protobuf/deserialize/tst_bench_deserialize_protobuf_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/benchmarks/protobuf/deserialize/tst_bench_deserialize_protobuf_base.cpp -------------------------------------------------------------------------------- /tests/benchmarks/protobuf/deserialize/tst_bench_deserialize_protobuf_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/benchmarks/protobuf/deserialize/tst_bench_deserialize_protobuf_base.h -------------------------------------------------------------------------------- /tests/benchmarks/protobuf/deserialize/tst_bench_deserialize_protobuf_json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/benchmarks/protobuf/deserialize/tst_bench_deserialize_protobuf_json.cpp -------------------------------------------------------------------------------- /tests/manual/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2024 The Qt Company Ltd. 2 | # SPDX-License-Identifier: BSD-3-Clause 3 | 4 | add_subdirectory(grpc) 5 | -------------------------------------------------------------------------------- /tests/manual/grpc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/manual/grpc/CMakeLists.txt -------------------------------------------------------------------------------- /tests/manual/grpc/benchmarks/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/manual/grpc/benchmarks/CMakeLists.txt -------------------------------------------------------------------------------- /tests/manual/grpc/benchmarks/asyncbenchserver/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/manual/grpc/benchmarks/asyncbenchserver/CMakeLists.txt -------------------------------------------------------------------------------- /tests/manual/grpc/benchmarks/asyncbenchserver/asyncbenchserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/manual/grpc/benchmarks/asyncbenchserver/asyncbenchserver.cpp -------------------------------------------------------------------------------- /tests/manual/grpc/benchmarks/asyncbenchserver/rpcjobs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/manual/grpc/benchmarks/asyncbenchserver/rpcjobs.h -------------------------------------------------------------------------------- /tests/manual/grpc/benchmarks/bench_async_ref_client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/manual/grpc/benchmarks/bench_async_ref_client/CMakeLists.txt -------------------------------------------------------------------------------- /tests/manual/grpc/benchmarks/bench_async_ref_client/bench_async_ref_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/manual/grpc/benchmarks/bench_async_ref_client/bench_async_ref_client.cpp -------------------------------------------------------------------------------- /tests/manual/grpc/benchmarks/bench_qtgrpcclient/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/manual/grpc/benchmarks/bench_qtgrpcclient/CMakeLists.txt -------------------------------------------------------------------------------- /tests/manual/grpc/benchmarks/bench_qtgrpcclient/bench_qtgrpcclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/manual/grpc/benchmarks/bench_qtgrpcclient/bench_qtgrpcclient.cpp -------------------------------------------------------------------------------- /tests/manual/grpc/benchmarks/proto/bench.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/manual/grpc/benchmarks/proto/bench.proto -------------------------------------------------------------------------------- /tests/manual/grpc/benchmarks/qrpcbench_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtgrpc/HEAD/tests/manual/grpc/benchmarks/qrpcbench_common.h --------------------------------------------------------------------------------