├── .gitignore ├── Protobuf.uplugin ├── README.md ├── Resources ├── ButtonIcon_40x.png └── Icon128.png └── Source ├── Protobuf ├── Private │ └── Protobuf.cpp ├── Protobuf.Build.cs ├── Public │ └── Protobuf.h └── ThirdParty │ └── protobuf │ ├── bin │ └── protoc.exe │ ├── cmake │ ├── protobuf-config-version.cmake │ ├── protobuf-config.cmake │ ├── protobuf-module.cmake │ ├── protobuf-options.cmake │ ├── protobuf-targets-debug.cmake │ ├── protobuf-targets-release.cmake │ └── protobuf-targets.cmake │ └── include │ └── google │ └── protobuf │ ├── any.cc │ ├── any.h │ ├── any.pb.cc │ ├── any.pb.h │ ├── api.pb.cc │ ├── api.pb.h │ ├── arena.cc │ ├── arena.h │ ├── arena_impl.h │ ├── arenastring.cc │ ├── arenastring.h │ ├── compiler │ ├── importer.cc │ ├── importer.h │ ├── parser.cc │ └── parser.h │ ├── descriptor.cc │ ├── descriptor.h │ ├── descriptor.pb.cc │ ├── descriptor.pb.h │ ├── descriptor_database.cc │ ├── descriptor_database.h │ ├── duration.pb.cc │ ├── duration.pb.h │ ├── dynamic_message.cc │ ├── dynamic_message.h │ ├── empty.pb.cc │ ├── empty.pb.h │ ├── extension_set.cc │ ├── extension_set.h │ ├── extension_set_heavy.cc │ ├── field_mask.pb.cc │ ├── field_mask.pb.h │ ├── generated_enum_reflection.h │ ├── generated_enum_util.h │ ├── generated_message_reflection.cc │ ├── generated_message_reflection.h │ ├── 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 │ ├── gzip_stream.cc │ ├── gzip_stream.h │ ├── printer.cc │ ├── printer.h │ ├── strtod.cc │ ├── strtod.h │ ├── tokenizer.cc │ ├── tokenizer.h │ ├── 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 │ ├── map.h │ ├── map_entry.h │ ├── map_entry_lite.h │ ├── map_field.cc │ ├── map_field.h │ ├── map_field_inl.h │ ├── map_field_lite.h │ ├── map_type_handler.h │ ├── message.cc │ ├── message.h │ ├── message_lite.cc │ ├── message_lite.h │ ├── metadata.h │ ├── metadata_lite.h │ ├── reflection.h │ ├── reflection_internal.h │ ├── reflection_ops.cc │ ├── reflection_ops.h │ ├── repeated_field.cc │ ├── repeated_field.h │ ├── service.cc │ ├── service.h │ ├── source_context.pb.cc │ ├── source_context.pb.h │ ├── struct.pb.cc │ ├── struct.pb.h │ ├── stubs │ ├── atomic_sequence_num.h │ ├── 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 │ ├── bytestream.cc │ ├── bytestream.h │ ├── callback.h │ ├── casts.h │ ├── common.cc │ ├── common.h │ ├── fastmem.h │ ├── hash.h │ ├── int128.cc │ ├── int128.h │ ├── io_win32.cc │ ├── io_win32.h │ ├── logging.h │ ├── macros.h │ ├── map_util.h │ ├── mathlimits.cc │ ├── mathlimits.h │ ├── mathutil.h │ ├── mutex.h │ ├── once.cc │ ├── once.h │ ├── platform_macros.h │ ├── port.h │ ├── scoped_ptr.h │ ├── shared_ptr.h │ ├── singleton.h │ ├── status.cc │ ├── status.h │ ├── status_macros.h │ ├── statusor.cc │ ├── statusor.h │ ├── stl_util.h │ ├── stringpiece.cc │ ├── stringpiece.h │ ├── stringprintf.cc │ ├── stringprintf.h │ ├── structurally_valid.cc │ ├── strutil.cc │ ├── strutil.h │ ├── substitute.cc │ ├── substitute.h │ ├── template_util.h │ ├── time.cc │ ├── time.h │ └── type_traits.h │ ├── text_format.cc │ ├── text_format.h │ ├── timestamp.pb.cc │ ├── timestamp.pb.h │ ├── type.pb.cc │ ├── type.pb.h │ ├── unknown_field_set.cc │ ├── unknown_field_set.h │ ├── util │ ├── delimited_message_util.cc │ ├── delimited_message_util.h │ ├── field_comparator.cc │ ├── field_comparator.h │ ├── field_mask_util.cc │ ├── field_mask_util.h │ ├── internal │ │ ├── constants.h │ │ ├── datapiece.cc │ │ ├── datapiece.h │ │ ├── default_value_objectwriter.cc │ │ ├── default_value_objectwriter.h │ │ ├── error_listener.cc │ │ ├── error_listener.h │ │ ├── field_mask_utility.cc │ │ ├── field_mask_utility.h │ │ ├── json_escaping.cc │ │ ├── json_escaping.h │ │ ├── json_objectwriter.cc │ │ ├── json_objectwriter.h │ │ ├── json_stream_parser.cc │ │ ├── json_stream_parser.h │ │ ├── location_tracker.h │ │ ├── object_location_tracker.h │ │ ├── object_source.h │ │ ├── object_writer.cc │ │ ├── object_writer.h │ │ ├── proto_writer.cc │ │ ├── proto_writer.h │ │ ├── protostream_objectsource.cc │ │ ├── protostream_objectsource.h │ │ ├── protostream_objectwriter.cc │ │ ├── protostream_objectwriter.h │ │ ├── structured_objectwriter.h │ │ ├── type_info.cc │ │ ├── type_info.h │ │ ├── type_info_test_helper.cc │ │ ├── type_info_test_helper.h │ │ ├── utility.cc │ │ └── utility.h │ ├── json_util.cc │ ├── json_util.h │ ├── message_differencer.cc │ ├── message_differencer.h │ ├── time_util.cc │ ├── time_util.h │ ├── type_resolver.h │ ├── type_resolver_util.cc │ └── type_resolver_util.h │ ├── wire_format.cc │ ├── wire_format.h │ ├── wire_format_lite.cc │ ├── wire_format_lite.h │ ├── wire_format_lite_inl.h │ ├── wrappers.pb.cc │ └── wrappers.pb.h └── ProtobufEditor ├── Private ├── ProtobufEditor.cpp ├── ProtobufEditorCommands.cpp ├── ProtobufEditorStyle.cpp └── ThreadUtils │ ├── FProcWorkerThread.hpp │ └── FThreadUtils.hpp ├── ProtobufEditor.Build.cs └── Public ├── ProtobufEditor.h ├── ProtobufEditorCommands.h └── ProtobufEditorStyle.h /.gitignore: -------------------------------------------------------------------------------- 1 | Binaries/ 2 | Intermediate/ 3 | -------------------------------------------------------------------------------- /Protobuf.uplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Protobuf.uplugin -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/README.md -------------------------------------------------------------------------------- /Resources/ButtonIcon_40x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Resources/ButtonIcon_40x.png -------------------------------------------------------------------------------- /Resources/Icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Resources/Icon128.png -------------------------------------------------------------------------------- /Source/Protobuf/Private/Protobuf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/Private/Protobuf.cpp -------------------------------------------------------------------------------- /Source/Protobuf/Protobuf.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/Protobuf.Build.cs -------------------------------------------------------------------------------- /Source/Protobuf/Public/Protobuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/Public/Protobuf.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/bin/protoc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/bin/protoc.exe -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/cmake/protobuf-config-version.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/cmake/protobuf-config-version.cmake -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/cmake/protobuf-config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/cmake/protobuf-config.cmake -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/cmake/protobuf-module.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/cmake/protobuf-module.cmake -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/cmake/protobuf-options.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/cmake/protobuf-options.cmake -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/cmake/protobuf-targets-debug.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/cmake/protobuf-targets-debug.cmake -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/cmake/protobuf-targets-release.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/cmake/protobuf-targets-release.cmake -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/cmake/protobuf-targets.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/cmake/protobuf-targets.cmake -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/any.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/any.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/any.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/any.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/any.pb.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/any.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/any.pb.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/api.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/api.pb.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/api.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/api.pb.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/arena.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/arena.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/arena.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/arena_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/arena_impl.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/arenastring.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/arenastring.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/arenastring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/arenastring.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/compiler/importer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/compiler/importer.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/compiler/importer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/compiler/importer.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/compiler/parser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/compiler/parser.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/compiler/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/compiler/parser.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/descriptor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/descriptor.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/descriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/descriptor.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/descriptor.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/descriptor.pb.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/descriptor.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/descriptor.pb.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/descriptor_database.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/descriptor_database.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/descriptor_database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/descriptor_database.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/duration.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/duration.pb.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/duration.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/duration.pb.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/dynamic_message.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/dynamic_message.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/dynamic_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/dynamic_message.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/empty.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/empty.pb.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/empty.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/empty.pb.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/extension_set.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/extension_set.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/extension_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/extension_set.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/extension_set_heavy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/extension_set_heavy.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/field_mask.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/field_mask.pb.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/field_mask.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/field_mask.pb.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/generated_enum_reflection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/generated_enum_reflection.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/generated_enum_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/generated_enum_util.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/generated_message_reflection.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/generated_message_reflection.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/generated_message_reflection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/generated_message_reflection.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/generated_message_table_driven.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/generated_message_table_driven.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/generated_message_table_driven.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/generated_message_table_driven.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/generated_message_table_driven_lite.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/generated_message_table_driven_lite.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/generated_message_table_driven_lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/generated_message_table_driven_lite.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/generated_message_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/generated_message_util.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/generated_message_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/generated_message_util.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/has_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/has_bits.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/io/coded_stream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/io/coded_stream.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/io/coded_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/io/coded_stream.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/io/coded_stream_inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/io/coded_stream_inl.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/io/gzip_stream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/io/gzip_stream.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/io/gzip_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/io/gzip_stream.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/io/printer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/io/printer.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/io/printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/io/printer.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/io/strtod.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/io/strtod.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/io/strtod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/io/strtod.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/io/tokenizer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/io/tokenizer.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/io/tokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/io/tokenizer.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/io/zero_copy_stream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/io/zero_copy_stream.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/io/zero_copy_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/io/zero_copy_stream.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/io/zero_copy_stream_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/io/zero_copy_stream_impl.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/io/zero_copy_stream_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/io/zero_copy_stream_impl.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/io/zero_copy_stream_impl_lite.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/io/zero_copy_stream_impl_lite.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/io/zero_copy_stream_impl_lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/io/zero_copy_stream_impl_lite.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/map.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/map_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/map_entry.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/map_entry_lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/map_entry_lite.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/map_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/map_field.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/map_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/map_field.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/map_field_inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/map_field_inl.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/map_field_lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/map_field_lite.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/map_type_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/map_type_handler.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/message.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/message.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/message.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/message_lite.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/message_lite.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/message_lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/message_lite.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/metadata.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/metadata_lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/metadata_lite.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/reflection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/reflection.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/reflection_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/reflection_internal.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/reflection_ops.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/reflection_ops.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/reflection_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/reflection_ops.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/repeated_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/repeated_field.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/repeated_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/repeated_field.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/service.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/service.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/service.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/source_context.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/source_context.pb.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/source_context.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/source_context.pb.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/struct.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/struct.pb.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/struct.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/struct.pb.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/atomic_sequence_num.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/atomic_sequence_num.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/atomicops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/atomicops.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/atomicops_internals_arm64_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/atomicops_internals_arm64_gcc.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/atomicops_internals_arm_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/atomicops_internals_arm_gcc.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/atomicops_internals_arm_qnx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/atomicops_internals_arm_qnx.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/atomicops_internals_generic_c11_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/atomicops_internals_generic_c11_atomic.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/atomicops_internals_generic_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/atomicops_internals_generic_gcc.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/atomicops_internals_mips_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/atomicops_internals_mips_gcc.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/atomicops_internals_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/atomicops_internals_power.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/atomicops_internals_ppc_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/atomicops_internals_ppc_gcc.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/atomicops_internals_solaris.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/atomicops_internals_solaris.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/atomicops_internals_tsan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/atomicops_internals_tsan.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/atomicops_internals_x86_gcc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/atomicops_internals_x86_gcc.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/atomicops_internals_x86_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/atomicops_internals_x86_gcc.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/atomicops_internals_x86_msvc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/atomicops_internals_x86_msvc.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/atomicops_internals_x86_msvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/atomicops_internals_x86_msvc.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/bytestream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/bytestream.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/bytestream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/bytestream.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/callback.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/casts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/casts.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/common.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/common.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/fastmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/fastmem.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/hash.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/int128.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/int128.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/int128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/int128.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/io_win32.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/io_win32.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/io_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/io_win32.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/logging.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/macros.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/map_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/map_util.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/mathlimits.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/mathlimits.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/mathlimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/mathlimits.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/mathutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/mathutil.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/mutex.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/once.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/once.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/once.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/once.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/platform_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/platform_macros.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/port.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/scoped_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/scoped_ptr.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/shared_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/shared_ptr.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/singleton.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/status.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/status.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/status.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/status_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/status_macros.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/statusor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/statusor.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/statusor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/statusor.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/stl_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/stl_util.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/stringpiece.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/stringpiece.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/stringpiece.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/stringpiece.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/stringprintf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/stringprintf.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/stringprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/stringprintf.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/structurally_valid.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/structurally_valid.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/strutil.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/strutil.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/strutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/strutil.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/substitute.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/substitute.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/substitute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/substitute.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/template_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/template_util.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/time.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/time.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/time.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/type_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/stubs/type_traits.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/text_format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/text_format.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/text_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/text_format.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/timestamp.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/timestamp.pb.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/timestamp.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/timestamp.pb.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/type.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/type.pb.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/type.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/type.pb.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/unknown_field_set.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/unknown_field_set.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/unknown_field_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/unknown_field_set.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/delimited_message_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/delimited_message_util.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/delimited_message_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/delimited_message_util.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/field_comparator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/field_comparator.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/field_comparator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/field_comparator.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/field_mask_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/field_mask_util.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/field_mask_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/field_mask_util.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/internal/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/internal/constants.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/internal/datapiece.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/internal/datapiece.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/internal/datapiece.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/internal/datapiece.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/internal/default_value_objectwriter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/internal/default_value_objectwriter.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/internal/default_value_objectwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/internal/default_value_objectwriter.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/internal/error_listener.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/internal/error_listener.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/internal/error_listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/internal/error_listener.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/internal/field_mask_utility.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/internal/field_mask_utility.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/internal/field_mask_utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/internal/field_mask_utility.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/internal/json_escaping.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/internal/json_escaping.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/internal/json_escaping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/internal/json_escaping.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/internal/json_objectwriter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/internal/json_objectwriter.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/internal/json_objectwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/internal/json_objectwriter.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/internal/json_stream_parser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/internal/json_stream_parser.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/internal/json_stream_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/internal/json_stream_parser.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/internal/location_tracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/internal/location_tracker.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/internal/object_location_tracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/internal/object_location_tracker.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/internal/object_source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/internal/object_source.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/internal/object_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/internal/object_writer.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/internal/object_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/internal/object_writer.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/internal/proto_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/internal/proto_writer.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/internal/proto_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/internal/proto_writer.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/internal/protostream_objectsource.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/internal/protostream_objectsource.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/internal/protostream_objectsource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/internal/protostream_objectsource.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/internal/protostream_objectwriter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/internal/protostream_objectwriter.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/internal/protostream_objectwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/internal/protostream_objectwriter.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/internal/structured_objectwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/internal/structured_objectwriter.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/internal/type_info.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/internal/type_info.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/internal/type_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/internal/type_info.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/internal/type_info_test_helper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/internal/type_info_test_helper.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/internal/type_info_test_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/internal/type_info_test_helper.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/internal/utility.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/internal/utility.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/internal/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/internal/utility.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/json_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/json_util.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/json_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/json_util.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/message_differencer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/message_differencer.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/message_differencer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/message_differencer.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/time_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/time_util.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/time_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/time_util.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/type_resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/type_resolver.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/type_resolver_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/type_resolver_util.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/type_resolver_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/util/type_resolver_util.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/wire_format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/wire_format.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/wire_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/wire_format.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/wire_format_lite.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/wire_format_lite.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/wire_format_lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/wire_format_lite.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/wire_format_lite_inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/wire_format_lite_inl.h -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/wrappers.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/wrappers.pb.cc -------------------------------------------------------------------------------- /Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/wrappers.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/Protobuf/ThirdParty/protobuf/include/google/protobuf/wrappers.pb.h -------------------------------------------------------------------------------- /Source/ProtobufEditor/Private/ProtobufEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/ProtobufEditor/Private/ProtobufEditor.cpp -------------------------------------------------------------------------------- /Source/ProtobufEditor/Private/ProtobufEditorCommands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/ProtobufEditor/Private/ProtobufEditorCommands.cpp -------------------------------------------------------------------------------- /Source/ProtobufEditor/Private/ProtobufEditorStyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/ProtobufEditor/Private/ProtobufEditorStyle.cpp -------------------------------------------------------------------------------- /Source/ProtobufEditor/Private/ThreadUtils/FProcWorkerThread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/ProtobufEditor/Private/ThreadUtils/FProcWorkerThread.hpp -------------------------------------------------------------------------------- /Source/ProtobufEditor/Private/ThreadUtils/FThreadUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/ProtobufEditor/Private/ThreadUtils/FThreadUtils.hpp -------------------------------------------------------------------------------- /Source/ProtobufEditor/ProtobufEditor.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/ProtobufEditor/ProtobufEditor.Build.cs -------------------------------------------------------------------------------- /Source/ProtobufEditor/Public/ProtobufEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/ProtobufEditor/Public/ProtobufEditor.h -------------------------------------------------------------------------------- /Source/ProtobufEditor/Public/ProtobufEditorCommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/ProtobufEditor/Public/ProtobufEditorCommands.h -------------------------------------------------------------------------------- /Source/ProtobufEditor/Public/ProtobufEditorStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ue4-protobuf/HEAD/Source/ProtobufEditor/Public/ProtobufEditorStyle.h --------------------------------------------------------------------------------