实例介绍
由于默认的ProtocolBuf在windows下生成的是静态链接库,在官方下载的动态编译的QT下无法使用,所以自己编译了动态链接库的版本。
【实例截图】
【核心代码】
4744302543286839064.rar
└── protobuf
│ └── protobuf
│ ├── any.cc
│ ├── any.h
│ ├── any.pb.cc
│ ├── any.pb.h
│ ├── any.proto
│ ├── any_test.cc
│ ├── any_test.proto
│ ├── api.pb.cc
│ ├── api.pb.h
│ ├── api.proto
│ ├── arena.cc
│ ├── arena.h
│ ├── arena_impl.h
│ ├── arenastring.cc
│ ├── arenastring.h
│ ├── arenastring_unittest.cc
│ ├── arena_test_util.cc
│ ├── arena_test_util.h
│ ├── arena_unittest.cc
│ ├── compiler
│ │ ├── annotation_test_util.cc
│ │ ├── annotation_test_util.h
│ │ ├── code_generator.cc
│ │ ├── code_generator.h
│ │ ├── command_line_interface.cc
│ │ ├── command_line_interface.h
│ │ ├── command_line_interface_unittest.cc
│ │ ├── cpp
│ │ │ ├── cpp_bootstrap_unittest.cc
│ │ │ ├── cpp_enum.cc
│ │ │ ├── cpp_enum_field.cc
│ │ │ ├── cpp_enum_field.h
│ │ │ ├── cpp_enum.h
│ │ │ ├── cpp_extension.cc
│ │ │ ├── cpp_extension.h
│ │ │ ├── cpp_field.cc
│ │ │ ├── cpp_field.h
│ │ │ ├── cpp_file.cc
│ │ │ ├── cpp_file.h
│ │ │ ├── cpp_generator.cc
│ │ │ ├── cpp_generator.h
│ │ │ ├── cpp_helpers.cc
│ │ │ ├── cpp_helpers.h
│ │ │ ├── cpp_map_field.cc
│ │ │ ├── cpp_map_field.h
│ │ │ ├── cpp_message.cc
│ │ │ ├── cpp_message_field.cc
│ │ │ ├── cpp_message_field.h
│ │ │ ├── cpp_message.h
│ │ │ ├── cpp_message_layout_helper.h
│ │ │ ├── cpp_move_unittest.cc
│ │ │ ├── cpp_options.h
│ │ │ ├── cpp_padding_optimizer.cc
│ │ │ ├── cpp_padding_optimizer.h
│ │ │ ├── cpp_plugin_unittest.cc
│ │ │ ├── cpp_primitive_field.cc
│ │ │ ├── cpp_primitive_field.h
│ │ │ ├── cpp_service.cc
│ │ │ ├── cpp_service.h
│ │ │ ├── cpp_string_field.cc
│ │ │ ├── cpp_string_field.h
│ │ │ ├── cpp_test_bad_identifiers.proto
│ │ │ ├── cpp_test_large_enum_value.proto
│ │ │ ├── cpp_unittest.cc
│ │ │ ├── cpp_unittest.h
│ │ │ └── metadata_test.cc
│ │ ├── csharp
│ │ │ ├── csharp_bootstrap_unittest.cc
│ │ │ ├── csharp_doc_comment.cc
│ │ │ ├── csharp_doc_comment.h
│ │ │ ├── csharp_enum.cc
│ │ │ ├── csharp_enum_field.cc
│ │ │ ├── csharp_enum_field.h
│ │ │ ├── csharp_enum.h
│ │ │ ├── csharp_field_base.cc
│ │ │ ├── csharp_field_base.h
│ │ │ ├── csharp_generator.cc
│ │ │ ├── csharp_generator.h
│ │ │ ├── csharp_generator_unittest.cc
│ │ │ ├── csharp_helpers.cc
│ │ │ ├── csharp_helpers.h
│ │ │ ├── csharp_map_field.cc
│ │ │ ├── csharp_map_field.h
│ │ │ ├── csharp_message.cc
│ │ │ ├── csharp_message_field.cc
│ │ │ ├── csharp_message_field.h
│ │ │ ├── csharp_message.h
│ │ │ ├── csharp_names.h
│ │ │ ├── csharp_options.h
│ │ │ ├── csharp_primitive_field.cc
│ │ │ ├── csharp_primitive_field.h
│ │ │ ├── csharp_reflection_class.cc
│ │ │ ├── csharp_reflection_class.h
│ │ │ ├── csharp_repeated_enum_field.cc
│ │ │ ├── csharp_repeated_enum_field.h
│ │ │ ├── csharp_repeated_message_field.cc
│ │ │ ├── csharp_repeated_message_field.h
│ │ │ ├── csharp_repeated_primitive_field.cc
│ │ │ ├── csharp_repeated_primitive_field.h
│ │ │ ├── csharp_source_generator_base.cc
│ │ │ ├── csharp_source_generator_base.h
│ │ │ ├── csharp_wrapper_field.cc
│ │ │ └── csharp_wrapper_field.h
│ │ ├── importer.cc
│ │ ├── importer.h
│ │ ├── importer_unittest.cc
│ │ ├── java
│ │ │ ├── java_context.cc
│ │ │ ├── java_context.h
│ │ │ ├── java_doc_comment.cc
│ │ │ ├── java_doc_comment.h
│ │ │ ├── java_doc_comment_unittest.cc
│ │ │ ├── java_enum.cc
│ │ │ ├── java_enum_field.cc
│ │ │ ├── java_enum_field.h
│ │ │ ├── java_enum_field_lite.cc
│ │ │ ├── java_enum_field_lite.h
│ │ │ ├── java_enum.h
│ │ │ ├── java_enum_lite.cc
│ │ │ ├── java_enum_lite.h
│ │ │ ├── java_extension.cc
│ │ │ ├── java_extension.h
│ │ │ ├── java_extension_lite.cc
│ │ │ ├── java_extension_lite.h
│ │ │ ├── java_field.cc
│ │ │ ├── java_field.h
│ │ │ ├── java_file.cc
│ │ │ ├── java_file.h
│ │ │ ├── java_generator.cc
│ │ │ ├── java_generator_factory.cc
│ │ │ ├── java_generator_factory.h
│ │ │ ├── java_generator.h
│ │ │ ├── java_helpers.cc
│ │ │ ├── java_helpers.h
│ │ │ ├── java_lazy_message_field.cc
│ │ │ ├── java_lazy_message_field.h
│ │ │ ├── java_lazy_message_field_lite.cc
│ │ │ ├── java_lazy_message_field_lite.h
│ │ │ ├── java_map_field.cc
│ │ │ ├── java_map_field.h
│ │ │ ├── java_map_field_lite.cc
│ │ │ ├── java_map_field_lite.h
│ │ │ ├── java_message_builder.cc
│ │ │ ├── java_message_builder.h
│ │ │ ├── java_message_builder_lite.cc
│ │ │ ├── java_message_builder_lite.h
│ │ │ ├── java_message.cc
│ │ │ ├── java_message_field.cc
│ │ │ ├── java_message_field.h
│ │ │ ├── java_message_field_lite.cc
│ │ │ ├── java_message_field_lite.h
│ │ │ ├── java_message.h
│ │ │ ├── java_message_lite.cc
│ │ │ ├── java_message_lite.h
│ │ │ ├── java_name_resolver.cc
│ │ │ ├── java_name_resolver.h
│ │ │ ├── java_names.h
│ │ │ ├── java_options.h
│ │ │ ├── java_plugin_unittest.cc
│ │ │ ├── java_primitive_field.cc
│ │ │ ├── java_primitive_field.h
│ │ │ ├── java_primitive_field_lite.cc
│ │ │ ├── java_primitive_field_lite.h
│ │ │ ├── java_service.cc
│ │ │ ├── java_service.h
│ │ │ ├── java_shared_code_generator.cc
│ │ │ ├── java_shared_code_generator.h
│ │ │ ├── java_string_field.cc
│ │ │ ├── java_string_field.h
│ │ │ ├── java_string_field_lite.cc
│ │ │ └── java_string_field_lite.h
│ │ ├── javanano
│ │ │ ├── javanano_enum.cc
│ │ │ ├── javanano_enum_field.cc
│ │ │ ├── javanano_enum_field.h
│ │ │ ├── javanano_enum.h
│ │ │ ├── javanano_extension.cc
│ │ │ ├── javanano_extension.h
│ │ │ ├── javanano_field.cc
│ │ │ ├── javanano_field.h
│ │ │ ├── javanano_file.cc
│ │ │ ├── javanano_file.h
│ │ │ ├── javanano_generator.cc
│ │ │ ├── javanano_generator.h
│ │ │ ├── javanano_helpers.cc
│ │ │ ├── javanano_helpers.h
│ │ │ ├── javanano_map_field.cc
│ │ │ ├── javanano_map_field.h
│ │ │ ├── javanano_message.cc
│ │ │ ├── javanano_message_field.cc
│ │ │ ├── javanano_message_field.h
│ │ │ ├── javanano_message.h
│ │ │ ├── javanano_params.h
│ │ │ ├── javanano_primitive_field.cc
│ │ │ └── javanano_primitive_field.h
│ │ ├── js
│ │ │ ├── embed.cc
│ │ │ ├── js_generator.cc
│ │ │ ├── js_generator.h
│ │ │ ├── well_known_types
│ │ │ │ ├── any.js
│ │ │ │ ├── struct.js
│ │ │ │ └── timestamp.js
│ │ │ ├── well_known_types_embed.cc
│ │ │ └── well_known_types_embed.h
│ │ ├── main.cc
│ │ ├── mock_code_generator.cc
│ │ ├── mock_code_generator.h
│ │ ├── objectivec
│ │ │ ├── objectivec_enum.cc
│ │ │ ├── objectivec_enum_field.cc
│ │ │ ├── objectivec_enum_field.h
│ │ │ ├── objectivec_enum.h
│ │ │ ├── objectivec_extension.cc
│ │ │ ├── objectivec_extension.h
│ │ │ ├── objectivec_field.cc
│ │ │ ├── objectivec_field.h
│ │ │ ├── objectivec_file.cc
│ │ │ ├── objectivec_file.h
│ │ │ ├── objectivec_generator.cc
│ │ │ ├── objectivec_generator.h
│ │ │ ├── objectivec_helpers.cc
│ │ │ ├── objectivec_helpers.h
│ │ │ ├── objectivec_helpers_unittest.cc
│ │ │ ├── objectivec_map_field.cc
│ │ │ ├── objectivec_map_field.h
│ │ │ ├── objectivec_message.cc
│ │ │ ├── objectivec_message_field.cc
│ │ │ ├── objectivec_message_field.h
│ │ │ ├── objectivec_message.h
│ │ │ ├── objectivec_oneof.cc
│ │ │ ├── objectivec_oneof.h
│ │ │ ├── objectivec_primitive_field.cc
│ │ │ └── objectivec_primitive_field.h
│ │ ├── package_info.h
│ │ ├── parser.cc
│ │ ├── parser.h
│ │ ├── parser_unittest.cc
│ │ ├── php
│ │ │ ├── php_generator.cc
│ │ │ └── php_generator.h
│ │ ├── plugin.cc
│ │ ├── plugin.h
│ │ ├── plugin.pb.cc
│ │ ├── plugin.pb.h
│ │ ├── plugin.proto
│ │ ├── python
│ │ │ ├── python_generator.cc
│ │ │ ├── python_generator.h
│ │ │ └── python_plugin_unittest.cc
│ │ ├── ruby
│ │ │ ├── ruby_generated_code_pb.rb
│ │ │ ├── ruby_generated_code.proto
│ │ │ ├── ruby_generator.cc
│ │ │ ├── ruby_generator.h
│ │ │ └── ruby_generator_unittest.cc
│ │ ├── subprocess.cc
│ │ ├── subprocess.h
│ │ ├── test_plugin.cc
│ │ ├── zip_output_unittest.sh
│ │ ├── zip_writer.cc
│ │ └── zip_writer.h
│ ├── descriptor.cc
│ ├── descriptor_database.cc
│ ├── descriptor_database.h
│ ├── descriptor_database_unittest.cc
│ ├── descriptor.h
│ ├── descriptor.pb.cc
│ ├── descriptor.pb.h
│ ├── descriptor.proto
│ ├── descriptor_unittest.cc
│ ├── drop_unknown_fields_test.cc
│ ├── duration.pb.cc
│ ├── duration.pb.h
│ ├── duration.proto
│ ├── dynamic_message.cc
│ ├── dynamic_message.h
│ ├── dynamic_message_unittest.cc
│ ├── empty.pb.cc
│ ├── empty.pb.h
│ ├── empty.proto
│ ├── extension_set.cc
│ ├── extension_set.h
│ ├── extension_set_heavy.cc
│ ├── extension_set_unittest.cc
│ ├── field_mask.pb.cc
│ ├── field_mask.pb.h
│ ├── field_mask.proto
│ ├── generated_enum_reflection.h
│ ├── generated_enum_util.h
│ ├── generated_message_reflection.cc
│ ├── generated_message_reflection.h
│ ├── generated_message_reflection_unittest.cc
│ ├── generated_message_table_driven.cc
│ ├── generated_message_table_driven.h
│ ├── generated_message_table_driven_lite.cc
│ ├── generated_message_table_driven_lite.h
│ ├── generated_message_util.cc
│ ├── generated_message_util.h
│ ├── has_bits.h
│ ├── io
│ │ ├── coded_stream.cc
│ │ ├── coded_stream.h
│ │ ├── coded_stream_inl.h
│ │ ├── coded_stream_unittest.cc
│ │ ├── gzip_stream.cc
│ │ ├── gzip_stream.h
│ │ ├── gzip_stream_unittest.sh
│ │ ├── package_info.h
│ │ ├── printer.cc
│ │ ├── printer.h
│ │ ├── printer_unittest.cc
│ │ ├── strtod.cc
│ │ ├── strtod.h
│ │ ├── tokenizer.cc
│ │ ├── tokenizer.h
│ │ ├── tokenizer_unittest.cc
│ │ ├── zero_copy_stream.cc
│ │ ├── zero_copy_stream.h
│ │ ├── zero_copy_stream_impl.cc
│ │ ├── zero_copy_stream_impl.h
│ │ ├── zero_copy_stream_impl_lite.cc
│ │ ├── zero_copy_stream_impl_lite.h
│ │ └── zero_copy_stream_unittest.cc
│ ├── lite_arena_unittest.cc
│ ├── lite_unittest.cc
│ ├── map_entry.h
│ ├── map_entry_lite.h
│ ├── map_field.cc
│ ├── map_field.h
│ ├── map_field_inl.h
│ ├── map_field_lite.h
│ ├── map_field_test.cc
│ ├── map.h
│ ├── map_lite_test_util.cc
│ ├── map_lite_test_util.h
│ ├── map_lite_unittest.proto
│ ├── map_proto2_unittest.proto
│ ├── map_test.cc
│ ├── map_test_util.cc
│ ├── map_test_util.h
│ ├── map_test_util_impl.h
│ ├── map_type_handler.h
│ ├── map_unittest.proto
│ ├── map_unittest_proto3.proto
│ ├── message.cc
│ ├── message.h
│ ├── message_lite.cc
│ ├── message_lite.h
│ ├── message_unittest.cc
│ ├── metadata.h
│ ├── metadata_lite.h
│ ├── no_field_presence_test.cc
│ ├── package_info.h
│ ├── preserve_unknown_enum_test.cc
│ ├── proto3_arena_lite_unittest.cc
│ ├── proto3_arena_unittest.cc
│ ├── proto3_lite_unittest.cc
│ ├── reflection.h
│ ├── reflection_internal.h
│ ├── reflection_ops.cc
│ ├── reflection_ops.h
│ ├── reflection_ops_unittest.cc
│ ├── repeated_field.cc
│ ├── repeated_field.h
│ ├── repeated_field_reflection_unittest.cc
│ ├── repeated_field_unittest.cc
│ ├── service.cc
│ ├── service.h
│ ├── source_context.pb.cc
│ ├── source_context.pb.h
│ ├── source_context.proto
│ ├── struct.pb.cc
│ ├── struct.pb.h
│ ├── struct.proto
│ ├── stubs
│ │ ├── atomicops.h
│ │ ├── atomicops_internals_arm64_gcc.h
│ │ ├── atomicops_internals_arm_gcc.h
│ │ ├── atomicops_internals_arm_qnx.h
│ │ ├── atomicops_internals_generic_c11_atomic.h
│ │ ├── atomicops_internals_generic_gcc.h
│ │ ├── atomicops_internals_mips_gcc.h
│ │ ├── atomicops_internals_power.h
│ │ ├── atomicops_internals_ppc_gcc.h
│ │ ├── atomicops_internals_solaris.h
│ │ ├── atomicops_internals_tsan.h
│ │ ├── atomicops_internals_x86_gcc.cc
│ │ ├── atomicops_internals_x86_gcc.h
│ │ ├── atomicops_internals_x86_msvc.cc
│ │ ├── atomicops_internals_x86_msvc.h
│ │ ├── atomic_sequence_num.h
│ │ ├── bytestream.cc
│ │ ├── bytestream.h
│ │ ├── bytestream_unittest.cc
│ │ ├── callback.h
│ │ ├── casts.h
│ │ ├── common.cc
│ │ ├── common.h
│ │ ├── common_unittest.cc
│ │ ├── fastmem.h
│ │ ├── hash.h
│ │ ├── int128.cc
│ │ ├── int128.h
│ │ ├── int128_unittest.cc
│ │ ├── io_win32.cc
│ │ ├── io_win32.h
│ │ ├── io_win32_unittest.cc
│ │ ├── logging.h
│ │ ├── macros.h
│ │ ├── map_util.h
│ │ ├── mathlimits.cc
│ │ ├── mathlimits.h
│ │ ├── mathutil.h
│ │ ├── mutex.h
│ │ ├── once.cc
│ │ ├── once.h
│ │ ├── once_unittest.cc
│ │ ├── platform_macros.h
│ │ ├── port.h
│ │ ├── scoped_ptr.h
│ │ ├── shared_ptr.h
│ │ ├── singleton.h
│ │ ├── status.cc
│ │ ├── status.h
│ │ ├── status_macros.h
│ │ ├── statusor.cc
│ │ ├── statusor.h
│ │ ├── statusor_test.cc
│ │ ├── status_test.cc
│ │ ├── stl_util.h
│ │ ├── stringpiece.cc
│ │ ├── stringpiece.h
│ │ ├── stringpiece_unittest.cc
│ │ ├── stringprintf.cc
│ │ ├── stringprintf.h
│ │ ├── stringprintf_unittest.cc
│ │ ├── structurally_valid.cc
│ │ ├── structurally_valid_unittest.cc
│ │ ├── strutil.cc
│ │ ├── strutil.h
│ │ ├── strutil_unittest.cc
│ │ ├── substitute.cc
│ │ ├── substitute.h
│ │ ├── template_util.h
│ │ ├── template_util_unittest.cc
│ │ ├── time.cc
│ │ ├── time.h
│ │ ├── time_test.cc
│ │ ├── type_traits.h
│ │ └── type_traits_unittest.cc
│ ├── testdata
│ │ ├── bad_utf8_string
│ │ ├── golden_message
│ │ ├── golden_message_maps
│ │ ├── golden_message_oneof_implemented
│ │ ├── golden_message_proto3
│ │ ├── golden_packed_fields_message
│ │ ├── map_test_data.txt
│ │ ├── text_format_unittest_data_oneof_implemented.txt
│ │ ├── text_format_unittest_data_pointy_oneof.txt
│ │ ├── text_format_unittest_data_pointy.txt
│ │ ├── text_format_unittest_data.txt
│ │ ├── text_format_unittest_extensions_data_pointy.txt
│ │ └── text_format_unittest_extensions_data.txt
│ ├── testing
│ │ ├── file.cc
│ │ ├── file.h
│ │ ├── googletest.cc
│ │ ├── googletest.h
│ │ ├── zcgunzip.cc
│ │ └── zcgzip.cc
│ ├── test_messages_proto2.proto
│ ├── test_messages_proto3.proto
│ ├── test_util.cc
│ ├── test_util.h
│ ├── test_util_lite.cc
│ ├── test_util_lite.h
│ ├── text_format.cc
│ ├── text_format.h
│ ├── text_format_unittest.cc
│ ├── timestamp.pb.cc
│ ├── timestamp.pb.h
│ ├── timestamp.proto
│ ├── type.pb.cc
│ ├── type.pb.h
│ ├── type.proto
│ ├── unittest_arena.proto
│ ├── unittest_custom_options.proto
│ ├── unittest_drop_unknown_fields.proto
│ ├── unittest_embed_optimize_for.proto
│ ├── unittest_empty.proto
│ ├── unittest_enormous_descriptor.proto
│ ├── unittest_import_lite.proto
│ ├── unittest_import.proto
│ ├── unittest_import_proto3.proto
│ ├── unittest_import_public_lite.proto
│ ├── unittest_import_public.proto
│ ├── unittest_import_public_proto3.proto
│ ├── unittest_lazy_dependencies_custom_option.proto
│ ├── unittest_lazy_dependencies_enum.proto
│ ├── unittest_lazy_dependencies.proto
│ ├── unittest_lite_imports_nonlite.proto
│ ├── unittest_lite.proto
│ ├── unittest_mset.proto
│ ├── unittest_mset_wire_format.proto
│ ├── unittest_no_arena_import.proto
│ ├── unittest_no_arena_lite.proto
│ ├── unittest_no_arena.proto
│ ├── unittest_no_field_presence.proto
│ ├── unittest_no_generic_services.proto
│ ├── unittest_optimize_for.proto
│ ├── unittest_preserve_unknown_enum2.proto
│ ├── unittest_preserve_unknown_enum.proto
│ ├── unittest.proto
│ ├── unittest_proto3_arena_lite.proto
│ ├── unittest_proto3_arena.proto
│ ├── unittest_proto3_lite.proto
│ ├── unittest_proto3.proto
│ ├── unittest_well_known_types.proto
│ ├── unknown_field_set.cc
│ ├── unknown_field_set.h
│ ├── unknown_field_set_unittest.cc
│ ├── util
│ │ ├── delimited_message_util.cc
│ │ ├── delimited_message_util.h
│ │ ├── delimited_message_util_test.cc
│ │ ├── field_comparator.cc
│ │ ├── field_comparator.h
│ │ ├── field_comparator_test.cc
│ │ ├── field_mask_util.cc
│ │ ├── field_mask_util.h
│ │ ├── field_mask_util_test.cc
│ │ ├── internal
│ │ │ ├── constants.h
│ │ │ ├── datapiece.cc
│ │ │ ├── datapiece.h
│ │ │ ├── default_value_objectwriter.cc
│ │ │ ├── default_value_objectwriter.h
│ │ │ ├── default_value_objectwriter_test.cc
│ │ │ ├── error_listener.cc
│ │ │ ├── error_listener.h
│ │ │ ├── expecting_objectwriter.h
│ │ │ ├── field_mask_utility.cc
│ │ │ ├── field_mask_utility.h
│ │ │ ├── json_escaping.cc
│ │ │ ├── json_escaping.h
│ │ │ ├── json_objectwriter.cc
│ │ │ ├── json_objectwriter.h
│ │ │ ├── json_objectwriter_test.cc
│ │ │ ├── json_stream_parser.cc
│ │ │ ├── json_stream_parser.h
│ │ │ ├── json_stream_parser_test.cc
│ │ │ ├── location_tracker.h
│ │ │ ├── mock_error_listener.h
│ │ │ ├── object_location_tracker.h
│ │ │ ├── object_source.h
│ │ │ ├── object_writer.cc
│ │ │ ├── object_writer.h
│ │ │ ├── protostream_objectsource.cc
│ │ │ ├── protostream_objectsource.h
│ │ │ ├── protostream_objectsource_test.cc
│ │ │ ├── protostream_objectwriter.cc
│ │ │ ├── protostream_objectwriter.h
│ │ │ ├── protostream_objectwriter_test.cc
│ │ │ ├── proto_writer.cc
│ │ │ ├── proto_writer.h
│ │ │ ├── structured_objectwriter.h
│ │ │ ├── testdata
│ │ │ │ ├── anys.proto
│ │ │ │ ├── books.proto
│ │ │ │ ├── default_value.proto
│ │ │ │ ├── default_value_test.proto
│ │ │ │ ├── field_mask.proto
│ │ │ │ ├── maps.proto
│ │ │ │ ├── oneofs.proto
│ │ │ │ ├── proto3.proto
│ │ │ │ ├── struct.proto
│ │ │ │ ├── timestamp_duration.proto
│ │ │ │ └── wrappers.proto
│ │ │ ├── type_info.cc
│ │ │ ├── type_info.h
│ │ │ ├── type_info_test_helper.cc
│ │ │ ├── type_info_test_helper.h
│ │ │ ├── utility.cc
│ │ │ └── utility.h
│ │ ├── json_format_proto3.proto
│ │ ├── json_util.cc
│ │ ├── json_util.h
│ │ ├── json_util_test.cc
│ │ ├── message_differencer.cc
│ │ ├── message_differencer.h
│ │ ├── message_differencer_unittest.cc
│ │ ├── message_differencer_unittest.proto
│ │ ├── package_info.h
│ │ ├── time_util.cc
│ │ ├── time_util.h
│ │ ├── time_util_test.cc
│ │ ├── type_resolver.h
│ │ ├── type_resolver_util.cc
│ │ ├── type_resolver_util.h
│ │ └── type_resolver_util_test.cc
│ ├── well_known_types_unittest.cc
│ ├── wire_format.cc
│ ├── wire_format.h
│ ├── wire_format_lite.cc
│ ├── wire_format_lite.h
│ ├── wire_format_lite_inl.h
│ ├── wire_format_unittest.cc
│ ├── wrappers.pb.cc
│ ├── wrappers.pb.h
│ └── wrappers.proto
├── js_embed.exe
├── libprotobuf.dll
├── libprotobuf.lib
├── libprotobuf-lite.dll
├── libprotobuf-lite.lib
├── libprotoc.dll
├── libprotoc.lib
├── protoc.exe
├── traninfo.pb.cc
├── traninfo.pb.h
└── traninfo.proto
21 directories, 605 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论