├── .gitignore ├── ProtobufToUEStruct.uplugin ├── README.md ├── Resources ├── Icon128.png └── PlaceholderButtonIcon.svg └── Source ├── ProtobufToUEStruct ├── Private │ ├── ProtobufToUEStruct.cpp │ ├── ProtobufToUEStructCommands.cpp │ └── ProtobufToUEStructStyle.cpp ├── ProtobufToUEStruct.Build.cs └── Public │ ├── ProtobufPluginPublicStruct.h │ ├── ProtobufToUEStruct.h │ ├── ProtobufToUEStructCommands.h │ ├── ProtobufToUEStructStyle.h │ └── Tools │ ├── JsonObjectConverterEX.cpp │ └── JsonObjectConverterEx.h └── libProtobuf ├── bin ├── Bulid_Battle.bat ├── Bulid_Editor.bat └── protoc.exe ├── include └── google │ └── protobuf │ ├── any.h │ ├── any.pb.h │ ├── any.proto │ ├── api.pb.h │ ├── api.proto │ ├── arena.h │ ├── arena_impl.h │ ├── arenastring.h │ ├── compiler │ ├── code_generator.h │ ├── command_line_interface.h │ ├── cpp │ │ └── cpp_generator.h │ ├── csharp │ │ ├── csharp_generator.h │ │ └── csharp_names.h │ ├── importer.h │ ├── java │ │ ├── java_generator.h │ │ └── java_names.h │ ├── js │ │ ├── js_generator.h │ │ └── well_known_types_embed.h │ ├── objectivec │ │ ├── objectivec_generator.h │ │ └── objectivec_helpers.h │ ├── parser.h │ ├── php │ │ └── php_generator.h │ ├── plugin.h │ ├── plugin.pb.h │ ├── plugin.proto │ ├── python │ │ └── python_generator.h │ └── ruby │ │ └── ruby_generator.h │ ├── descriptor.h │ ├── descriptor.pb.h │ ├── descriptor.proto │ ├── descriptor_database.h │ ├── duration.pb.h │ ├── duration.proto │ ├── dynamic_message.h │ ├── empty.pb.h │ ├── empty.proto │ ├── extension_set.h │ ├── extension_set_inl.h │ ├── field_mask.pb.h │ ├── field_mask.proto │ ├── generated_enum_reflection.h │ ├── generated_enum_util.h │ ├── generated_message_reflection.h │ ├── generated_message_table_driven.h │ ├── generated_message_util.h │ ├── has_bits.h │ ├── implicit_weak_message.h │ ├── io │ ├── coded_stream.h │ ├── gzip_stream.h │ ├── io_win32.h │ ├── printer.h │ ├── strtod.h │ ├── tokenizer.h │ ├── zero_copy_stream.h │ ├── zero_copy_stream_impl.h │ └── zero_copy_stream_impl_lite.h │ ├── map.h │ ├── map_entry.h │ ├── map_entry_lite.h │ ├── map_field.h │ ├── map_field_inl.h │ ├── map_field_lite.h │ ├── map_type_handler.h │ ├── message.h │ ├── message_lite.h │ ├── metadata.h │ ├── metadata_lite.h │ ├── parse_context.h │ ├── port.h │ ├── port_def.inc │ ├── port_undef.inc │ ├── reflection.h │ ├── reflection_ops.h │ ├── repeated_field.h │ ├── service.h │ ├── source_context.pb.h │ ├── source_context.proto │ ├── struct.pb.h │ ├── struct.proto │ ├── stubs │ ├── bytestream.h │ ├── callback.h │ ├── casts.h │ ├── common.h │ ├── hash.h │ ├── logging.h │ ├── macros.h │ ├── map_util.h │ ├── mutex.h │ ├── once.h │ ├── platform_macros.h │ ├── port.h │ ├── status.h │ ├── stl_util.h │ ├── stringpiece.h │ ├── strutil.h │ └── template_util.h │ ├── text_format.h │ ├── timestamp.pb.h │ ├── timestamp.proto │ ├── type.pb.h │ ├── type.proto │ ├── unknown_field_set.h │ ├── util │ ├── delimited_message_util.h │ ├── field_comparator.h │ ├── field_mask_util.h │ ├── json_util.h │ ├── message_differencer.h │ ├── time_util.h │ ├── type_resolver.h │ └── type_resolver_util.h │ ├── wire_format.h │ ├── wire_format_lite.h │ ├── wrappers.pb.h │ └── wrappers.proto ├── lib ├── Windows │ └── libprotobuf.lib ├── libprotobuf-lite.lib ├── libprotoc.lib └── pkgconfig │ ├── protobuf-lite.pc │ └── protobuf.pc └── libProtobuf.Build.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/.gitignore -------------------------------------------------------------------------------- /ProtobufToUEStruct.uplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/ProtobufToUEStruct.uplugin -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Resources/Icon128.png -------------------------------------------------------------------------------- /Resources/PlaceholderButtonIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Resources/PlaceholderButtonIcon.svg -------------------------------------------------------------------------------- /Source/ProtobufToUEStruct/Private/ProtobufToUEStruct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/ProtobufToUEStruct/Private/ProtobufToUEStruct.cpp -------------------------------------------------------------------------------- /Source/ProtobufToUEStruct/Private/ProtobufToUEStructCommands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/ProtobufToUEStruct/Private/ProtobufToUEStructCommands.cpp -------------------------------------------------------------------------------- /Source/ProtobufToUEStruct/Private/ProtobufToUEStructStyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/ProtobufToUEStruct/Private/ProtobufToUEStructStyle.cpp -------------------------------------------------------------------------------- /Source/ProtobufToUEStruct/ProtobufToUEStruct.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/ProtobufToUEStruct/ProtobufToUEStruct.Build.cs -------------------------------------------------------------------------------- /Source/ProtobufToUEStruct/Public/ProtobufPluginPublicStruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/ProtobufToUEStruct/Public/ProtobufPluginPublicStruct.h -------------------------------------------------------------------------------- /Source/ProtobufToUEStruct/Public/ProtobufToUEStruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/ProtobufToUEStruct/Public/ProtobufToUEStruct.h -------------------------------------------------------------------------------- /Source/ProtobufToUEStruct/Public/ProtobufToUEStructCommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/ProtobufToUEStruct/Public/ProtobufToUEStructCommands.h -------------------------------------------------------------------------------- /Source/ProtobufToUEStruct/Public/ProtobufToUEStructStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/ProtobufToUEStruct/Public/ProtobufToUEStructStyle.h -------------------------------------------------------------------------------- /Source/ProtobufToUEStruct/Public/Tools/JsonObjectConverterEX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/ProtobufToUEStruct/Public/Tools/JsonObjectConverterEX.cpp -------------------------------------------------------------------------------- /Source/ProtobufToUEStruct/Public/Tools/JsonObjectConverterEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/ProtobufToUEStruct/Public/Tools/JsonObjectConverterEx.h -------------------------------------------------------------------------------- /Source/libProtobuf/bin/Bulid_Battle.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/bin/Bulid_Battle.bat -------------------------------------------------------------------------------- /Source/libProtobuf/bin/Bulid_Editor.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/bin/Bulid_Editor.bat -------------------------------------------------------------------------------- /Source/libProtobuf/bin/protoc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/bin/protoc.exe -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/any.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/any.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/any.pb.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/any.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/any.proto -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/api.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/api.pb.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/api.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/api.proto -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/arena.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/arena_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/arena_impl.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/arenastring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/arenastring.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/compiler/code_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/compiler/code_generator.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/compiler/command_line_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/compiler/command_line_interface.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/compiler/cpp/cpp_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/compiler/cpp/cpp_generator.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/compiler/csharp/csharp_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/compiler/csharp/csharp_generator.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/compiler/csharp/csharp_names.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/compiler/csharp/csharp_names.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/compiler/importer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/compiler/importer.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/compiler/java/java_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/compiler/java/java_generator.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/compiler/java/java_names.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/compiler/java/java_names.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/compiler/js/js_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/compiler/js/js_generator.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/compiler/js/well_known_types_embed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/compiler/js/well_known_types_embed.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/compiler/objectivec/objectivec_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/compiler/objectivec/objectivec_generator.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/compiler/objectivec/objectivec_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/compiler/objectivec/objectivec_helpers.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/compiler/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/compiler/parser.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/compiler/php/php_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/compiler/php/php_generator.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/compiler/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/compiler/plugin.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/compiler/plugin.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/compiler/plugin.pb.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/compiler/plugin.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/compiler/plugin.proto -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/compiler/python/python_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/compiler/python/python_generator.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/compiler/ruby/ruby_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/compiler/ruby/ruby_generator.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/descriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/descriptor.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/descriptor.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/descriptor.pb.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/descriptor.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/descriptor.proto -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/descriptor_database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/descriptor_database.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/duration.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/duration.pb.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/duration.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/duration.proto -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/dynamic_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/dynamic_message.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/empty.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/empty.pb.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/empty.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/empty.proto -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/extension_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/extension_set.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/extension_set_inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/extension_set_inl.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/field_mask.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/field_mask.pb.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/field_mask.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/field_mask.proto -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/generated_enum_reflection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/generated_enum_reflection.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/generated_enum_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/generated_enum_util.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/generated_message_reflection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/generated_message_reflection.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/generated_message_table_driven.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/generated_message_table_driven.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/generated_message_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/generated_message_util.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/has_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/has_bits.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/implicit_weak_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/implicit_weak_message.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/io/coded_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/io/coded_stream.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/io/gzip_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/io/gzip_stream.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/io/io_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/io/io_win32.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/io/printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/io/printer.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/io/strtod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/io/strtod.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/io/tokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/io/tokenizer.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/io/zero_copy_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/io/zero_copy_stream.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/io/zero_copy_stream_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/io/zero_copy_stream_impl.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/io/zero_copy_stream_impl_lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/io/zero_copy_stream_impl_lite.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/map.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/map_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/map_entry.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/map_entry_lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/map_entry_lite.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/map_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/map_field.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/map_field_inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/map_field_inl.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/map_field_lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/map_field_lite.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/map_type_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/map_type_handler.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/message.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/message_lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/message_lite.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/metadata.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/metadata_lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/metadata_lite.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/parse_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/parse_context.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/port.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/port_def.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/port_def.inc -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/port_undef.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/port_undef.inc -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/reflection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/reflection.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/reflection_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/reflection_ops.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/repeated_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/repeated_field.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/service.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/source_context.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/source_context.pb.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/source_context.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/source_context.proto -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/struct.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/struct.pb.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/struct.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/struct.proto -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/stubs/bytestream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/stubs/bytestream.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/stubs/callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/stubs/callback.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/stubs/casts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/stubs/casts.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/stubs/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/stubs/common.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/stubs/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/stubs/hash.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/stubs/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/stubs/logging.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/stubs/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/stubs/macros.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/stubs/map_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/stubs/map_util.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/stubs/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/stubs/mutex.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/stubs/once.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/stubs/once.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/stubs/platform_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/stubs/platform_macros.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/stubs/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/stubs/port.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/stubs/status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/stubs/status.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/stubs/stl_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/stubs/stl_util.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/stubs/stringpiece.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/stubs/stringpiece.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/stubs/strutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/stubs/strutil.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/stubs/template_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/stubs/template_util.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/text_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/text_format.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/timestamp.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/timestamp.pb.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/timestamp.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/timestamp.proto -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/type.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/type.pb.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/type.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/type.proto -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/unknown_field_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/unknown_field_set.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/util/delimited_message_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/util/delimited_message_util.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/util/field_comparator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/util/field_comparator.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/util/field_mask_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/util/field_mask_util.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/util/json_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/util/json_util.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/util/message_differencer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/util/message_differencer.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/util/time_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/util/time_util.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/util/type_resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/util/type_resolver.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/util/type_resolver_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/util/type_resolver_util.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/wire_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/wire_format.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/wire_format_lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/wire_format_lite.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/wrappers.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/wrappers.pb.h -------------------------------------------------------------------------------- /Source/libProtobuf/include/google/protobuf/wrappers.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/include/google/protobuf/wrappers.proto -------------------------------------------------------------------------------- /Source/libProtobuf/lib/Windows/libprotobuf.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/lib/Windows/libprotobuf.lib -------------------------------------------------------------------------------- /Source/libProtobuf/lib/libprotobuf-lite.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/lib/libprotobuf-lite.lib -------------------------------------------------------------------------------- /Source/libProtobuf/lib/libprotoc.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/lib/libprotoc.lib -------------------------------------------------------------------------------- /Source/libProtobuf/lib/pkgconfig/protobuf-lite.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/lib/pkgconfig/protobuf-lite.pc -------------------------------------------------------------------------------- /Source/libProtobuf/lib/pkgconfig/protobuf.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/lib/pkgconfig/protobuf.pc -------------------------------------------------------------------------------- /Source/libProtobuf/libProtobuf.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QSWWLTN/ProtobufToUEStruct/HEAD/Source/libProtobuf/libProtobuf.Build.cs --------------------------------------------------------------------------------