├── .clang-format ├── .gitattributes ├── .github └── workflows │ ├── build.yml │ ├── nodejs_native_build.yml │ ├── nodejs_npm_build.yml │ ├── test.yml │ └── test_build_commit.yml ├── .gitignore ├── CHANGELOG.md ├── CMake_utils.txt ├── LICENSE.txt ├── README.md ├── README_CHS.md ├── benchmark ├── cpp │ ├── CMakeLists.txt │ └── main.cpp └── java │ └── src │ └── benchmark_main.java ├── bin └── tools │ ├── linux32 │ ├── BqLog_CategoryLogGenerator │ └── BqLog_LogDecoder │ ├── linux64 │ ├── BqLog_CategoryLogGenerator │ └── BqLog_LogDecoder │ ├── mac │ ├── Debug │ │ └── BqLog_CategoryLogGenerator │ ├── MinSizeRel │ │ ├── BqLog_CategoryLogGenerator │ │ └── BqLog_LogDecoder │ ├── RelWithDebInfo │ │ ├── BqLog_CategoryLogGenerator │ │ └── BqLog_LogDecoder │ └── Release │ │ └── BqLog_CategoryLogGenerator │ ├── unix32 │ └── README.MD │ ├── unix64 │ └── README.MD │ └── win64 │ ├── Debug │ ├── BqLog_CategoryLogGenerator.exe │ ├── BqLog_CategoryLogGenerator.pdb │ ├── BqLog_LogDecoder.exe │ └── BqLog_LogDecoder.pdb │ ├── MinSizeRel │ ├── BqLog_CategoryLogGenerator.exe │ └── BqLog_LogDecoder.exe │ ├── RelWithDebInfo │ ├── BqLog_CategoryLogGenerator.exe │ ├── BqLog_CategoryLogGenerator.pdb │ ├── BqLog_LogDecoder.exe │ └── BqLog_LogDecoder.pdb │ └── Release │ ├── BqLog_CategoryLogGenerator.exe │ └── BqLog_LogDecoder.exe ├── demo ├── cpp │ ├── CMakeLists.txt │ ├── demo_category_log.h │ └── main.cpp ├── csharp │ └── src │ │ ├── CMakeLists.txt │ │ ├── bq │ │ └── demo_category_log.cs │ │ └── demo_main.cs ├── demo_category_log.txt └── java │ └── src │ ├── bq │ └── demo_category_log.java │ └── demo_main.java ├── dist ├── dynamic_lib │ ├── android │ │ ├── arm64-v8a │ │ │ ├── Debug │ │ │ │ ├── libBqLog.so │ │ │ │ └── libBqLog_Symbol.so │ │ │ └── MinSizeRel │ │ │ │ ├── libBqLog.so │ │ │ │ └── libBqLog_Symbol.so │ │ ├── armeabi-v7a │ │ │ ├── Debug │ │ │ │ ├── libBqLog.so │ │ │ │ └── libBqLog_Symbol.so │ │ │ └── MinSizeRel │ │ │ │ ├── libBqLog.so │ │ │ │ └── libBqLog_Symbol.so │ │ └── x86_64 │ │ │ ├── Debug │ │ │ ├── libBqLog.so │ │ │ └── libBqLog_Symbol.so │ │ │ └── MinSizeRel │ │ │ ├── libBqLog.so │ │ │ └── libBqLog_Symbol.so │ ├── include │ │ ├── bq_common │ │ │ ├── bq_common_public_include.h │ │ │ ├── misc │ │ │ │ └── assert.h │ │ │ ├── platform │ │ │ │ ├── build_type.h │ │ │ │ ├── build_type_dynamic_lib_import.h │ │ │ │ └── macros.h │ │ │ └── types │ │ │ │ ├── array.h │ │ │ │ ├── array_def.h │ │ │ │ ├── array_impl.h │ │ │ │ ├── basic_types.h │ │ │ │ ├── hash_map.h │ │ │ │ ├── hash_map_def.h │ │ │ │ ├── hash_map_impl.h │ │ │ │ ├── string.h │ │ │ │ ├── string_impl.h │ │ │ │ ├── type_tools.h │ │ │ │ └── type_traits.h │ │ └── bq_log │ │ │ ├── adapters │ │ │ ├── adapter_unreal.h │ │ │ └── adapters.h │ │ │ ├── bq_log.h │ │ │ └── misc │ │ │ ├── bq_log_api.h │ │ │ ├── bq_log_def.h │ │ │ ├── bq_log_impl.h │ │ │ └── bq_log_wrapper_tools.h │ ├── ios │ │ ├── Debug │ │ │ ├── BqLog.framework.dSYM │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Resources │ │ │ │ │ ├── DWARF │ │ │ │ │ └── BqLog │ │ │ │ │ └── Relocations │ │ │ │ │ └── aarch64 │ │ │ │ │ └── BqLog.yml │ │ │ └── BqLog.framework │ │ │ │ ├── BqLog │ │ │ │ ├── Headers │ │ │ │ ├── bq_common │ │ │ │ │ ├── bq_common_public_include.h │ │ │ │ │ ├── misc │ │ │ │ │ │ └── assert.h │ │ │ │ │ ├── platform │ │ │ │ │ │ ├── build_type.h │ │ │ │ │ │ ├── build_type_dynamic_lib_import.h │ │ │ │ │ │ └── macros.h │ │ │ │ │ └── types │ │ │ │ │ │ ├── array.h │ │ │ │ │ │ ├── array_def.h │ │ │ │ │ │ ├── array_impl.h │ │ │ │ │ │ ├── basic_types.h │ │ │ │ │ │ ├── hash_map.h │ │ │ │ │ │ ├── hash_map_def.h │ │ │ │ │ │ ├── hash_map_impl.h │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ ├── string_impl.h │ │ │ │ │ │ ├── type_tools.h │ │ │ │ │ │ └── type_traits.h │ │ │ │ └── bq_log │ │ │ │ │ ├── adapters │ │ │ │ │ ├── adapter_unreal.h │ │ │ │ │ └── adapters.h │ │ │ │ │ ├── bq_log.h │ │ │ │ │ └── misc │ │ │ │ │ ├── bq_log_api.h │ │ │ │ │ ├── bq_log_def.h │ │ │ │ │ ├── bq_log_impl.h │ │ │ │ │ └── bq_log_wrapper_tools.h │ │ │ │ └── Info.plist │ │ ├── MinSizeRel │ │ │ └── BqLog.framework │ │ │ │ ├── BqLog │ │ │ │ ├── Headers │ │ │ │ ├── bq_common │ │ │ │ │ ├── bq_common_public_include.h │ │ │ │ │ ├── misc │ │ │ │ │ │ └── assert.h │ │ │ │ │ ├── platform │ │ │ │ │ │ ├── build_type.h │ │ │ │ │ │ ├── build_type_dynamic_lib_import.h │ │ │ │ │ │ └── macros.h │ │ │ │ │ └── types │ │ │ │ │ │ ├── array.h │ │ │ │ │ │ ├── array_def.h │ │ │ │ │ │ ├── array_impl.h │ │ │ │ │ │ ├── basic_types.h │ │ │ │ │ │ ├── hash_map.h │ │ │ │ │ │ ├── hash_map_def.h │ │ │ │ │ │ ├── hash_map_impl.h │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ ├── string_impl.h │ │ │ │ │ │ ├── type_tools.h │ │ │ │ │ │ └── type_traits.h │ │ │ │ └── bq_log │ │ │ │ │ ├── adapters │ │ │ │ │ ├── adapter_unreal.h │ │ │ │ │ └── adapters.h │ │ │ │ │ ├── bq_log.h │ │ │ │ │ └── misc │ │ │ │ │ ├── bq_log_api.h │ │ │ │ │ ├── bq_log_def.h │ │ │ │ │ ├── bq_log_impl.h │ │ │ │ │ └── bq_log_wrapper_tools.h │ │ │ │ └── Info.plist │ │ ├── RelWithDebInfo │ │ │ ├── BqLog.framework.dSYM │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Resources │ │ │ │ │ ├── DWARF │ │ │ │ │ └── BqLog │ │ │ │ │ └── Relocations │ │ │ │ │ └── aarch64 │ │ │ │ │ └── BqLog.yml │ │ │ └── BqLog.framework │ │ │ │ ├── BqLog │ │ │ │ ├── Headers │ │ │ │ ├── bq_common │ │ │ │ │ ├── bq_common_public_include.h │ │ │ │ │ ├── misc │ │ │ │ │ │ └── assert.h │ │ │ │ │ ├── platform │ │ │ │ │ │ ├── build_type.h │ │ │ │ │ │ ├── build_type_dynamic_lib_import.h │ │ │ │ │ │ └── macros.h │ │ │ │ │ └── types │ │ │ │ │ │ ├── array.h │ │ │ │ │ │ ├── array_def.h │ │ │ │ │ │ ├── array_impl.h │ │ │ │ │ │ ├── basic_types.h │ │ │ │ │ │ ├── hash_map.h │ │ │ │ │ │ ├── hash_map_def.h │ │ │ │ │ │ ├── hash_map_impl.h │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ ├── string_impl.h │ │ │ │ │ │ ├── type_tools.h │ │ │ │ │ │ └── type_traits.h │ │ │ │ └── bq_log │ │ │ │ │ ├── adapters │ │ │ │ │ ├── adapter_unreal.h │ │ │ │ │ └── adapters.h │ │ │ │ │ ├── bq_log.h │ │ │ │ │ └── misc │ │ │ │ │ ├── bq_log_api.h │ │ │ │ │ ├── bq_log_def.h │ │ │ │ │ ├── bq_log_impl.h │ │ │ │ │ └── bq_log_wrapper_tools.h │ │ │ │ └── Info.plist │ │ └── Release │ │ │ └── BqLog.framework │ │ │ ├── BqLog │ │ │ ├── Headers │ │ │ ├── bq_common │ │ │ │ ├── bq_common_public_include.h │ │ │ │ ├── misc │ │ │ │ │ └── assert.h │ │ │ │ ├── platform │ │ │ │ │ ├── build_type.h │ │ │ │ │ ├── build_type_dynamic_lib_import.h │ │ │ │ │ └── macros.h │ │ │ │ └── types │ │ │ │ │ ├── array.h │ │ │ │ │ ├── array_def.h │ │ │ │ │ ├── array_impl.h │ │ │ │ │ ├── basic_types.h │ │ │ │ │ ├── hash_map.h │ │ │ │ │ ├── hash_map_def.h │ │ │ │ │ ├── hash_map_impl.h │ │ │ │ │ ├── string.h │ │ │ │ │ ├── string_impl.h │ │ │ │ │ ├── type_tools.h │ │ │ │ │ └── type_traits.h │ │ │ └── bq_log │ │ │ │ ├── adapters │ │ │ │ ├── adapter_unreal.h │ │ │ │ └── adapters.h │ │ │ │ ├── bq_log.h │ │ │ │ └── misc │ │ │ │ ├── bq_log_api.h │ │ │ │ ├── bq_log_def.h │ │ │ │ ├── bq_log_impl.h │ │ │ │ └── bq_log_wrapper_tools.h │ │ │ └── Info.plist │ ├── linux32 │ │ ├── Debug │ │ │ ├── libBqLog.a │ │ │ └── libBqLog.so │ │ ├── MinSizeRel │ │ │ ├── libBqLog.a │ │ │ └── libBqLog.so │ │ ├── RelWithDebInfo │ │ │ ├── libBqLog.a │ │ │ └── libBqLog.so │ │ └── Release │ │ │ ├── libBqLog.a │ │ │ └── libBqLog.so │ ├── linux64 │ │ ├── Debug │ │ │ └── libBqLog.so │ │ ├── MinSizeRel │ │ │ └── libBqLog.so │ │ ├── RelWithDebInfo │ │ │ └── libBqLog.so │ │ └── Release │ │ │ └── libBqLog.so │ ├── mac │ │ ├── Debug │ │ │ ├── BqLog.framework │ │ │ │ ├── BqLog │ │ │ │ ├── Headers │ │ │ │ │ ├── bq_common │ │ │ │ │ │ ├── bq_common_public_include.h │ │ │ │ │ │ ├── misc │ │ │ │ │ │ │ └── assert.h │ │ │ │ │ │ ├── platform │ │ │ │ │ │ │ ├── build_type.h │ │ │ │ │ │ │ ├── build_type_dynamic_lib_import.h │ │ │ │ │ │ │ └── macros.h │ │ │ │ │ │ └── types │ │ │ │ │ │ │ ├── array.h │ │ │ │ │ │ │ ├── array_def.h │ │ │ │ │ │ │ ├── array_impl.h │ │ │ │ │ │ │ ├── basic_types.h │ │ │ │ │ │ │ ├── hash_map.h │ │ │ │ │ │ │ ├── hash_map_def.h │ │ │ │ │ │ │ ├── hash_map_impl.h │ │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ │ ├── string_impl.h │ │ │ │ │ │ │ ├── type_tools.h │ │ │ │ │ │ │ └── type_traits.h │ │ │ │ │ └── bq_log │ │ │ │ │ │ ├── adapters │ │ │ │ │ │ ├── adapter_unreal.h │ │ │ │ │ │ └── adapters.h │ │ │ │ │ │ ├── bq_log.h │ │ │ │ │ │ └── misc │ │ │ │ │ │ ├── bq_log_api.h │ │ │ │ │ │ ├── bq_log_def.h │ │ │ │ │ │ ├── bq_log_impl.h │ │ │ │ │ │ └── bq_log_wrapper_tools.h │ │ │ │ ├── Resources │ │ │ │ │ └── Info.plist │ │ │ │ └── Versions │ │ │ │ │ ├── 1.0.0 │ │ │ │ │ ├── BqLog │ │ │ │ │ ├── Headers │ │ │ │ │ │ ├── bq_common │ │ │ │ │ │ │ ├── bq_common_public_include.h │ │ │ │ │ │ │ ├── misc │ │ │ │ │ │ │ │ └── assert.h │ │ │ │ │ │ │ ├── platform │ │ │ │ │ │ │ │ ├── build_type.h │ │ │ │ │ │ │ │ ├── build_type_dynamic_lib_import.h │ │ │ │ │ │ │ │ └── macros.h │ │ │ │ │ │ │ └── types │ │ │ │ │ │ │ │ ├── array.h │ │ │ │ │ │ │ │ ├── array_def.h │ │ │ │ │ │ │ │ ├── array_impl.h │ │ │ │ │ │ │ │ ├── basic_types.h │ │ │ │ │ │ │ │ ├── hash_map.h │ │ │ │ │ │ │ │ ├── hash_map_def.h │ │ │ │ │ │ │ │ ├── hash_map_impl.h │ │ │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ │ │ ├── string_impl.h │ │ │ │ │ │ │ │ ├── type_tools.h │ │ │ │ │ │ │ │ └── type_traits.h │ │ │ │ │ │ └── bq_log │ │ │ │ │ │ │ ├── adapters │ │ │ │ │ │ │ ├── adapter_unreal.h │ │ │ │ │ │ │ └── adapters.h │ │ │ │ │ │ │ ├── bq_log.h │ │ │ │ │ │ │ └── misc │ │ │ │ │ │ │ ├── bq_log_api.h │ │ │ │ │ │ │ ├── bq_log_def.h │ │ │ │ │ │ │ ├── bq_log_impl.h │ │ │ │ │ │ │ └── bq_log_wrapper_tools.h │ │ │ │ │ ├── Resources │ │ │ │ │ │ └── Info.plist │ │ │ │ │ └── _CodeSignature │ │ │ │ │ │ └── CodeResources │ │ │ │ │ └── Current │ │ │ │ │ ├── BqLog │ │ │ │ │ ├── Headers │ │ │ │ │ ├── bq_common │ │ │ │ │ │ ├── bq_common_public_include.h │ │ │ │ │ │ ├── misc │ │ │ │ │ │ │ └── assert.h │ │ │ │ │ │ ├── platform │ │ │ │ │ │ │ ├── build_type.h │ │ │ │ │ │ │ ├── build_type_dynamic_lib_import.h │ │ │ │ │ │ │ └── macros.h │ │ │ │ │ │ └── types │ │ │ │ │ │ │ ├── array.h │ │ │ │ │ │ │ ├── array_def.h │ │ │ │ │ │ │ ├── array_impl.h │ │ │ │ │ │ │ ├── basic_types.h │ │ │ │ │ │ │ ├── hash_map.h │ │ │ │ │ │ │ ├── hash_map_def.h │ │ │ │ │ │ │ ├── hash_map_impl.h │ │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ │ ├── string_impl.h │ │ │ │ │ │ │ ├── type_tools.h │ │ │ │ │ │ │ └── type_traits.h │ │ │ │ │ └── bq_log │ │ │ │ │ │ ├── adapters │ │ │ │ │ │ ├── adapter_unreal.h │ │ │ │ │ │ └── adapters.h │ │ │ │ │ │ ├── bq_log.h │ │ │ │ │ │ └── misc │ │ │ │ │ │ ├── bq_log_api.h │ │ │ │ │ │ ├── bq_log_def.h │ │ │ │ │ │ ├── bq_log_impl.h │ │ │ │ │ │ └── bq_log_wrapper_tools.h │ │ │ │ │ ├── Resources │ │ │ │ │ └── Info.plist │ │ │ │ │ └── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ └── libBqLog.dylib │ │ ├── MinSizeRel │ │ │ ├── BqLog.framework │ │ │ │ ├── BqLog │ │ │ │ ├── Headers │ │ │ │ │ ├── bq_common │ │ │ │ │ │ ├── bq_common_public_include.h │ │ │ │ │ │ ├── misc │ │ │ │ │ │ │ └── assert.h │ │ │ │ │ │ ├── platform │ │ │ │ │ │ │ ├── build_type.h │ │ │ │ │ │ │ ├── build_type_dynamic_lib_import.h │ │ │ │ │ │ │ └── macros.h │ │ │ │ │ │ └── types │ │ │ │ │ │ │ ├── array.h │ │ │ │ │ │ │ ├── array_def.h │ │ │ │ │ │ │ ├── array_impl.h │ │ │ │ │ │ │ ├── basic_types.h │ │ │ │ │ │ │ ├── hash_map.h │ │ │ │ │ │ │ ├── hash_map_def.h │ │ │ │ │ │ │ ├── hash_map_impl.h │ │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ │ ├── string_impl.h │ │ │ │ │ │ │ ├── type_tools.h │ │ │ │ │ │ │ └── type_traits.h │ │ │ │ │ └── bq_log │ │ │ │ │ │ ├── adapters │ │ │ │ │ │ ├── adapter_unreal.h │ │ │ │ │ │ └── adapters.h │ │ │ │ │ │ ├── bq_log.h │ │ │ │ │ │ └── misc │ │ │ │ │ │ ├── bq_log_api.h │ │ │ │ │ │ ├── bq_log_def.h │ │ │ │ │ │ ├── bq_log_impl.h │ │ │ │ │ │ └── bq_log_wrapper_tools.h │ │ │ │ ├── Resources │ │ │ │ │ └── Info.plist │ │ │ │ └── Versions │ │ │ │ │ ├── 1.0.0 │ │ │ │ │ ├── BqLog │ │ │ │ │ ├── Headers │ │ │ │ │ │ ├── bq_common │ │ │ │ │ │ │ ├── bq_common_public_include.h │ │ │ │ │ │ │ ├── misc │ │ │ │ │ │ │ │ └── assert.h │ │ │ │ │ │ │ ├── platform │ │ │ │ │ │ │ │ ├── build_type.h │ │ │ │ │ │ │ │ ├── build_type_dynamic_lib_import.h │ │ │ │ │ │ │ │ └── macros.h │ │ │ │ │ │ │ └── types │ │ │ │ │ │ │ │ ├── array.h │ │ │ │ │ │ │ │ ├── array_def.h │ │ │ │ │ │ │ │ ├── array_impl.h │ │ │ │ │ │ │ │ ├── basic_types.h │ │ │ │ │ │ │ │ ├── hash_map.h │ │ │ │ │ │ │ │ ├── hash_map_def.h │ │ │ │ │ │ │ │ ├── hash_map_impl.h │ │ │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ │ │ ├── string_impl.h │ │ │ │ │ │ │ │ ├── type_tools.h │ │ │ │ │ │ │ │ └── type_traits.h │ │ │ │ │ │ └── bq_log │ │ │ │ │ │ │ ├── adapters │ │ │ │ │ │ │ ├── adapter_unreal.h │ │ │ │ │ │ │ └── adapters.h │ │ │ │ │ │ │ ├── bq_log.h │ │ │ │ │ │ │ └── misc │ │ │ │ │ │ │ ├── bq_log_api.h │ │ │ │ │ │ │ ├── bq_log_def.h │ │ │ │ │ │ │ ├── bq_log_impl.h │ │ │ │ │ │ │ └── bq_log_wrapper_tools.h │ │ │ │ │ ├── Resources │ │ │ │ │ │ └── Info.plist │ │ │ │ │ └── _CodeSignature │ │ │ │ │ │ └── CodeResources │ │ │ │ │ └── Current │ │ │ │ │ ├── BqLog │ │ │ │ │ ├── Headers │ │ │ │ │ ├── bq_common │ │ │ │ │ │ ├── bq_common_public_include.h │ │ │ │ │ │ ├── misc │ │ │ │ │ │ │ └── assert.h │ │ │ │ │ │ ├── platform │ │ │ │ │ │ │ ├── build_type.h │ │ │ │ │ │ │ ├── build_type_dynamic_lib_import.h │ │ │ │ │ │ │ └── macros.h │ │ │ │ │ │ └── types │ │ │ │ │ │ │ ├── array.h │ │ │ │ │ │ │ ├── array_def.h │ │ │ │ │ │ │ ├── array_impl.h │ │ │ │ │ │ │ ├── basic_types.h │ │ │ │ │ │ │ ├── hash_map.h │ │ │ │ │ │ │ ├── hash_map_def.h │ │ │ │ │ │ │ ├── hash_map_impl.h │ │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ │ ├── string_impl.h │ │ │ │ │ │ │ ├── type_tools.h │ │ │ │ │ │ │ └── type_traits.h │ │ │ │ │ └── bq_log │ │ │ │ │ │ ├── adapters │ │ │ │ │ │ ├── adapter_unreal.h │ │ │ │ │ │ └── adapters.h │ │ │ │ │ │ ├── bq_log.h │ │ │ │ │ │ └── misc │ │ │ │ │ │ ├── bq_log_api.h │ │ │ │ │ │ ├── bq_log_def.h │ │ │ │ │ │ ├── bq_log_impl.h │ │ │ │ │ │ └── bq_log_wrapper_tools.h │ │ │ │ │ ├── Resources │ │ │ │ │ └── Info.plist │ │ │ │ │ └── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ └── libBqLog.dylib │ │ ├── RelWithDebInfo │ │ │ ├── BqLog.framework │ │ │ │ ├── BqLog │ │ │ │ ├── Headers │ │ │ │ │ ├── bq_common │ │ │ │ │ │ ├── bq_common_public_include.h │ │ │ │ │ │ ├── misc │ │ │ │ │ │ │ └── assert.h │ │ │ │ │ │ ├── platform │ │ │ │ │ │ │ ├── build_type.h │ │ │ │ │ │ │ ├── build_type_dynamic_lib_import.h │ │ │ │ │ │ │ └── macros.h │ │ │ │ │ │ └── types │ │ │ │ │ │ │ ├── array.h │ │ │ │ │ │ │ ├── array_def.h │ │ │ │ │ │ │ ├── array_impl.h │ │ │ │ │ │ │ ├── basic_types.h │ │ │ │ │ │ │ ├── hash_map.h │ │ │ │ │ │ │ ├── hash_map_def.h │ │ │ │ │ │ │ ├── hash_map_impl.h │ │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ │ ├── string_impl.h │ │ │ │ │ │ │ ├── type_tools.h │ │ │ │ │ │ │ └── type_traits.h │ │ │ │ │ └── bq_log │ │ │ │ │ │ ├── adapters │ │ │ │ │ │ ├── adapter_unreal.h │ │ │ │ │ │ └── adapters.h │ │ │ │ │ │ ├── bq_log.h │ │ │ │ │ │ └── misc │ │ │ │ │ │ ├── bq_log_api.h │ │ │ │ │ │ ├── bq_log_def.h │ │ │ │ │ │ ├── bq_log_impl.h │ │ │ │ │ │ └── bq_log_wrapper_tools.h │ │ │ │ ├── Resources │ │ │ │ │ └── Info.plist │ │ │ │ └── Versions │ │ │ │ │ ├── 1.0.0 │ │ │ │ │ ├── BqLog │ │ │ │ │ ├── Headers │ │ │ │ │ │ ├── bq_common │ │ │ │ │ │ │ ├── bq_common_public_include.h │ │ │ │ │ │ │ ├── misc │ │ │ │ │ │ │ │ └── assert.h │ │ │ │ │ │ │ ├── platform │ │ │ │ │ │ │ │ ├── build_type.h │ │ │ │ │ │ │ │ ├── build_type_dynamic_lib_import.h │ │ │ │ │ │ │ │ └── macros.h │ │ │ │ │ │ │ └── types │ │ │ │ │ │ │ │ ├── array.h │ │ │ │ │ │ │ │ ├── array_def.h │ │ │ │ │ │ │ │ ├── array_impl.h │ │ │ │ │ │ │ │ ├── basic_types.h │ │ │ │ │ │ │ │ ├── hash_map.h │ │ │ │ │ │ │ │ ├── hash_map_def.h │ │ │ │ │ │ │ │ ├── hash_map_impl.h │ │ │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ │ │ ├── string_impl.h │ │ │ │ │ │ │ │ ├── type_tools.h │ │ │ │ │ │ │ │ └── type_traits.h │ │ │ │ │ │ └── bq_log │ │ │ │ │ │ │ ├── adapters │ │ │ │ │ │ │ ├── adapter_unreal.h │ │ │ │ │ │ │ └── adapters.h │ │ │ │ │ │ │ ├── bq_log.h │ │ │ │ │ │ │ └── misc │ │ │ │ │ │ │ ├── bq_log_api.h │ │ │ │ │ │ │ ├── bq_log_def.h │ │ │ │ │ │ │ ├── bq_log_impl.h │ │ │ │ │ │ │ └── bq_log_wrapper_tools.h │ │ │ │ │ ├── Resources │ │ │ │ │ │ └── Info.plist │ │ │ │ │ └── _CodeSignature │ │ │ │ │ │ └── CodeResources │ │ │ │ │ └── Current │ │ │ │ │ ├── BqLog │ │ │ │ │ ├── Headers │ │ │ │ │ ├── bq_common │ │ │ │ │ │ ├── bq_common_public_include.h │ │ │ │ │ │ ├── misc │ │ │ │ │ │ │ └── assert.h │ │ │ │ │ │ ├── platform │ │ │ │ │ │ │ ├── build_type.h │ │ │ │ │ │ │ ├── build_type_dynamic_lib_import.h │ │ │ │ │ │ │ └── macros.h │ │ │ │ │ │ └── types │ │ │ │ │ │ │ ├── array.h │ │ │ │ │ │ │ ├── array_def.h │ │ │ │ │ │ │ ├── array_impl.h │ │ │ │ │ │ │ ├── basic_types.h │ │ │ │ │ │ │ ├── hash_map.h │ │ │ │ │ │ │ ├── hash_map_def.h │ │ │ │ │ │ │ ├── hash_map_impl.h │ │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ │ ├── string_impl.h │ │ │ │ │ │ │ ├── type_tools.h │ │ │ │ │ │ │ └── type_traits.h │ │ │ │ │ └── bq_log │ │ │ │ │ │ ├── adapters │ │ │ │ │ │ ├── adapter_unreal.h │ │ │ │ │ │ └── adapters.h │ │ │ │ │ │ ├── bq_log.h │ │ │ │ │ │ └── misc │ │ │ │ │ │ ├── bq_log_api.h │ │ │ │ │ │ ├── bq_log_def.h │ │ │ │ │ │ ├── bq_log_impl.h │ │ │ │ │ │ └── bq_log_wrapper_tools.h │ │ │ │ │ ├── Resources │ │ │ │ │ └── Info.plist │ │ │ │ │ └── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ └── libBqLog.dylib │ │ └── Release │ │ │ ├── BqLog.framework │ │ │ ├── BqLog │ │ │ ├── Headers │ │ │ │ ├── bq_common │ │ │ │ │ ├── bq_common_public_include.h │ │ │ │ │ ├── misc │ │ │ │ │ │ └── assert.h │ │ │ │ │ ├── platform │ │ │ │ │ │ ├── build_type.h │ │ │ │ │ │ ├── build_type_dynamic_lib_import.h │ │ │ │ │ │ └── macros.h │ │ │ │ │ └── types │ │ │ │ │ │ ├── array.h │ │ │ │ │ │ ├── array_def.h │ │ │ │ │ │ ├── array_impl.h │ │ │ │ │ │ ├── basic_types.h │ │ │ │ │ │ ├── hash_map.h │ │ │ │ │ │ ├── hash_map_def.h │ │ │ │ │ │ ├── hash_map_impl.h │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ ├── string_impl.h │ │ │ │ │ │ ├── type_tools.h │ │ │ │ │ │ └── type_traits.h │ │ │ │ └── bq_log │ │ │ │ │ ├── adapters │ │ │ │ │ ├── adapter_unreal.h │ │ │ │ │ └── adapters.h │ │ │ │ │ ├── bq_log.h │ │ │ │ │ └── misc │ │ │ │ │ ├── bq_log_api.h │ │ │ │ │ ├── bq_log_def.h │ │ │ │ │ ├── bq_log_impl.h │ │ │ │ │ └── bq_log_wrapper_tools.h │ │ │ ├── Resources │ │ │ │ └── Info.plist │ │ │ └── Versions │ │ │ │ ├── 1.0.0 │ │ │ │ ├── BqLog │ │ │ │ ├── Headers │ │ │ │ │ ├── bq_common │ │ │ │ │ │ ├── bq_common_public_include.h │ │ │ │ │ │ ├── misc │ │ │ │ │ │ │ └── assert.h │ │ │ │ │ │ ├── platform │ │ │ │ │ │ │ ├── build_type.h │ │ │ │ │ │ │ ├── build_type_dynamic_lib_import.h │ │ │ │ │ │ │ └── macros.h │ │ │ │ │ │ └── types │ │ │ │ │ │ │ ├── array.h │ │ │ │ │ │ │ ├── array_def.h │ │ │ │ │ │ │ ├── array_impl.h │ │ │ │ │ │ │ ├── basic_types.h │ │ │ │ │ │ │ ├── hash_map.h │ │ │ │ │ │ │ ├── hash_map_def.h │ │ │ │ │ │ │ ├── hash_map_impl.h │ │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ │ ├── string_impl.h │ │ │ │ │ │ │ ├── type_tools.h │ │ │ │ │ │ │ └── type_traits.h │ │ │ │ │ └── bq_log │ │ │ │ │ │ ├── adapters │ │ │ │ │ │ ├── adapter_unreal.h │ │ │ │ │ │ └── adapters.h │ │ │ │ │ │ ├── bq_log.h │ │ │ │ │ │ └── misc │ │ │ │ │ │ ├── bq_log_api.h │ │ │ │ │ │ ├── bq_log_def.h │ │ │ │ │ │ ├── bq_log_impl.h │ │ │ │ │ │ └── bq_log_wrapper_tools.h │ │ │ │ ├── Resources │ │ │ │ │ └── Info.plist │ │ │ │ └── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ │ └── Current │ │ │ │ ├── BqLog │ │ │ │ ├── Headers │ │ │ │ ├── bq_common │ │ │ │ │ ├── bq_common_public_include.h │ │ │ │ │ ├── misc │ │ │ │ │ │ └── assert.h │ │ │ │ │ ├── platform │ │ │ │ │ │ ├── build_type.h │ │ │ │ │ │ ├── build_type_dynamic_lib_import.h │ │ │ │ │ │ └── macros.h │ │ │ │ │ └── types │ │ │ │ │ │ ├── array.h │ │ │ │ │ │ ├── array_def.h │ │ │ │ │ │ ├── array_impl.h │ │ │ │ │ │ ├── basic_types.h │ │ │ │ │ │ ├── hash_map.h │ │ │ │ │ │ ├── hash_map_def.h │ │ │ │ │ │ ├── hash_map_impl.h │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ ├── string_impl.h │ │ │ │ │ │ ├── type_tools.h │ │ │ │ │ │ └── type_traits.h │ │ │ │ └── bq_log │ │ │ │ │ ├── adapters │ │ │ │ │ ├── adapter_unreal.h │ │ │ │ │ └── adapters.h │ │ │ │ │ ├── bq_log.h │ │ │ │ │ └── misc │ │ │ │ │ ├── bq_log_api.h │ │ │ │ │ ├── bq_log_def.h │ │ │ │ │ ├── bq_log_impl.h │ │ │ │ │ └── bq_log_wrapper_tools.h │ │ │ │ ├── Resources │ │ │ │ └── Info.plist │ │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ │ └── libBqLog.dylib │ ├── unix32 │ │ └── README.MD │ ├── unix64 │ │ └── README.MD │ └── win64 │ │ ├── Debug │ │ ├── BqLog.dll │ │ ├── BqLog.lib │ │ └── BqLog.pdb │ │ ├── MinSizeRel │ │ ├── BqLog.dll │ │ └── BqLog.lib │ │ ├── RelWithDebInfo │ │ ├── BqLog.dll │ │ ├── BqLog.lib │ │ └── BqLog.pdb │ │ └── Release │ │ ├── BqLog.dll │ │ └── BqLog.lib └── static_lib │ ├── include │ ├── bq_common │ │ ├── bq_common_public_include.h │ │ ├── misc │ │ │ └── assert.h │ │ ├── platform │ │ │ ├── build_type.h │ │ │ ├── build_type_dynamic_lib_import.h │ │ │ └── macros.h │ │ └── types │ │ │ ├── array.h │ │ │ ├── array_def.h │ │ │ ├── array_impl.h │ │ │ ├── basic_types.h │ │ │ ├── hash_map.h │ │ │ ├── hash_map_def.h │ │ │ ├── hash_map_impl.h │ │ │ ├── string.h │ │ │ ├── string_impl.h │ │ │ ├── type_tools.h │ │ │ └── type_traits.h │ └── bq_log │ │ ├── adapters │ │ ├── adapter_unreal.h │ │ └── adapters.h │ │ ├── bq_log.h │ │ └── misc │ │ ├── bq_log_api.h │ │ ├── bq_log_def.h │ │ ├── bq_log_impl.h │ │ └── bq_log_wrapper_tools.h │ ├── linux32 │ ├── Debug │ │ └── libBqLog.a │ ├── MinSizeRel │ │ └── libBqLog.a │ ├── RelWithDebInfo │ │ └── libBqLog.a │ └── Release │ │ └── libBqLog.a │ ├── linux64 │ ├── Debug │ │ └── libBqLog.a │ ├── MinSizeRel │ │ └── libBqLog.a │ ├── RelWithDebInfo │ │ └── libBqLog.a │ └── Release │ │ └── libBqLog.a │ ├── mac │ ├── Debug │ │ ├── BqLog.framework │ │ │ ├── BqLog │ │ │ ├── Headers │ │ │ │ ├── bq_common │ │ │ │ │ ├── bq_common_public_include.h │ │ │ │ │ ├── misc │ │ │ │ │ │ └── assert.h │ │ │ │ │ ├── platform │ │ │ │ │ │ ├── build_type.h │ │ │ │ │ │ ├── build_type_dynamic_lib_import.h │ │ │ │ │ │ └── macros.h │ │ │ │ │ └── types │ │ │ │ │ │ ├── array.h │ │ │ │ │ │ ├── array_def.h │ │ │ │ │ │ ├── array_impl.h │ │ │ │ │ │ ├── basic_types.h │ │ │ │ │ │ ├── hash_map.h │ │ │ │ │ │ ├── hash_map_def.h │ │ │ │ │ │ ├── hash_map_impl.h │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ ├── string_impl.h │ │ │ │ │ │ ├── type_tools.h │ │ │ │ │ │ └── type_traits.h │ │ │ │ └── bq_log │ │ │ │ │ ├── adapters │ │ │ │ │ ├── adapter_unreal.h │ │ │ │ │ └── adapters.h │ │ │ │ │ ├── bq_log.h │ │ │ │ │ └── misc │ │ │ │ │ ├── bq_log_api.h │ │ │ │ │ ├── bq_log_def.h │ │ │ │ │ ├── bq_log_impl.h │ │ │ │ │ └── bq_log_wrapper_tools.h │ │ │ ├── Resources │ │ │ │ └── Info.plist │ │ │ └── Versions │ │ │ │ ├── 1.0.0 │ │ │ │ ├── BqLog │ │ │ │ ├── Headers │ │ │ │ │ ├── bq_common │ │ │ │ │ │ ├── bq_common_public_include.h │ │ │ │ │ │ ├── misc │ │ │ │ │ │ │ └── assert.h │ │ │ │ │ │ ├── platform │ │ │ │ │ │ │ ├── build_type.h │ │ │ │ │ │ │ ├── build_type_dynamic_lib_import.h │ │ │ │ │ │ │ └── macros.h │ │ │ │ │ │ └── types │ │ │ │ │ │ │ ├── array.h │ │ │ │ │ │ │ ├── array_def.h │ │ │ │ │ │ │ ├── array_impl.h │ │ │ │ │ │ │ ├── basic_types.h │ │ │ │ │ │ │ ├── hash_map.h │ │ │ │ │ │ │ ├── hash_map_def.h │ │ │ │ │ │ │ ├── hash_map_impl.h │ │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ │ ├── string_impl.h │ │ │ │ │ │ │ ├── type_tools.h │ │ │ │ │ │ │ └── type_traits.h │ │ │ │ │ └── bq_log │ │ │ │ │ │ ├── adapters │ │ │ │ │ │ ├── adapter_unreal.h │ │ │ │ │ │ └── adapters.h │ │ │ │ │ │ ├── bq_log.h │ │ │ │ │ │ └── misc │ │ │ │ │ │ ├── bq_log_api.h │ │ │ │ │ │ ├── bq_log_def.h │ │ │ │ │ │ ├── bq_log_impl.h │ │ │ │ │ │ └── bq_log_wrapper_tools.h │ │ │ │ ├── Resources │ │ │ │ │ └── Info.plist │ │ │ │ └── _CodeSignature │ │ │ │ │ ├── CodeDirectory │ │ │ │ │ ├── CodeRequirements │ │ │ │ │ ├── CodeRequirements-1 │ │ │ │ │ ├── CodeResources │ │ │ │ │ └── CodeSignature │ │ │ │ └── Current │ │ │ │ ├── BqLog │ │ │ │ ├── Headers │ │ │ │ ├── bq_common │ │ │ │ │ ├── bq_common_public_include.h │ │ │ │ │ ├── misc │ │ │ │ │ │ └── assert.h │ │ │ │ │ ├── platform │ │ │ │ │ │ ├── build_type.h │ │ │ │ │ │ ├── build_type_dynamic_lib_import.h │ │ │ │ │ │ └── macros.h │ │ │ │ │ └── types │ │ │ │ │ │ ├── array.h │ │ │ │ │ │ ├── array_def.h │ │ │ │ │ │ ├── array_impl.h │ │ │ │ │ │ ├── basic_types.h │ │ │ │ │ │ ├── hash_map.h │ │ │ │ │ │ ├── hash_map_def.h │ │ │ │ │ │ ├── hash_map_impl.h │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ ├── string_impl.h │ │ │ │ │ │ ├── type_tools.h │ │ │ │ │ │ └── type_traits.h │ │ │ │ └── bq_log │ │ │ │ │ ├── adapters │ │ │ │ │ ├── adapter_unreal.h │ │ │ │ │ └── adapters.h │ │ │ │ │ ├── bq_log.h │ │ │ │ │ └── misc │ │ │ │ │ ├── bq_log_api.h │ │ │ │ │ ├── bq_log_def.h │ │ │ │ │ ├── bq_log_impl.h │ │ │ │ │ └── bq_log_wrapper_tools.h │ │ │ │ ├── Resources │ │ │ │ └── Info.plist │ │ │ │ └── _CodeSignature │ │ │ │ ├── CodeDirectory │ │ │ │ ├── CodeRequirements │ │ │ │ ├── CodeRequirements-1 │ │ │ │ ├── CodeResources │ │ │ │ └── CodeSignature │ │ └── libBqLog.a │ ├── MinSizeRel │ │ ├── BqLog.framework │ │ │ ├── BqLog │ │ │ ├── Headers │ │ │ │ ├── bq_common │ │ │ │ │ ├── bq_common_public_include.h │ │ │ │ │ ├── misc │ │ │ │ │ │ └── assert.h │ │ │ │ │ ├── platform │ │ │ │ │ │ ├── build_type.h │ │ │ │ │ │ ├── build_type_dynamic_lib_import.h │ │ │ │ │ │ └── macros.h │ │ │ │ │ └── types │ │ │ │ │ │ ├── array.h │ │ │ │ │ │ ├── array_def.h │ │ │ │ │ │ ├── array_impl.h │ │ │ │ │ │ ├── basic_types.h │ │ │ │ │ │ ├── hash_map.h │ │ │ │ │ │ ├── hash_map_def.h │ │ │ │ │ │ ├── hash_map_impl.h │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ ├── string_impl.h │ │ │ │ │ │ ├── type_tools.h │ │ │ │ │ │ └── type_traits.h │ │ │ │ └── bq_log │ │ │ │ │ ├── adapters │ │ │ │ │ ├── adapter_unreal.h │ │ │ │ │ └── adapters.h │ │ │ │ │ ├── bq_log.h │ │ │ │ │ └── misc │ │ │ │ │ ├── bq_log_api.h │ │ │ │ │ ├── bq_log_def.h │ │ │ │ │ ├── bq_log_impl.h │ │ │ │ │ └── bq_log_wrapper_tools.h │ │ │ ├── Resources │ │ │ │ └── Info.plist │ │ │ └── Versions │ │ │ │ ├── 1.0.0 │ │ │ │ ├── BqLog │ │ │ │ ├── Headers │ │ │ │ │ ├── bq_common │ │ │ │ │ │ ├── bq_common_public_include.h │ │ │ │ │ │ ├── misc │ │ │ │ │ │ │ └── assert.h │ │ │ │ │ │ ├── platform │ │ │ │ │ │ │ ├── build_type.h │ │ │ │ │ │ │ ├── build_type_dynamic_lib_import.h │ │ │ │ │ │ │ └── macros.h │ │ │ │ │ │ └── types │ │ │ │ │ │ │ ├── array.h │ │ │ │ │ │ │ ├── array_def.h │ │ │ │ │ │ │ ├── array_impl.h │ │ │ │ │ │ │ ├── basic_types.h │ │ │ │ │ │ │ ├── hash_map.h │ │ │ │ │ │ │ ├── hash_map_def.h │ │ │ │ │ │ │ ├── hash_map_impl.h │ │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ │ ├── string_impl.h │ │ │ │ │ │ │ ├── type_tools.h │ │ │ │ │ │ │ └── type_traits.h │ │ │ │ │ └── bq_log │ │ │ │ │ │ ├── adapters │ │ │ │ │ │ ├── adapter_unreal.h │ │ │ │ │ │ └── adapters.h │ │ │ │ │ │ ├── bq_log.h │ │ │ │ │ │ └── misc │ │ │ │ │ │ ├── bq_log_api.h │ │ │ │ │ │ ├── bq_log_def.h │ │ │ │ │ │ ├── bq_log_impl.h │ │ │ │ │ │ └── bq_log_wrapper_tools.h │ │ │ │ ├── Resources │ │ │ │ │ └── Info.plist │ │ │ │ └── _CodeSignature │ │ │ │ │ ├── CodeDirectory │ │ │ │ │ ├── CodeRequirements │ │ │ │ │ ├── CodeRequirements-1 │ │ │ │ │ ├── CodeResources │ │ │ │ │ └── CodeSignature │ │ │ │ └── Current │ │ │ │ ├── BqLog │ │ │ │ ├── Headers │ │ │ │ ├── bq_common │ │ │ │ │ ├── bq_common_public_include.h │ │ │ │ │ ├── misc │ │ │ │ │ │ └── assert.h │ │ │ │ │ ├── platform │ │ │ │ │ │ ├── build_type.h │ │ │ │ │ │ ├── build_type_dynamic_lib_import.h │ │ │ │ │ │ └── macros.h │ │ │ │ │ └── types │ │ │ │ │ │ ├── array.h │ │ │ │ │ │ ├── array_def.h │ │ │ │ │ │ ├── array_impl.h │ │ │ │ │ │ ├── basic_types.h │ │ │ │ │ │ ├── hash_map.h │ │ │ │ │ │ ├── hash_map_def.h │ │ │ │ │ │ ├── hash_map_impl.h │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ ├── string_impl.h │ │ │ │ │ │ ├── type_tools.h │ │ │ │ │ │ └── type_traits.h │ │ │ │ └── bq_log │ │ │ │ │ ├── adapters │ │ │ │ │ ├── adapter_unreal.h │ │ │ │ │ └── adapters.h │ │ │ │ │ ├── bq_log.h │ │ │ │ │ └── misc │ │ │ │ │ ├── bq_log_api.h │ │ │ │ │ ├── bq_log_def.h │ │ │ │ │ ├── bq_log_impl.h │ │ │ │ │ └── bq_log_wrapper_tools.h │ │ │ │ ├── Resources │ │ │ │ └── Info.plist │ │ │ │ └── _CodeSignature │ │ │ │ ├── CodeDirectory │ │ │ │ ├── CodeRequirements │ │ │ │ ├── CodeRequirements-1 │ │ │ │ ├── CodeResources │ │ │ │ └── CodeSignature │ │ └── libBqLog.a │ ├── RelWithDebInfo │ │ ├── BqLog.framework │ │ │ ├── BqLog │ │ │ ├── Headers │ │ │ │ ├── bq_common │ │ │ │ │ ├── bq_common_public_include.h │ │ │ │ │ ├── misc │ │ │ │ │ │ └── assert.h │ │ │ │ │ ├── platform │ │ │ │ │ │ ├── build_type.h │ │ │ │ │ │ ├── build_type_dynamic_lib_import.h │ │ │ │ │ │ └── macros.h │ │ │ │ │ └── types │ │ │ │ │ │ ├── array.h │ │ │ │ │ │ ├── array_def.h │ │ │ │ │ │ ├── array_impl.h │ │ │ │ │ │ ├── basic_types.h │ │ │ │ │ │ ├── hash_map.h │ │ │ │ │ │ ├── hash_map_def.h │ │ │ │ │ │ ├── hash_map_impl.h │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ ├── string_impl.h │ │ │ │ │ │ ├── type_tools.h │ │ │ │ │ │ └── type_traits.h │ │ │ │ └── bq_log │ │ │ │ │ ├── adapters │ │ │ │ │ ├── adapter_unreal.h │ │ │ │ │ └── adapters.h │ │ │ │ │ ├── bq_log.h │ │ │ │ │ └── misc │ │ │ │ │ ├── bq_log_api.h │ │ │ │ │ ├── bq_log_def.h │ │ │ │ │ ├── bq_log_impl.h │ │ │ │ │ └── bq_log_wrapper_tools.h │ │ │ ├── Resources │ │ │ │ └── Info.plist │ │ │ └── Versions │ │ │ │ ├── 1.0.0 │ │ │ │ ├── BqLog │ │ │ │ ├── Headers │ │ │ │ │ ├── bq_common │ │ │ │ │ │ ├── bq_common_public_include.h │ │ │ │ │ │ ├── misc │ │ │ │ │ │ │ └── assert.h │ │ │ │ │ │ ├── platform │ │ │ │ │ │ │ ├── build_type.h │ │ │ │ │ │ │ ├── build_type_dynamic_lib_import.h │ │ │ │ │ │ │ └── macros.h │ │ │ │ │ │ └── types │ │ │ │ │ │ │ ├── array.h │ │ │ │ │ │ │ ├── array_def.h │ │ │ │ │ │ │ ├── array_impl.h │ │ │ │ │ │ │ ├── basic_types.h │ │ │ │ │ │ │ ├── hash_map.h │ │ │ │ │ │ │ ├── hash_map_def.h │ │ │ │ │ │ │ ├── hash_map_impl.h │ │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ │ ├── string_impl.h │ │ │ │ │ │ │ ├── type_tools.h │ │ │ │ │ │ │ └── type_traits.h │ │ │ │ │ └── bq_log │ │ │ │ │ │ ├── adapters │ │ │ │ │ │ ├── adapter_unreal.h │ │ │ │ │ │ └── adapters.h │ │ │ │ │ │ ├── bq_log.h │ │ │ │ │ │ └── misc │ │ │ │ │ │ ├── bq_log_api.h │ │ │ │ │ │ ├── bq_log_def.h │ │ │ │ │ │ ├── bq_log_impl.h │ │ │ │ │ │ └── bq_log_wrapper_tools.h │ │ │ │ ├── Resources │ │ │ │ │ └── Info.plist │ │ │ │ └── _CodeSignature │ │ │ │ │ ├── CodeDirectory │ │ │ │ │ ├── CodeRequirements │ │ │ │ │ ├── CodeRequirements-1 │ │ │ │ │ ├── CodeResources │ │ │ │ │ └── CodeSignature │ │ │ │ └── Current │ │ │ │ ├── BqLog │ │ │ │ ├── Headers │ │ │ │ ├── bq_common │ │ │ │ │ ├── bq_common_public_include.h │ │ │ │ │ ├── misc │ │ │ │ │ │ └── assert.h │ │ │ │ │ ├── platform │ │ │ │ │ │ ├── build_type.h │ │ │ │ │ │ ├── build_type_dynamic_lib_import.h │ │ │ │ │ │ └── macros.h │ │ │ │ │ └── types │ │ │ │ │ │ ├── array.h │ │ │ │ │ │ ├── array_def.h │ │ │ │ │ │ ├── array_impl.h │ │ │ │ │ │ ├── basic_types.h │ │ │ │ │ │ ├── hash_map.h │ │ │ │ │ │ ├── hash_map_def.h │ │ │ │ │ │ ├── hash_map_impl.h │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ ├── string_impl.h │ │ │ │ │ │ ├── type_tools.h │ │ │ │ │ │ └── type_traits.h │ │ │ │ └── bq_log │ │ │ │ │ ├── adapters │ │ │ │ │ ├── adapter_unreal.h │ │ │ │ │ └── adapters.h │ │ │ │ │ ├── bq_log.h │ │ │ │ │ └── misc │ │ │ │ │ ├── bq_log_api.h │ │ │ │ │ ├── bq_log_def.h │ │ │ │ │ ├── bq_log_impl.h │ │ │ │ │ └── bq_log_wrapper_tools.h │ │ │ │ ├── Resources │ │ │ │ └── Info.plist │ │ │ │ └── _CodeSignature │ │ │ │ ├── CodeDirectory │ │ │ │ ├── CodeRequirements │ │ │ │ ├── CodeRequirements-1 │ │ │ │ ├── CodeResources │ │ │ │ └── CodeSignature │ │ └── libBqLog.a │ └── Release │ │ ├── BqLog.framework │ │ ├── BqLog │ │ ├── Headers │ │ │ ├── bq_common │ │ │ │ ├── bq_common_public_include.h │ │ │ │ ├── misc │ │ │ │ │ └── assert.h │ │ │ │ ├── platform │ │ │ │ │ ├── build_type.h │ │ │ │ │ ├── build_type_dynamic_lib_import.h │ │ │ │ │ └── macros.h │ │ │ │ └── types │ │ │ │ │ ├── array.h │ │ │ │ │ ├── array_def.h │ │ │ │ │ ├── array_impl.h │ │ │ │ │ ├── basic_types.h │ │ │ │ │ ├── hash_map.h │ │ │ │ │ ├── hash_map_def.h │ │ │ │ │ ├── hash_map_impl.h │ │ │ │ │ ├── string.h │ │ │ │ │ ├── string_impl.h │ │ │ │ │ ├── type_tools.h │ │ │ │ │ └── type_traits.h │ │ │ └── bq_log │ │ │ │ ├── adapters │ │ │ │ ├── adapter_unreal.h │ │ │ │ └── adapters.h │ │ │ │ ├── bq_log.h │ │ │ │ └── misc │ │ │ │ ├── bq_log_api.h │ │ │ │ ├── bq_log_def.h │ │ │ │ ├── bq_log_impl.h │ │ │ │ └── bq_log_wrapper_tools.h │ │ ├── Resources │ │ │ └── Info.plist │ │ └── Versions │ │ │ ├── 1.0.0 │ │ │ ├── BqLog │ │ │ ├── Headers │ │ │ │ ├── bq_common │ │ │ │ │ ├── bq_common_public_include.h │ │ │ │ │ ├── misc │ │ │ │ │ │ └── assert.h │ │ │ │ │ ├── platform │ │ │ │ │ │ ├── build_type.h │ │ │ │ │ │ ├── build_type_dynamic_lib_import.h │ │ │ │ │ │ └── macros.h │ │ │ │ │ └── types │ │ │ │ │ │ ├── array.h │ │ │ │ │ │ ├── array_def.h │ │ │ │ │ │ ├── array_impl.h │ │ │ │ │ │ ├── basic_types.h │ │ │ │ │ │ ├── hash_map.h │ │ │ │ │ │ ├── hash_map_def.h │ │ │ │ │ │ ├── hash_map_impl.h │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ ├── string_impl.h │ │ │ │ │ │ ├── type_tools.h │ │ │ │ │ │ └── type_traits.h │ │ │ │ └── bq_log │ │ │ │ │ ├── adapters │ │ │ │ │ ├── adapter_unreal.h │ │ │ │ │ └── adapters.h │ │ │ │ │ ├── bq_log.h │ │ │ │ │ └── misc │ │ │ │ │ ├── bq_log_api.h │ │ │ │ │ ├── bq_log_def.h │ │ │ │ │ ├── bq_log_impl.h │ │ │ │ │ └── bq_log_wrapper_tools.h │ │ │ ├── Resources │ │ │ │ └── Info.plist │ │ │ └── _CodeSignature │ │ │ │ ├── CodeDirectory │ │ │ │ ├── CodeRequirements │ │ │ │ ├── CodeRequirements-1 │ │ │ │ ├── CodeResources │ │ │ │ └── CodeSignature │ │ │ └── Current │ │ │ ├── BqLog │ │ │ ├── Headers │ │ │ ├── bq_common │ │ │ │ ├── bq_common_public_include.h │ │ │ │ ├── misc │ │ │ │ │ └── assert.h │ │ │ │ ├── platform │ │ │ │ │ ├── build_type.h │ │ │ │ │ ├── build_type_dynamic_lib_import.h │ │ │ │ │ └── macros.h │ │ │ │ └── types │ │ │ │ │ ├── array.h │ │ │ │ │ ├── array_def.h │ │ │ │ │ ├── array_impl.h │ │ │ │ │ ├── basic_types.h │ │ │ │ │ ├── hash_map.h │ │ │ │ │ ├── hash_map_def.h │ │ │ │ │ ├── hash_map_impl.h │ │ │ │ │ ├── string.h │ │ │ │ │ ├── string_impl.h │ │ │ │ │ ├── type_tools.h │ │ │ │ │ └── type_traits.h │ │ │ └── bq_log │ │ │ │ ├── adapters │ │ │ │ ├── adapter_unreal.h │ │ │ │ └── adapters.h │ │ │ │ ├── bq_log.h │ │ │ │ └── misc │ │ │ │ ├── bq_log_api.h │ │ │ │ ├── bq_log_def.h │ │ │ │ ├── bq_log_impl.h │ │ │ │ └── bq_log_wrapper_tools.h │ │ │ ├── Resources │ │ │ └── Info.plist │ │ │ └── _CodeSignature │ │ │ ├── CodeDirectory │ │ │ ├── CodeRequirements │ │ │ ├── CodeRequirements-1 │ │ │ ├── CodeResources │ │ │ └── CodeSignature │ │ └── libBqLog.a │ ├── unix32 │ └── README.MD │ ├── unix64 │ └── README.MD │ └── win64 │ ├── Debug │ ├── BqLog.lib │ └── BqLog.pdb │ ├── MinSizeRel │ └── BqLog.lib │ ├── RelWithDebInfo │ ├── BqLog.lib │ └── BqLog.pdb │ └── Release │ └── BqLog.lib ├── docs ├── Article 1_Why is BqLog so fast - High Performance Realtime Compressed Log Format.MD ├── Article 2_Why is BqLog so fast - High Concurrency Ring Buffer.MD ├── img │ ├── BqLog_Fetch_Add_Demo.png │ ├── Disruptor_Alloc.png │ ├── benchmark_4_params.png │ ├── benchmark_no_param.png │ ├── compress_1.png │ ├── compress_10.png │ ├── compress_11.png │ ├── compress_11_EN.png │ ├── compress_2.png │ ├── compress_3.png │ ├── compress_4.png │ ├── compress_5.png │ ├── compress_6.png │ ├── compress_7.png │ ├── compress_8.png │ ├── compress_8_EN.png │ ├── compress_9.png │ ├── compress_9_EN.png │ ├── kfifo_buffer.png │ ├── log_level.png │ ├── log_structure.png │ ├── rollback_1.png │ └── rollback_2.png ├── 文章1_为何BqLog如此快 - 高性能实时压缩日志格式.MD └── 文章2_为何BqLog如此快 - 高并发环形队列.MD ├── format_code.bat ├── format_code.sh ├── include ├── bq_common │ ├── bq_common_public_include.h │ ├── misc │ │ └── assert.h │ ├── platform │ │ ├── build_type.h │ │ ├── build_type_dynamic_lib_import.h │ │ └── macros.h │ └── types │ │ ├── array.h │ │ ├── array_def.h │ │ ├── array_impl.h │ │ ├── basic_types.h │ │ ├── hash_map.h │ │ ├── hash_map_def.h │ │ ├── hash_map_impl.h │ │ ├── string.h │ │ ├── string_impl.h │ │ ├── type_tools.h │ │ └── type_traits.h └── bq_log │ ├── adapters │ ├── adapter_unreal.h │ └── adapters.h │ ├── bq_log.h │ └── misc │ ├── bq_log_api.h │ ├── bq_log_def.h │ ├── bq_log_impl.h │ └── bq_log_wrapper_tools.h ├── src ├── CMakeLists.txt ├── bq_common │ ├── bq_common.h │ ├── bq_common_debug_viewer.natvis │ ├── platform │ │ ├── android_misc.cpp │ │ ├── android_misc.h │ │ ├── atomic │ │ │ ├── _inner_atomic_GNU_C.h │ │ │ ├── _inner_atomic_windows.h │ │ │ └── atomic.h │ │ ├── io │ │ │ ├── memory_map.h │ │ │ ├── memory_map_posix.cpp │ │ │ └── memory_map_win.cpp │ │ ├── ios_misc.h │ │ ├── ios_misc.mm │ │ ├── java_misc.cpp │ │ ├── java_misc.h │ │ ├── linux_misc.cpp │ │ ├── linux_misc.h │ │ ├── mac_misc.h │ │ ├── mac_misc.mm │ │ ├── no_lib_cpp_impl.cpp │ │ ├── no_lib_cpp_impl.h │ │ ├── platform_misc.h │ │ ├── posix_misc.cpp │ │ ├── posix_misc.h │ │ ├── ps_misc.cpp │ │ ├── ps_misc.h │ │ ├── thread │ │ │ ├── condition_variable.h │ │ │ ├── condition_variable_posix.cpp │ │ │ ├── condition_variable_win64.cpp │ │ │ ├── mutex.h │ │ │ ├── mutex_posix.cpp │ │ │ ├── mutex_win64.cpp │ │ │ ├── spin_lock.cpp │ │ │ ├── spin_lock.h │ │ │ ├── thread.cpp │ │ │ ├── thread.h │ │ │ ├── thread_posix.cpp │ │ │ └── thread_win64.cpp │ │ ├── unix_misc.cpp │ │ ├── unix_misc.h │ │ ├── win64_misc.cpp │ │ └── win64_misc.h │ └── utils │ │ ├── file_manager.cpp │ │ ├── file_manager.h │ │ ├── property.cpp │ │ ├── property.h │ │ ├── property_ex.cpp │ │ ├── property_ex.h │ │ ├── util.cpp │ │ └── util.h └── bq_log │ ├── api │ ├── bq_impl_log_invoker.h │ ├── bq_log_api.cpp │ └── bq_log_jni_api.cpp │ ├── log │ ├── appender │ │ ├── appender_base.cpp │ │ ├── appender_base.h │ │ ├── appender_console.cpp │ │ ├── appender_console.h │ │ ├── appender_file_base.cpp │ │ ├── appender_file_base.h │ │ ├── appender_file_binary.cpp │ │ ├── appender_file_binary.h │ │ ├── appender_file_compressed.cpp │ │ ├── appender_file_compressed.h │ │ ├── appender_file_raw.cpp │ │ ├── appender_file_raw.h │ │ ├── appender_file_text.cpp │ │ └── appender_file_text.h │ ├── decoder │ │ ├── appender_decoder_base.cpp │ │ ├── appender_decoder_base.h │ │ ├── appender_decoder_compressed.cpp │ │ ├── appender_decoder_compressed.h │ │ ├── appender_decoder_helper.cpp │ │ ├── appender_decoder_helper.h │ │ ├── appender_decoder_manager.cpp │ │ ├── appender_decoder_manager.h │ │ ├── appender_decoder_raw.cpp │ │ └── appender_decoder_raw.h │ ├── layout.cpp │ ├── layout.h │ ├── log_imp.cpp │ ├── log_imp.h │ ├── log_level_bitmap.cpp │ ├── log_level_bitmap.h │ ├── log_manager.cpp │ ├── log_manager.h │ ├── log_snapshot.cpp │ ├── log_snapshot.h │ ├── log_types.cpp │ ├── log_types.h │ ├── log_worker.cpp │ └── log_worker.h │ ├── types │ ├── ring_buffer.cpp │ └── ring_buffer.h │ └── utils │ ├── log_utils.cpp │ └── log_utils.h ├── test ├── CMakeLists.txt ├── bq_common_test │ ├── test_array.h │ ├── test_basic_types.h │ ├── test_file_manager.h │ ├── test_hash_map.h │ ├── test_property.h │ ├── test_string.h │ ├── test_thread_atomic.h │ └── test_utils.h ├── com_tencent_bq_unittest_JNIEntry.h ├── jni_main.cpp ├── main.cpp ├── test_base.cpp ├── test_base.h ├── test_category_log.h ├── test_category_log.txt ├── test_log.h ├── test_log_1.cpp ├── test_log_2.cpp ├── test_log_3.cpp ├── test_log_4.cpp └── test_ring_buffer.h ├── tools ├── category_log_generator │ ├── CMakeLists.txt │ ├── category_generator.cpp │ ├── category_generator.h │ ├── common_header.h │ ├── main.cpp │ └── template │ │ ├── category_log_template_base.cpp │ │ ├── category_log_template_base.h │ │ ├── category_log_template_cpp.cpp │ │ ├── category_log_template_cpp.h │ │ ├── category_log_template_csharp.cpp │ │ ├── category_log_template_csharp.h │ │ ├── category_log_template_java.cpp │ │ └── category_log_template_java.h └── log_decoder │ ├── CMakeLists.txt │ ├── common_header.h │ └── main.cpp └── wrapper ├── csharp └── src │ ├── CMakeLists.txt │ └── bq │ ├── category_log.cs │ ├── def │ ├── log_category_base.cs │ └── log_types_def.cs │ ├── impl │ ├── log_context.cs │ ├── log_invoker.cs │ ├── param_wrapper.cs │ └── utils.cs │ ├── lib_def.cs │ ├── log.cs │ └── tools │ └── log_decoder.cs └── java ├── .gitignore ├── CMakeLists.txt └── src └── bq ├── category_log.java ├── def ├── constants.java ├── log_arg_type_enum.java ├── log_category_base.java ├── log_level.java └── string_holder.java ├── impl ├── log_context.java └── log_invoker.java ├── lib_def.java ├── log.java ├── tools └── log_decoder.java └── utils └── param.java /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/nodejs_native_build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/.github/workflows/nodejs_native_build.yml -------------------------------------------------------------------------------- /.github/workflows/nodejs_npm_build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/.github/workflows/nodejs_npm_build.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.github/workflows/test_build_commit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/.github/workflows/test_build_commit.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | artifacts/ -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMake_utils.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/CMake_utils.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/README.md -------------------------------------------------------------------------------- /README_CHS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/README_CHS.md -------------------------------------------------------------------------------- /benchmark/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/benchmark/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /benchmark/cpp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/benchmark/cpp/main.cpp -------------------------------------------------------------------------------- /benchmark/java/src/benchmark_main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/benchmark/java/src/benchmark_main.java -------------------------------------------------------------------------------- /bin/tools/linux32/BqLog_CategoryLogGenerator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/bin/tools/linux32/BqLog_CategoryLogGenerator -------------------------------------------------------------------------------- /bin/tools/linux32/BqLog_LogDecoder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/bin/tools/linux32/BqLog_LogDecoder -------------------------------------------------------------------------------- /bin/tools/linux64/BqLog_CategoryLogGenerator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/bin/tools/linux64/BqLog_CategoryLogGenerator -------------------------------------------------------------------------------- /bin/tools/linux64/BqLog_LogDecoder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/bin/tools/linux64/BqLog_LogDecoder -------------------------------------------------------------------------------- /bin/tools/mac/Debug/BqLog_CategoryLogGenerator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/bin/tools/mac/Debug/BqLog_CategoryLogGenerator -------------------------------------------------------------------------------- /bin/tools/mac/MinSizeRel/BqLog_CategoryLogGenerator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/bin/tools/mac/MinSizeRel/BqLog_CategoryLogGenerator -------------------------------------------------------------------------------- /bin/tools/mac/MinSizeRel/BqLog_LogDecoder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/bin/tools/mac/MinSizeRel/BqLog_LogDecoder -------------------------------------------------------------------------------- /bin/tools/mac/RelWithDebInfo/BqLog_CategoryLogGenerator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/bin/tools/mac/RelWithDebInfo/BqLog_CategoryLogGenerator -------------------------------------------------------------------------------- /bin/tools/mac/RelWithDebInfo/BqLog_LogDecoder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/bin/tools/mac/RelWithDebInfo/BqLog_LogDecoder -------------------------------------------------------------------------------- /bin/tools/mac/Release/BqLog_CategoryLogGenerator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/bin/tools/mac/Release/BqLog_CategoryLogGenerator -------------------------------------------------------------------------------- /bin/tools/unix32/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/bin/tools/unix32/README.MD -------------------------------------------------------------------------------- /bin/tools/unix64/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/bin/tools/unix64/README.MD -------------------------------------------------------------------------------- /bin/tools/win64/Debug/BqLog_CategoryLogGenerator.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/bin/tools/win64/Debug/BqLog_CategoryLogGenerator.exe -------------------------------------------------------------------------------- /bin/tools/win64/Debug/BqLog_CategoryLogGenerator.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/bin/tools/win64/Debug/BqLog_CategoryLogGenerator.pdb -------------------------------------------------------------------------------- /bin/tools/win64/Debug/BqLog_LogDecoder.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/bin/tools/win64/Debug/BqLog_LogDecoder.exe -------------------------------------------------------------------------------- /bin/tools/win64/Debug/BqLog_LogDecoder.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/bin/tools/win64/Debug/BqLog_LogDecoder.pdb -------------------------------------------------------------------------------- /bin/tools/win64/MinSizeRel/BqLog_CategoryLogGenerator.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/bin/tools/win64/MinSizeRel/BqLog_CategoryLogGenerator.exe -------------------------------------------------------------------------------- /bin/tools/win64/MinSizeRel/BqLog_LogDecoder.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/bin/tools/win64/MinSizeRel/BqLog_LogDecoder.exe -------------------------------------------------------------------------------- /bin/tools/win64/RelWithDebInfo/BqLog_CategoryLogGenerator.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/bin/tools/win64/RelWithDebInfo/BqLog_CategoryLogGenerator.exe -------------------------------------------------------------------------------- /bin/tools/win64/RelWithDebInfo/BqLog_CategoryLogGenerator.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/bin/tools/win64/RelWithDebInfo/BqLog_CategoryLogGenerator.pdb -------------------------------------------------------------------------------- /bin/tools/win64/RelWithDebInfo/BqLog_LogDecoder.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/bin/tools/win64/RelWithDebInfo/BqLog_LogDecoder.exe -------------------------------------------------------------------------------- /bin/tools/win64/RelWithDebInfo/BqLog_LogDecoder.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/bin/tools/win64/RelWithDebInfo/BqLog_LogDecoder.pdb -------------------------------------------------------------------------------- /bin/tools/win64/Release/BqLog_CategoryLogGenerator.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/bin/tools/win64/Release/BqLog_CategoryLogGenerator.exe -------------------------------------------------------------------------------- /bin/tools/win64/Release/BqLog_LogDecoder.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/bin/tools/win64/Release/BqLog_LogDecoder.exe -------------------------------------------------------------------------------- /demo/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/demo/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /demo/cpp/demo_category_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/demo/cpp/demo_category_log.h -------------------------------------------------------------------------------- /demo/cpp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/demo/cpp/main.cpp -------------------------------------------------------------------------------- /demo/csharp/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/demo/csharp/src/CMakeLists.txt -------------------------------------------------------------------------------- /demo/csharp/src/bq/demo_category_log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/demo/csharp/src/bq/demo_category_log.cs -------------------------------------------------------------------------------- /demo/csharp/src/demo_main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/demo/csharp/src/demo_main.cs -------------------------------------------------------------------------------- /demo/demo_category_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/demo/demo_category_log.txt -------------------------------------------------------------------------------- /demo/java/src/bq/demo_category_log.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/demo/java/src/bq/demo_category_log.java -------------------------------------------------------------------------------- /demo/java/src/demo_main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/demo/java/src/demo_main.java -------------------------------------------------------------------------------- /dist/dynamic_lib/android/arm64-v8a/Debug/libBqLog.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/android/arm64-v8a/Debug/libBqLog.so -------------------------------------------------------------------------------- /dist/dynamic_lib/android/arm64-v8a/Debug/libBqLog_Symbol.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/android/arm64-v8a/Debug/libBqLog_Symbol.so -------------------------------------------------------------------------------- /dist/dynamic_lib/android/arm64-v8a/MinSizeRel/libBqLog.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/android/arm64-v8a/MinSizeRel/libBqLog.so -------------------------------------------------------------------------------- /dist/dynamic_lib/android/arm64-v8a/MinSizeRel/libBqLog_Symbol.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/android/arm64-v8a/MinSizeRel/libBqLog_Symbol.so -------------------------------------------------------------------------------- /dist/dynamic_lib/android/armeabi-v7a/Debug/libBqLog.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/android/armeabi-v7a/Debug/libBqLog.so -------------------------------------------------------------------------------- /dist/dynamic_lib/android/armeabi-v7a/Debug/libBqLog_Symbol.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/android/armeabi-v7a/Debug/libBqLog_Symbol.so -------------------------------------------------------------------------------- /dist/dynamic_lib/android/armeabi-v7a/MinSizeRel/libBqLog.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/android/armeabi-v7a/MinSizeRel/libBqLog.so -------------------------------------------------------------------------------- /dist/dynamic_lib/android/armeabi-v7a/MinSizeRel/libBqLog_Symbol.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/android/armeabi-v7a/MinSizeRel/libBqLog_Symbol.so -------------------------------------------------------------------------------- /dist/dynamic_lib/android/x86_64/Debug/libBqLog.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/android/x86_64/Debug/libBqLog.so -------------------------------------------------------------------------------- /dist/dynamic_lib/android/x86_64/Debug/libBqLog_Symbol.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/android/x86_64/Debug/libBqLog_Symbol.so -------------------------------------------------------------------------------- /dist/dynamic_lib/android/x86_64/MinSizeRel/libBqLog.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/android/x86_64/MinSizeRel/libBqLog.so -------------------------------------------------------------------------------- /dist/dynamic_lib/android/x86_64/MinSizeRel/libBqLog_Symbol.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/android/x86_64/MinSizeRel/libBqLog_Symbol.so -------------------------------------------------------------------------------- /dist/dynamic_lib/include/bq_common/bq_common_public_include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/include/bq_common/bq_common_public_include.h -------------------------------------------------------------------------------- /dist/dynamic_lib/include/bq_common/misc/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/include/bq_common/misc/assert.h -------------------------------------------------------------------------------- /dist/dynamic_lib/include/bq_common/platform/build_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/include/bq_common/platform/build_type.h -------------------------------------------------------------------------------- /dist/dynamic_lib/include/bq_common/platform/build_type_dynamic_lib_import.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/include/bq_common/platform/build_type_dynamic_lib_import.h -------------------------------------------------------------------------------- /dist/dynamic_lib/include/bq_common/platform/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/include/bq_common/platform/macros.h -------------------------------------------------------------------------------- /dist/dynamic_lib/include/bq_common/types/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/include/bq_common/types/array.h -------------------------------------------------------------------------------- /dist/dynamic_lib/include/bq_common/types/array_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/include/bq_common/types/array_def.h -------------------------------------------------------------------------------- /dist/dynamic_lib/include/bq_common/types/array_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/include/bq_common/types/array_impl.h -------------------------------------------------------------------------------- /dist/dynamic_lib/include/bq_common/types/basic_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/include/bq_common/types/basic_types.h -------------------------------------------------------------------------------- /dist/dynamic_lib/include/bq_common/types/hash_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/include/bq_common/types/hash_map.h -------------------------------------------------------------------------------- /dist/dynamic_lib/include/bq_common/types/hash_map_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/include/bq_common/types/hash_map_def.h -------------------------------------------------------------------------------- /dist/dynamic_lib/include/bq_common/types/hash_map_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/include/bq_common/types/hash_map_impl.h -------------------------------------------------------------------------------- /dist/dynamic_lib/include/bq_common/types/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/include/bq_common/types/string.h -------------------------------------------------------------------------------- /dist/dynamic_lib/include/bq_common/types/string_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/include/bq_common/types/string_impl.h -------------------------------------------------------------------------------- /dist/dynamic_lib/include/bq_common/types/type_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/include/bq_common/types/type_tools.h -------------------------------------------------------------------------------- /dist/dynamic_lib/include/bq_common/types/type_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/include/bq_common/types/type_traits.h -------------------------------------------------------------------------------- /dist/dynamic_lib/include/bq_log/adapters/adapter_unreal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/include/bq_log/adapters/adapter_unreal.h -------------------------------------------------------------------------------- /dist/dynamic_lib/include/bq_log/adapters/adapters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/include/bq_log/adapters/adapters.h -------------------------------------------------------------------------------- /dist/dynamic_lib/include/bq_log/bq_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/include/bq_log/bq_log.h -------------------------------------------------------------------------------- /dist/dynamic_lib/include/bq_log/misc/bq_log_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/include/bq_log/misc/bq_log_api.h -------------------------------------------------------------------------------- /dist/dynamic_lib/include/bq_log/misc/bq_log_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/include/bq_log/misc/bq_log_def.h -------------------------------------------------------------------------------- /dist/dynamic_lib/include/bq_log/misc/bq_log_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/include/bq_log/misc/bq_log_impl.h -------------------------------------------------------------------------------- /dist/dynamic_lib/include/bq_log/misc/bq_log_wrapper_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/include/bq_log/misc/bq_log_wrapper_tools.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/Debug/BqLog.framework.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/Debug/BqLog.framework.dSYM/Contents/Info.plist -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/Debug/BqLog.framework.dSYM/Contents/Resources/DWARF/BqLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/Debug/BqLog.framework.dSYM/Contents/Resources/DWARF/BqLog -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/Debug/BqLog.framework/BqLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/Debug/BqLog.framework/BqLog -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/Debug/BqLog.framework/Headers/bq_common/bq_common_public_include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/Debug/BqLog.framework/Headers/bq_common/bq_common_public_include.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/Debug/BqLog.framework/Headers/bq_common/misc/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/Debug/BqLog.framework/Headers/bq_common/misc/assert.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/Debug/BqLog.framework/Headers/bq_common/platform/build_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/Debug/BqLog.framework/Headers/bq_common/platform/build_type.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/Debug/BqLog.framework/Headers/bq_common/platform/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/Debug/BqLog.framework/Headers/bq_common/platform/macros.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/Debug/BqLog.framework/Headers/bq_common/types/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/Debug/BqLog.framework/Headers/bq_common/types/array.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/Debug/BqLog.framework/Headers/bq_common/types/array_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/Debug/BqLog.framework/Headers/bq_common/types/array_def.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/Debug/BqLog.framework/Headers/bq_common/types/array_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/Debug/BqLog.framework/Headers/bq_common/types/array_impl.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/Debug/BqLog.framework/Headers/bq_common/types/basic_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/Debug/BqLog.framework/Headers/bq_common/types/basic_types.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/Debug/BqLog.framework/Headers/bq_common/types/hash_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/Debug/BqLog.framework/Headers/bq_common/types/hash_map.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/Debug/BqLog.framework/Headers/bq_common/types/hash_map_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/Debug/BqLog.framework/Headers/bq_common/types/hash_map_def.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/Debug/BqLog.framework/Headers/bq_common/types/hash_map_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/Debug/BqLog.framework/Headers/bq_common/types/hash_map_impl.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/Debug/BqLog.framework/Headers/bq_common/types/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/Debug/BqLog.framework/Headers/bq_common/types/string.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/Debug/BqLog.framework/Headers/bq_common/types/string_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/Debug/BqLog.framework/Headers/bq_common/types/string_impl.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/Debug/BqLog.framework/Headers/bq_common/types/type_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/Debug/BqLog.framework/Headers/bq_common/types/type_tools.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/Debug/BqLog.framework/Headers/bq_common/types/type_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/Debug/BqLog.framework/Headers/bq_common/types/type_traits.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/Debug/BqLog.framework/Headers/bq_log/adapters/adapter_unreal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/Debug/BqLog.framework/Headers/bq_log/adapters/adapter_unreal.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/Debug/BqLog.framework/Headers/bq_log/adapters/adapters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/Debug/BqLog.framework/Headers/bq_log/adapters/adapters.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/Debug/BqLog.framework/Headers/bq_log/bq_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/Debug/BqLog.framework/Headers/bq_log/bq_log.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/Debug/BqLog.framework/Headers/bq_log/misc/bq_log_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/Debug/BqLog.framework/Headers/bq_log/misc/bq_log_api.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/Debug/BqLog.framework/Headers/bq_log/misc/bq_log_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/Debug/BqLog.framework/Headers/bq_log/misc/bq_log_def.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/Debug/BqLog.framework/Headers/bq_log/misc/bq_log_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/Debug/BqLog.framework/Headers/bq_log/misc/bq_log_impl.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/Debug/BqLog.framework/Headers/bq_log/misc/bq_log_wrapper_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/Debug/BqLog.framework/Headers/bq_log/misc/bq_log_wrapper_tools.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/Debug/BqLog.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/Debug/BqLog.framework/Info.plist -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/MinSizeRel/BqLog.framework/BqLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/MinSizeRel/BqLog.framework/BqLog -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/MinSizeRel/BqLog.framework/Headers/bq_common/bq_common_public_include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/MinSizeRel/BqLog.framework/Headers/bq_common/bq_common_public_include.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/MinSizeRel/BqLog.framework/Headers/bq_common/misc/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/MinSizeRel/BqLog.framework/Headers/bq_common/misc/assert.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/MinSizeRel/BqLog.framework/Headers/bq_common/platform/build_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/MinSizeRel/BqLog.framework/Headers/bq_common/platform/build_type.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/MinSizeRel/BqLog.framework/Headers/bq_common/platform/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/MinSizeRel/BqLog.framework/Headers/bq_common/platform/macros.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/MinSizeRel/BqLog.framework/Headers/bq_common/types/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/MinSizeRel/BqLog.framework/Headers/bq_common/types/array.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/MinSizeRel/BqLog.framework/Headers/bq_common/types/array_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/MinSizeRel/BqLog.framework/Headers/bq_common/types/array_def.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/MinSizeRel/BqLog.framework/Headers/bq_common/types/array_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/MinSizeRel/BqLog.framework/Headers/bq_common/types/array_impl.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/MinSizeRel/BqLog.framework/Headers/bq_common/types/basic_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/MinSizeRel/BqLog.framework/Headers/bq_common/types/basic_types.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/MinSizeRel/BqLog.framework/Headers/bq_common/types/hash_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/MinSizeRel/BqLog.framework/Headers/bq_common/types/hash_map.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/MinSizeRel/BqLog.framework/Headers/bq_common/types/hash_map_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/MinSizeRel/BqLog.framework/Headers/bq_common/types/hash_map_def.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/MinSizeRel/BqLog.framework/Headers/bq_common/types/hash_map_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/MinSizeRel/BqLog.framework/Headers/bq_common/types/hash_map_impl.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/MinSizeRel/BqLog.framework/Headers/bq_common/types/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/MinSizeRel/BqLog.framework/Headers/bq_common/types/string.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/MinSizeRel/BqLog.framework/Headers/bq_common/types/string_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/MinSizeRel/BqLog.framework/Headers/bq_common/types/string_impl.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/MinSizeRel/BqLog.framework/Headers/bq_common/types/type_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/MinSizeRel/BqLog.framework/Headers/bq_common/types/type_tools.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/MinSizeRel/BqLog.framework/Headers/bq_common/types/type_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/MinSizeRel/BqLog.framework/Headers/bq_common/types/type_traits.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/MinSizeRel/BqLog.framework/Headers/bq_log/adapters/adapter_unreal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/MinSizeRel/BqLog.framework/Headers/bq_log/adapters/adapter_unreal.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/MinSizeRel/BqLog.framework/Headers/bq_log/adapters/adapters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/MinSizeRel/BqLog.framework/Headers/bq_log/adapters/adapters.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/MinSizeRel/BqLog.framework/Headers/bq_log/bq_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/MinSizeRel/BqLog.framework/Headers/bq_log/bq_log.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/MinSizeRel/BqLog.framework/Headers/bq_log/misc/bq_log_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/MinSizeRel/BqLog.framework/Headers/bq_log/misc/bq_log_api.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/MinSizeRel/BqLog.framework/Headers/bq_log/misc/bq_log_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/MinSizeRel/BqLog.framework/Headers/bq_log/misc/bq_log_def.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/MinSizeRel/BqLog.framework/Headers/bq_log/misc/bq_log_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/MinSizeRel/BqLog.framework/Headers/bq_log/misc/bq_log_impl.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/MinSizeRel/BqLog.framework/Headers/bq_log/misc/bq_log_wrapper_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/MinSizeRel/BqLog.framework/Headers/bq_log/misc/bq_log_wrapper_tools.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/MinSizeRel/BqLog.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/MinSizeRel/BqLog.framework/Info.plist -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/RelWithDebInfo/BqLog.framework.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/RelWithDebInfo/BqLog.framework.dSYM/Contents/Info.plist -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/RelWithDebInfo/BqLog.framework.dSYM/Contents/Resources/DWARF/BqLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/RelWithDebInfo/BqLog.framework.dSYM/Contents/Resources/DWARF/BqLog -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/RelWithDebInfo/BqLog.framework/BqLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/RelWithDebInfo/BqLog.framework/BqLog -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/RelWithDebInfo/BqLog.framework/Headers/bq_common/misc/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/RelWithDebInfo/BqLog.framework/Headers/bq_common/misc/assert.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/RelWithDebInfo/BqLog.framework/Headers/bq_common/platform/build_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/RelWithDebInfo/BqLog.framework/Headers/bq_common/platform/build_type.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/RelWithDebInfo/BqLog.framework/Headers/bq_common/platform/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/RelWithDebInfo/BqLog.framework/Headers/bq_common/platform/macros.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/RelWithDebInfo/BqLog.framework/Headers/bq_common/types/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/RelWithDebInfo/BqLog.framework/Headers/bq_common/types/array.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/RelWithDebInfo/BqLog.framework/Headers/bq_common/types/array_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/RelWithDebInfo/BqLog.framework/Headers/bq_common/types/array_def.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/RelWithDebInfo/BqLog.framework/Headers/bq_common/types/array_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/RelWithDebInfo/BqLog.framework/Headers/bq_common/types/array_impl.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/RelWithDebInfo/BqLog.framework/Headers/bq_common/types/basic_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/RelWithDebInfo/BqLog.framework/Headers/bq_common/types/basic_types.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/RelWithDebInfo/BqLog.framework/Headers/bq_common/types/hash_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/RelWithDebInfo/BqLog.framework/Headers/bq_common/types/hash_map.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/RelWithDebInfo/BqLog.framework/Headers/bq_common/types/hash_map_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/RelWithDebInfo/BqLog.framework/Headers/bq_common/types/hash_map_def.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/RelWithDebInfo/BqLog.framework/Headers/bq_common/types/hash_map_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/RelWithDebInfo/BqLog.framework/Headers/bq_common/types/hash_map_impl.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/RelWithDebInfo/BqLog.framework/Headers/bq_common/types/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/RelWithDebInfo/BqLog.framework/Headers/bq_common/types/string.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/RelWithDebInfo/BqLog.framework/Headers/bq_common/types/string_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/RelWithDebInfo/BqLog.framework/Headers/bq_common/types/string_impl.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/RelWithDebInfo/BqLog.framework/Headers/bq_common/types/type_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/RelWithDebInfo/BqLog.framework/Headers/bq_common/types/type_tools.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/RelWithDebInfo/BqLog.framework/Headers/bq_common/types/type_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/RelWithDebInfo/BqLog.framework/Headers/bq_common/types/type_traits.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/RelWithDebInfo/BqLog.framework/Headers/bq_log/adapters/adapter_unreal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/RelWithDebInfo/BqLog.framework/Headers/bq_log/adapters/adapter_unreal.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/RelWithDebInfo/BqLog.framework/Headers/bq_log/adapters/adapters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/RelWithDebInfo/BqLog.framework/Headers/bq_log/adapters/adapters.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/RelWithDebInfo/BqLog.framework/Headers/bq_log/bq_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/RelWithDebInfo/BqLog.framework/Headers/bq_log/bq_log.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/RelWithDebInfo/BqLog.framework/Headers/bq_log/misc/bq_log_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/RelWithDebInfo/BqLog.framework/Headers/bq_log/misc/bq_log_api.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/RelWithDebInfo/BqLog.framework/Headers/bq_log/misc/bq_log_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/RelWithDebInfo/BqLog.framework/Headers/bq_log/misc/bq_log_def.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/RelWithDebInfo/BqLog.framework/Headers/bq_log/misc/bq_log_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/RelWithDebInfo/BqLog.framework/Headers/bq_log/misc/bq_log_impl.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/RelWithDebInfo/BqLog.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/RelWithDebInfo/BqLog.framework/Info.plist -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/Release/BqLog.framework/BqLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/Release/BqLog.framework/BqLog -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/Release/BqLog.framework/Headers/bq_common/bq_common_public_include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/Release/BqLog.framework/Headers/bq_common/bq_common_public_include.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/Release/BqLog.framework/Headers/bq_common/misc/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/Release/BqLog.framework/Headers/bq_common/misc/assert.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/Release/BqLog.framework/Headers/bq_common/platform/build_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/Release/BqLog.framework/Headers/bq_common/platform/build_type.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/Release/BqLog.framework/Headers/bq_common/platform/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/Release/BqLog.framework/Headers/bq_common/platform/macros.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/Release/BqLog.framework/Headers/bq_common/types/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/Release/BqLog.framework/Headers/bq_common/types/array.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/Release/BqLog.framework/Headers/bq_common/types/array_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/Release/BqLog.framework/Headers/bq_common/types/array_def.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/Release/BqLog.framework/Headers/bq_common/types/array_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/Release/BqLog.framework/Headers/bq_common/types/array_impl.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/Release/BqLog.framework/Headers/bq_common/types/basic_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/Release/BqLog.framework/Headers/bq_common/types/basic_types.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/Release/BqLog.framework/Headers/bq_common/types/hash_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/Release/BqLog.framework/Headers/bq_common/types/hash_map.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/Release/BqLog.framework/Headers/bq_common/types/hash_map_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/Release/BqLog.framework/Headers/bq_common/types/hash_map_def.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/Release/BqLog.framework/Headers/bq_common/types/hash_map_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/Release/BqLog.framework/Headers/bq_common/types/hash_map_impl.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/Release/BqLog.framework/Headers/bq_common/types/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/Release/BqLog.framework/Headers/bq_common/types/string.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/Release/BqLog.framework/Headers/bq_common/types/string_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/Release/BqLog.framework/Headers/bq_common/types/string_impl.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/Release/BqLog.framework/Headers/bq_common/types/type_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/Release/BqLog.framework/Headers/bq_common/types/type_tools.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/Release/BqLog.framework/Headers/bq_common/types/type_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/Release/BqLog.framework/Headers/bq_common/types/type_traits.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/Release/BqLog.framework/Headers/bq_log/adapters/adapter_unreal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/Release/BqLog.framework/Headers/bq_log/adapters/adapter_unreal.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/Release/BqLog.framework/Headers/bq_log/adapters/adapters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/Release/BqLog.framework/Headers/bq_log/adapters/adapters.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/Release/BqLog.framework/Headers/bq_log/bq_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/Release/BqLog.framework/Headers/bq_log/bq_log.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/Release/BqLog.framework/Headers/bq_log/misc/bq_log_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/Release/BqLog.framework/Headers/bq_log/misc/bq_log_api.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/Release/BqLog.framework/Headers/bq_log/misc/bq_log_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/Release/BqLog.framework/Headers/bq_log/misc/bq_log_def.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/Release/BqLog.framework/Headers/bq_log/misc/bq_log_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/Release/BqLog.framework/Headers/bq_log/misc/bq_log_impl.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/Release/BqLog.framework/Headers/bq_log/misc/bq_log_wrapper_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/Release/BqLog.framework/Headers/bq_log/misc/bq_log_wrapper_tools.h -------------------------------------------------------------------------------- /dist/dynamic_lib/ios/Release/BqLog.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/ios/Release/BqLog.framework/Info.plist -------------------------------------------------------------------------------- /dist/dynamic_lib/linux32/Debug/libBqLog.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/linux32/Debug/libBqLog.a -------------------------------------------------------------------------------- /dist/dynamic_lib/linux32/Debug/libBqLog.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/linux32/Debug/libBqLog.so -------------------------------------------------------------------------------- /dist/dynamic_lib/linux32/MinSizeRel/libBqLog.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/linux32/MinSizeRel/libBqLog.a -------------------------------------------------------------------------------- /dist/dynamic_lib/linux32/MinSizeRel/libBqLog.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/linux32/MinSizeRel/libBqLog.so -------------------------------------------------------------------------------- /dist/dynamic_lib/linux32/RelWithDebInfo/libBqLog.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/linux32/RelWithDebInfo/libBqLog.a -------------------------------------------------------------------------------- /dist/dynamic_lib/linux32/RelWithDebInfo/libBqLog.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/linux32/RelWithDebInfo/libBqLog.so -------------------------------------------------------------------------------- /dist/dynamic_lib/linux32/Release/libBqLog.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/linux32/Release/libBqLog.a -------------------------------------------------------------------------------- /dist/dynamic_lib/linux32/Release/libBqLog.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/linux32/Release/libBqLog.so -------------------------------------------------------------------------------- /dist/dynamic_lib/linux64/Debug/libBqLog.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/linux64/Debug/libBqLog.so -------------------------------------------------------------------------------- /dist/dynamic_lib/linux64/MinSizeRel/libBqLog.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/linux64/MinSizeRel/libBqLog.so -------------------------------------------------------------------------------- /dist/dynamic_lib/linux64/RelWithDebInfo/libBqLog.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/linux64/RelWithDebInfo/libBqLog.so -------------------------------------------------------------------------------- /dist/dynamic_lib/linux64/Release/libBqLog.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/linux64/Release/libBqLog.so -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Debug/BqLog.framework/BqLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Debug/BqLog.framework/BqLog -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Debug/BqLog.framework/Headers/bq_common/bq_common_public_include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Debug/BqLog.framework/Headers/bq_common/bq_common_public_include.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Debug/BqLog.framework/Headers/bq_common/misc/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Debug/BqLog.framework/Headers/bq_common/misc/assert.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Debug/BqLog.framework/Headers/bq_common/platform/build_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Debug/BqLog.framework/Headers/bq_common/platform/build_type.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Debug/BqLog.framework/Headers/bq_common/platform/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Debug/BqLog.framework/Headers/bq_common/platform/macros.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Debug/BqLog.framework/Headers/bq_common/types/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Debug/BqLog.framework/Headers/bq_common/types/array.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Debug/BqLog.framework/Headers/bq_common/types/array_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Debug/BqLog.framework/Headers/bq_common/types/array_def.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Debug/BqLog.framework/Headers/bq_common/types/array_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Debug/BqLog.framework/Headers/bq_common/types/array_impl.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Debug/BqLog.framework/Headers/bq_common/types/basic_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Debug/BqLog.framework/Headers/bq_common/types/basic_types.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Debug/BqLog.framework/Headers/bq_common/types/hash_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Debug/BqLog.framework/Headers/bq_common/types/hash_map.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Debug/BqLog.framework/Headers/bq_common/types/hash_map_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Debug/BqLog.framework/Headers/bq_common/types/hash_map_def.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Debug/BqLog.framework/Headers/bq_common/types/hash_map_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Debug/BqLog.framework/Headers/bq_common/types/hash_map_impl.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Debug/BqLog.framework/Headers/bq_common/types/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Debug/BqLog.framework/Headers/bq_common/types/string.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Debug/BqLog.framework/Headers/bq_common/types/string_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Debug/BqLog.framework/Headers/bq_common/types/string_impl.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Debug/BqLog.framework/Headers/bq_common/types/type_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Debug/BqLog.framework/Headers/bq_common/types/type_tools.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Debug/BqLog.framework/Headers/bq_common/types/type_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Debug/BqLog.framework/Headers/bq_common/types/type_traits.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Debug/BqLog.framework/Headers/bq_log/adapters/adapter_unreal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Debug/BqLog.framework/Headers/bq_log/adapters/adapter_unreal.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Debug/BqLog.framework/Headers/bq_log/adapters/adapters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Debug/BqLog.framework/Headers/bq_log/adapters/adapters.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Debug/BqLog.framework/Headers/bq_log/bq_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Debug/BqLog.framework/Headers/bq_log/bq_log.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Debug/BqLog.framework/Headers/bq_log/misc/bq_log_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Debug/BqLog.framework/Headers/bq_log/misc/bq_log_api.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Debug/BqLog.framework/Headers/bq_log/misc/bq_log_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Debug/BqLog.framework/Headers/bq_log/misc/bq_log_def.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Debug/BqLog.framework/Headers/bq_log/misc/bq_log_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Debug/BqLog.framework/Headers/bq_log/misc/bq_log_impl.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Debug/BqLog.framework/Headers/bq_log/misc/bq_log_wrapper_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Debug/BqLog.framework/Headers/bq_log/misc/bq_log_wrapper_tools.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Debug/BqLog.framework/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Debug/BqLog.framework/Resources/Info.plist -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Debug/BqLog.framework/Versions/1.0.0/BqLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Debug/BqLog.framework/Versions/1.0.0/BqLog -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Debug/BqLog.framework/Versions/1.0.0/Headers/bq_common/misc/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Debug/BqLog.framework/Versions/1.0.0/Headers/bq_common/misc/assert.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Debug/BqLog.framework/Versions/1.0.0/Headers/bq_common/types/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Debug/BqLog.framework/Versions/1.0.0/Headers/bq_common/types/array.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Debug/BqLog.framework/Versions/1.0.0/Headers/bq_common/types/hash_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Debug/BqLog.framework/Versions/1.0.0/Headers/bq_common/types/hash_map.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Debug/BqLog.framework/Versions/1.0.0/Headers/bq_common/types/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Debug/BqLog.framework/Versions/1.0.0/Headers/bq_common/types/string.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Debug/BqLog.framework/Versions/1.0.0/Headers/bq_log/adapters/adapters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Debug/BqLog.framework/Versions/1.0.0/Headers/bq_log/adapters/adapters.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Debug/BqLog.framework/Versions/1.0.0/Headers/bq_log/bq_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Debug/BqLog.framework/Versions/1.0.0/Headers/bq_log/bq_log.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Debug/BqLog.framework/Versions/1.0.0/Headers/bq_log/misc/bq_log_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Debug/BqLog.framework/Versions/1.0.0/Headers/bq_log/misc/bq_log_api.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Debug/BqLog.framework/Versions/1.0.0/Headers/bq_log/misc/bq_log_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Debug/BqLog.framework/Versions/1.0.0/Headers/bq_log/misc/bq_log_def.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Debug/BqLog.framework/Versions/1.0.0/Headers/bq_log/misc/bq_log_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Debug/BqLog.framework/Versions/1.0.0/Headers/bq_log/misc/bq_log_impl.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Debug/BqLog.framework/Versions/1.0.0/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Debug/BqLog.framework/Versions/1.0.0/Resources/Info.plist -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Debug/BqLog.framework/Versions/1.0.0/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Debug/BqLog.framework/Versions/1.0.0/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Debug/BqLog.framework/Versions/Current/BqLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Debug/BqLog.framework/Versions/Current/BqLog -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Debug/BqLog.framework/Versions/Current/Headers/bq_common/misc/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Debug/BqLog.framework/Versions/Current/Headers/bq_common/misc/assert.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Debug/BqLog.framework/Versions/Current/Headers/bq_common/types/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Debug/BqLog.framework/Versions/Current/Headers/bq_common/types/array.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Debug/BqLog.framework/Versions/Current/Headers/bq_common/types/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Debug/BqLog.framework/Versions/Current/Headers/bq_common/types/string.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Debug/BqLog.framework/Versions/Current/Headers/bq_log/bq_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Debug/BqLog.framework/Versions/Current/Headers/bq_log/bq_log.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Debug/BqLog.framework/Versions/Current/Headers/bq_log/misc/bq_log_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Debug/BqLog.framework/Versions/Current/Headers/bq_log/misc/bq_log_api.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Debug/BqLog.framework/Versions/Current/Headers/bq_log/misc/bq_log_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Debug/BqLog.framework/Versions/Current/Headers/bq_log/misc/bq_log_def.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Debug/BqLog.framework/Versions/Current/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Debug/BqLog.framework/Versions/Current/Resources/Info.plist -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Debug/BqLog.framework/Versions/Current/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Debug/BqLog.framework/Versions/Current/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Debug/libBqLog.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Debug/libBqLog.dylib -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/MinSizeRel/BqLog.framework/BqLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/MinSizeRel/BqLog.framework/BqLog -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_common/bq_common_public_include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_common/bq_common_public_include.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_common/misc/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_common/misc/assert.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_common/platform/build_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_common/platform/build_type.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_common/platform/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_common/platform/macros.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_common/types/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_common/types/array.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_common/types/array_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_common/types/array_def.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_common/types/array_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_common/types/array_impl.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_common/types/basic_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_common/types/basic_types.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_common/types/hash_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_common/types/hash_map.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_common/types/hash_map_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_common/types/hash_map_def.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_common/types/hash_map_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_common/types/hash_map_impl.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_common/types/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_common/types/string.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_common/types/string_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_common/types/string_impl.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_common/types/type_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_common/types/type_tools.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_common/types/type_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_common/types/type_traits.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_log/adapters/adapter_unreal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_log/adapters/adapter_unreal.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_log/adapters/adapters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_log/adapters/adapters.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_log/bq_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_log/bq_log.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_log/misc/bq_log_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_log/misc/bq_log_api.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_log/misc/bq_log_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_log/misc/bq_log_def.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_log/misc/bq_log_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_log/misc/bq_log_impl.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_log/misc/bq_log_wrapper_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_log/misc/bq_log_wrapper_tools.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/MinSizeRel/BqLog.framework/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/MinSizeRel/BqLog.framework/Resources/Info.plist -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/MinSizeRel/BqLog.framework/Versions/1.0.0/BqLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/MinSizeRel/BqLog.framework/Versions/1.0.0/BqLog -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/MinSizeRel/BqLog.framework/Versions/1.0.0/Headers/bq_log/bq_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/MinSizeRel/BqLog.framework/Versions/1.0.0/Headers/bq_log/bq_log.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/MinSizeRel/BqLog.framework/Versions/1.0.0/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/MinSizeRel/BqLog.framework/Versions/1.0.0/Resources/Info.plist -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/MinSizeRel/BqLog.framework/Versions/1.0.0/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/MinSizeRel/BqLog.framework/Versions/1.0.0/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/MinSizeRel/BqLog.framework/Versions/Current/BqLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/MinSizeRel/BqLog.framework/Versions/Current/BqLog -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/MinSizeRel/BqLog.framework/Versions/Current/Headers/bq_log/bq_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/MinSizeRel/BqLog.framework/Versions/Current/Headers/bq_log/bq_log.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/MinSizeRel/BqLog.framework/Versions/Current/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/MinSizeRel/BqLog.framework/Versions/Current/Resources/Info.plist -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/MinSizeRel/libBqLog.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/MinSizeRel/libBqLog.dylib -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/RelWithDebInfo/BqLog.framework/BqLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/RelWithDebInfo/BqLog.framework/BqLog -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_common/misc/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_common/misc/assert.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_common/platform/build_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_common/platform/build_type.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_common/platform/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_common/platform/macros.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_common/types/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_common/types/array.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_common/types/array_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_common/types/array_def.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_common/types/array_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_common/types/array_impl.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_common/types/basic_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_common/types/basic_types.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_common/types/hash_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_common/types/hash_map.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_common/types/hash_map_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_common/types/hash_map_def.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_common/types/hash_map_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_common/types/hash_map_impl.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_common/types/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_common/types/string.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_common/types/string_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_common/types/string_impl.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_common/types/type_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_common/types/type_tools.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_common/types/type_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_common/types/type_traits.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_log/adapters/adapter_unreal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_log/adapters/adapter_unreal.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_log/adapters/adapters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_log/adapters/adapters.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_log/bq_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_log/bq_log.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_log/misc/bq_log_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_log/misc/bq_log_api.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_log/misc/bq_log_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_log/misc/bq_log_def.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_log/misc/bq_log_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_log/misc/bq_log_impl.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/RelWithDebInfo/BqLog.framework/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/RelWithDebInfo/BqLog.framework/Resources/Info.plist -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/RelWithDebInfo/BqLog.framework/Versions/1.0.0/BqLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/RelWithDebInfo/BqLog.framework/Versions/1.0.0/BqLog -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/RelWithDebInfo/BqLog.framework/Versions/1.0.0/Headers/bq_log/bq_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/RelWithDebInfo/BqLog.framework/Versions/1.0.0/Headers/bq_log/bq_log.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/RelWithDebInfo/BqLog.framework/Versions/1.0.0/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/RelWithDebInfo/BqLog.framework/Versions/1.0.0/Resources/Info.plist -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/RelWithDebInfo/BqLog.framework/Versions/Current/BqLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/RelWithDebInfo/BqLog.framework/Versions/Current/BqLog -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/RelWithDebInfo/BqLog.framework/Versions/Current/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/RelWithDebInfo/BqLog.framework/Versions/Current/Resources/Info.plist -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/RelWithDebInfo/libBqLog.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/RelWithDebInfo/libBqLog.dylib -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Release/BqLog.framework/BqLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Release/BqLog.framework/BqLog -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Release/BqLog.framework/Headers/bq_common/bq_common_public_include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Release/BqLog.framework/Headers/bq_common/bq_common_public_include.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Release/BqLog.framework/Headers/bq_common/misc/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Release/BqLog.framework/Headers/bq_common/misc/assert.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Release/BqLog.framework/Headers/bq_common/platform/build_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Release/BqLog.framework/Headers/bq_common/platform/build_type.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Release/BqLog.framework/Headers/bq_common/platform/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Release/BqLog.framework/Headers/bq_common/platform/macros.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Release/BqLog.framework/Headers/bq_common/types/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Release/BqLog.framework/Headers/bq_common/types/array.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Release/BqLog.framework/Headers/bq_common/types/array_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Release/BqLog.framework/Headers/bq_common/types/array_def.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Release/BqLog.framework/Headers/bq_common/types/array_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Release/BqLog.framework/Headers/bq_common/types/array_impl.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Release/BqLog.framework/Headers/bq_common/types/basic_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Release/BqLog.framework/Headers/bq_common/types/basic_types.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Release/BqLog.framework/Headers/bq_common/types/hash_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Release/BqLog.framework/Headers/bq_common/types/hash_map.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Release/BqLog.framework/Headers/bq_common/types/hash_map_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Release/BqLog.framework/Headers/bq_common/types/hash_map_def.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Release/BqLog.framework/Headers/bq_common/types/hash_map_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Release/BqLog.framework/Headers/bq_common/types/hash_map_impl.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Release/BqLog.framework/Headers/bq_common/types/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Release/BqLog.framework/Headers/bq_common/types/string.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Release/BqLog.framework/Headers/bq_common/types/string_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Release/BqLog.framework/Headers/bq_common/types/string_impl.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Release/BqLog.framework/Headers/bq_common/types/type_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Release/BqLog.framework/Headers/bq_common/types/type_tools.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Release/BqLog.framework/Headers/bq_common/types/type_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Release/BqLog.framework/Headers/bq_common/types/type_traits.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Release/BqLog.framework/Headers/bq_log/adapters/adapter_unreal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Release/BqLog.framework/Headers/bq_log/adapters/adapter_unreal.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Release/BqLog.framework/Headers/bq_log/adapters/adapters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Release/BqLog.framework/Headers/bq_log/adapters/adapters.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Release/BqLog.framework/Headers/bq_log/bq_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Release/BqLog.framework/Headers/bq_log/bq_log.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Release/BqLog.framework/Headers/bq_log/misc/bq_log_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Release/BqLog.framework/Headers/bq_log/misc/bq_log_api.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Release/BqLog.framework/Headers/bq_log/misc/bq_log_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Release/BqLog.framework/Headers/bq_log/misc/bq_log_def.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Release/BqLog.framework/Headers/bq_log/misc/bq_log_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Release/BqLog.framework/Headers/bq_log/misc/bq_log_impl.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Release/BqLog.framework/Headers/bq_log/misc/bq_log_wrapper_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Release/BqLog.framework/Headers/bq_log/misc/bq_log_wrapper_tools.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Release/BqLog.framework/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Release/BqLog.framework/Resources/Info.plist -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Release/BqLog.framework/Versions/1.0.0/BqLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Release/BqLog.framework/Versions/1.0.0/BqLog -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Release/BqLog.framework/Versions/1.0.0/Headers/bq_log/bq_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Release/BqLog.framework/Versions/1.0.0/Headers/bq_log/bq_log.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Release/BqLog.framework/Versions/1.0.0/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Release/BqLog.framework/Versions/1.0.0/Resources/Info.plist -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Release/BqLog.framework/Versions/1.0.0/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Release/BqLog.framework/Versions/1.0.0/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Release/BqLog.framework/Versions/Current/BqLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Release/BqLog.framework/Versions/Current/BqLog -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Release/BqLog.framework/Versions/Current/Headers/bq_log/bq_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Release/BqLog.framework/Versions/Current/Headers/bq_log/bq_log.h -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Release/BqLog.framework/Versions/Current/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Release/BqLog.framework/Versions/Current/Resources/Info.plist -------------------------------------------------------------------------------- /dist/dynamic_lib/mac/Release/libBqLog.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/mac/Release/libBqLog.dylib -------------------------------------------------------------------------------- /dist/dynamic_lib/unix32/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/unix32/README.MD -------------------------------------------------------------------------------- /dist/dynamic_lib/unix64/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/unix64/README.MD -------------------------------------------------------------------------------- /dist/dynamic_lib/win64/Debug/BqLog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/win64/Debug/BqLog.dll -------------------------------------------------------------------------------- /dist/dynamic_lib/win64/Debug/BqLog.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/win64/Debug/BqLog.lib -------------------------------------------------------------------------------- /dist/dynamic_lib/win64/Debug/BqLog.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/win64/Debug/BqLog.pdb -------------------------------------------------------------------------------- /dist/dynamic_lib/win64/MinSizeRel/BqLog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/win64/MinSizeRel/BqLog.dll -------------------------------------------------------------------------------- /dist/dynamic_lib/win64/MinSizeRel/BqLog.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/win64/MinSizeRel/BqLog.lib -------------------------------------------------------------------------------- /dist/dynamic_lib/win64/RelWithDebInfo/BqLog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/win64/RelWithDebInfo/BqLog.dll -------------------------------------------------------------------------------- /dist/dynamic_lib/win64/RelWithDebInfo/BqLog.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/win64/RelWithDebInfo/BqLog.lib -------------------------------------------------------------------------------- /dist/dynamic_lib/win64/RelWithDebInfo/BqLog.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/win64/RelWithDebInfo/BqLog.pdb -------------------------------------------------------------------------------- /dist/dynamic_lib/win64/Release/BqLog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/win64/Release/BqLog.dll -------------------------------------------------------------------------------- /dist/dynamic_lib/win64/Release/BqLog.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/dynamic_lib/win64/Release/BqLog.lib -------------------------------------------------------------------------------- /dist/static_lib/include/bq_common/bq_common_public_include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/include/bq_common/bq_common_public_include.h -------------------------------------------------------------------------------- /dist/static_lib/include/bq_common/misc/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/include/bq_common/misc/assert.h -------------------------------------------------------------------------------- /dist/static_lib/include/bq_common/platform/build_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/include/bq_common/platform/build_type.h -------------------------------------------------------------------------------- /dist/static_lib/include/bq_common/platform/build_type_dynamic_lib_import.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/include/bq_common/platform/build_type_dynamic_lib_import.h -------------------------------------------------------------------------------- /dist/static_lib/include/bq_common/platform/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/include/bq_common/platform/macros.h -------------------------------------------------------------------------------- /dist/static_lib/include/bq_common/types/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/include/bq_common/types/array.h -------------------------------------------------------------------------------- /dist/static_lib/include/bq_common/types/array_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/include/bq_common/types/array_def.h -------------------------------------------------------------------------------- /dist/static_lib/include/bq_common/types/array_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/include/bq_common/types/array_impl.h -------------------------------------------------------------------------------- /dist/static_lib/include/bq_common/types/basic_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/include/bq_common/types/basic_types.h -------------------------------------------------------------------------------- /dist/static_lib/include/bq_common/types/hash_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/include/bq_common/types/hash_map.h -------------------------------------------------------------------------------- /dist/static_lib/include/bq_common/types/hash_map_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/include/bq_common/types/hash_map_def.h -------------------------------------------------------------------------------- /dist/static_lib/include/bq_common/types/hash_map_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/include/bq_common/types/hash_map_impl.h -------------------------------------------------------------------------------- /dist/static_lib/include/bq_common/types/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/include/bq_common/types/string.h -------------------------------------------------------------------------------- /dist/static_lib/include/bq_common/types/string_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/include/bq_common/types/string_impl.h -------------------------------------------------------------------------------- /dist/static_lib/include/bq_common/types/type_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/include/bq_common/types/type_tools.h -------------------------------------------------------------------------------- /dist/static_lib/include/bq_common/types/type_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/include/bq_common/types/type_traits.h -------------------------------------------------------------------------------- /dist/static_lib/include/bq_log/adapters/adapter_unreal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/include/bq_log/adapters/adapter_unreal.h -------------------------------------------------------------------------------- /dist/static_lib/include/bq_log/adapters/adapters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/include/bq_log/adapters/adapters.h -------------------------------------------------------------------------------- /dist/static_lib/include/bq_log/bq_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/include/bq_log/bq_log.h -------------------------------------------------------------------------------- /dist/static_lib/include/bq_log/misc/bq_log_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/include/bq_log/misc/bq_log_api.h -------------------------------------------------------------------------------- /dist/static_lib/include/bq_log/misc/bq_log_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/include/bq_log/misc/bq_log_def.h -------------------------------------------------------------------------------- /dist/static_lib/include/bq_log/misc/bq_log_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/include/bq_log/misc/bq_log_impl.h -------------------------------------------------------------------------------- /dist/static_lib/include/bq_log/misc/bq_log_wrapper_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/include/bq_log/misc/bq_log_wrapper_tools.h -------------------------------------------------------------------------------- /dist/static_lib/linux32/Debug/libBqLog.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/linux32/Debug/libBqLog.a -------------------------------------------------------------------------------- /dist/static_lib/linux32/MinSizeRel/libBqLog.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/linux32/MinSizeRel/libBqLog.a -------------------------------------------------------------------------------- /dist/static_lib/linux32/RelWithDebInfo/libBqLog.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/linux32/RelWithDebInfo/libBqLog.a -------------------------------------------------------------------------------- /dist/static_lib/linux32/Release/libBqLog.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/linux32/Release/libBqLog.a -------------------------------------------------------------------------------- /dist/static_lib/linux64/Debug/libBqLog.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/linux64/Debug/libBqLog.a -------------------------------------------------------------------------------- /dist/static_lib/linux64/MinSizeRel/libBqLog.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/linux64/MinSizeRel/libBqLog.a -------------------------------------------------------------------------------- /dist/static_lib/linux64/RelWithDebInfo/libBqLog.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/linux64/RelWithDebInfo/libBqLog.a -------------------------------------------------------------------------------- /dist/static_lib/linux64/Release/libBqLog.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/linux64/Release/libBqLog.a -------------------------------------------------------------------------------- /dist/static_lib/mac/Debug/BqLog.framework/BqLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Debug/BqLog.framework/BqLog -------------------------------------------------------------------------------- /dist/static_lib/mac/Debug/BqLog.framework/Headers/bq_common/bq_common_public_include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Debug/BqLog.framework/Headers/bq_common/bq_common_public_include.h -------------------------------------------------------------------------------- /dist/static_lib/mac/Debug/BqLog.framework/Headers/bq_common/misc/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Debug/BqLog.framework/Headers/bq_common/misc/assert.h -------------------------------------------------------------------------------- /dist/static_lib/mac/Debug/BqLog.framework/Headers/bq_common/platform/build_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Debug/BqLog.framework/Headers/bq_common/platform/build_type.h -------------------------------------------------------------------------------- /dist/static_lib/mac/Debug/BqLog.framework/Headers/bq_common/platform/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Debug/BqLog.framework/Headers/bq_common/platform/macros.h -------------------------------------------------------------------------------- /dist/static_lib/mac/Debug/BqLog.framework/Headers/bq_common/types/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Debug/BqLog.framework/Headers/bq_common/types/array.h -------------------------------------------------------------------------------- /dist/static_lib/mac/Debug/BqLog.framework/Headers/bq_common/types/array_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Debug/BqLog.framework/Headers/bq_common/types/array_def.h -------------------------------------------------------------------------------- /dist/static_lib/mac/Debug/BqLog.framework/Headers/bq_common/types/array_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Debug/BqLog.framework/Headers/bq_common/types/array_impl.h -------------------------------------------------------------------------------- /dist/static_lib/mac/Debug/BqLog.framework/Headers/bq_common/types/basic_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Debug/BqLog.framework/Headers/bq_common/types/basic_types.h -------------------------------------------------------------------------------- /dist/static_lib/mac/Debug/BqLog.framework/Headers/bq_common/types/hash_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Debug/BqLog.framework/Headers/bq_common/types/hash_map.h -------------------------------------------------------------------------------- /dist/static_lib/mac/Debug/BqLog.framework/Headers/bq_common/types/hash_map_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Debug/BqLog.framework/Headers/bq_common/types/hash_map_def.h -------------------------------------------------------------------------------- /dist/static_lib/mac/Debug/BqLog.framework/Headers/bq_common/types/hash_map_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Debug/BqLog.framework/Headers/bq_common/types/hash_map_impl.h -------------------------------------------------------------------------------- /dist/static_lib/mac/Debug/BqLog.framework/Headers/bq_common/types/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Debug/BqLog.framework/Headers/bq_common/types/string.h -------------------------------------------------------------------------------- /dist/static_lib/mac/Debug/BqLog.framework/Headers/bq_common/types/string_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Debug/BqLog.framework/Headers/bq_common/types/string_impl.h -------------------------------------------------------------------------------- /dist/static_lib/mac/Debug/BqLog.framework/Headers/bq_common/types/type_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Debug/BqLog.framework/Headers/bq_common/types/type_tools.h -------------------------------------------------------------------------------- /dist/static_lib/mac/Debug/BqLog.framework/Headers/bq_common/types/type_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Debug/BqLog.framework/Headers/bq_common/types/type_traits.h -------------------------------------------------------------------------------- /dist/static_lib/mac/Debug/BqLog.framework/Headers/bq_log/adapters/adapter_unreal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Debug/BqLog.framework/Headers/bq_log/adapters/adapter_unreal.h -------------------------------------------------------------------------------- /dist/static_lib/mac/Debug/BqLog.framework/Headers/bq_log/adapters/adapters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Debug/BqLog.framework/Headers/bq_log/adapters/adapters.h -------------------------------------------------------------------------------- /dist/static_lib/mac/Debug/BqLog.framework/Headers/bq_log/bq_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Debug/BqLog.framework/Headers/bq_log/bq_log.h -------------------------------------------------------------------------------- /dist/static_lib/mac/Debug/BqLog.framework/Headers/bq_log/misc/bq_log_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Debug/BqLog.framework/Headers/bq_log/misc/bq_log_api.h -------------------------------------------------------------------------------- /dist/static_lib/mac/Debug/BqLog.framework/Headers/bq_log/misc/bq_log_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Debug/BqLog.framework/Headers/bq_log/misc/bq_log_def.h -------------------------------------------------------------------------------- /dist/static_lib/mac/Debug/BqLog.framework/Headers/bq_log/misc/bq_log_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Debug/BqLog.framework/Headers/bq_log/misc/bq_log_impl.h -------------------------------------------------------------------------------- /dist/static_lib/mac/Debug/BqLog.framework/Headers/bq_log/misc/bq_log_wrapper_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Debug/BqLog.framework/Headers/bq_log/misc/bq_log_wrapper_tools.h -------------------------------------------------------------------------------- /dist/static_lib/mac/Debug/BqLog.framework/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Debug/BqLog.framework/Resources/Info.plist -------------------------------------------------------------------------------- /dist/static_lib/mac/Debug/BqLog.framework/Versions/1.0.0/BqLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Debug/BqLog.framework/Versions/1.0.0/BqLog -------------------------------------------------------------------------------- /dist/static_lib/mac/Debug/BqLog.framework/Versions/1.0.0/Headers/bq_common/misc/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Debug/BqLog.framework/Versions/1.0.0/Headers/bq_common/misc/assert.h -------------------------------------------------------------------------------- /dist/static_lib/mac/Debug/BqLog.framework/Versions/1.0.0/Headers/bq_common/types/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Debug/BqLog.framework/Versions/1.0.0/Headers/bq_common/types/array.h -------------------------------------------------------------------------------- /dist/static_lib/mac/Debug/BqLog.framework/Versions/1.0.0/Headers/bq_common/types/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Debug/BqLog.framework/Versions/1.0.0/Headers/bq_common/types/string.h -------------------------------------------------------------------------------- /dist/static_lib/mac/Debug/BqLog.framework/Versions/1.0.0/Headers/bq_log/bq_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Debug/BqLog.framework/Versions/1.0.0/Headers/bq_log/bq_log.h -------------------------------------------------------------------------------- /dist/static_lib/mac/Debug/BqLog.framework/Versions/1.0.0/Headers/bq_log/misc/bq_log_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Debug/BqLog.framework/Versions/1.0.0/Headers/bq_log/misc/bq_log_api.h -------------------------------------------------------------------------------- /dist/static_lib/mac/Debug/BqLog.framework/Versions/1.0.0/Headers/bq_log/misc/bq_log_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Debug/BqLog.framework/Versions/1.0.0/Headers/bq_log/misc/bq_log_def.h -------------------------------------------------------------------------------- /dist/static_lib/mac/Debug/BqLog.framework/Versions/1.0.0/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Debug/BqLog.framework/Versions/1.0.0/Resources/Info.plist -------------------------------------------------------------------------------- /dist/static_lib/mac/Debug/BqLog.framework/Versions/1.0.0/_CodeSignature/CodeDirectory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Debug/BqLog.framework/Versions/1.0.0/_CodeSignature/CodeDirectory -------------------------------------------------------------------------------- /dist/static_lib/mac/Debug/BqLog.framework/Versions/1.0.0/_CodeSignature/CodeRequirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Debug/BqLog.framework/Versions/1.0.0/_CodeSignature/CodeRequirements -------------------------------------------------------------------------------- /dist/static_lib/mac/Debug/BqLog.framework/Versions/1.0.0/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Debug/BqLog.framework/Versions/1.0.0/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /dist/static_lib/mac/Debug/BqLog.framework/Versions/1.0.0/_CodeSignature/CodeSignature: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static_lib/mac/Debug/BqLog.framework/Versions/Current/BqLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Debug/BqLog.framework/Versions/Current/BqLog -------------------------------------------------------------------------------- /dist/static_lib/mac/Debug/BqLog.framework/Versions/Current/Headers/bq_log/bq_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Debug/BqLog.framework/Versions/Current/Headers/bq_log/bq_log.h -------------------------------------------------------------------------------- /dist/static_lib/mac/Debug/BqLog.framework/Versions/Current/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Debug/BqLog.framework/Versions/Current/Resources/Info.plist -------------------------------------------------------------------------------- /dist/static_lib/mac/Debug/BqLog.framework/Versions/Current/_CodeSignature/CodeDirectory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Debug/BqLog.framework/Versions/Current/_CodeSignature/CodeDirectory -------------------------------------------------------------------------------- /dist/static_lib/mac/Debug/BqLog.framework/Versions/Current/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Debug/BqLog.framework/Versions/Current/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /dist/static_lib/mac/Debug/BqLog.framework/Versions/Current/_CodeSignature/CodeSignature: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static_lib/mac/Debug/libBqLog.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Debug/libBqLog.a -------------------------------------------------------------------------------- /dist/static_lib/mac/MinSizeRel/BqLog.framework/BqLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/MinSizeRel/BqLog.framework/BqLog -------------------------------------------------------------------------------- /dist/static_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_common/misc/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_common/misc/assert.h -------------------------------------------------------------------------------- /dist/static_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_common/platform/build_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_common/platform/build_type.h -------------------------------------------------------------------------------- /dist/static_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_common/platform/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_common/platform/macros.h -------------------------------------------------------------------------------- /dist/static_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_common/types/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_common/types/array.h -------------------------------------------------------------------------------- /dist/static_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_common/types/array_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_common/types/array_def.h -------------------------------------------------------------------------------- /dist/static_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_common/types/array_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_common/types/array_impl.h -------------------------------------------------------------------------------- /dist/static_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_common/types/basic_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_common/types/basic_types.h -------------------------------------------------------------------------------- /dist/static_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_common/types/hash_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_common/types/hash_map.h -------------------------------------------------------------------------------- /dist/static_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_common/types/hash_map_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_common/types/hash_map_def.h -------------------------------------------------------------------------------- /dist/static_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_common/types/hash_map_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_common/types/hash_map_impl.h -------------------------------------------------------------------------------- /dist/static_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_common/types/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_common/types/string.h -------------------------------------------------------------------------------- /dist/static_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_common/types/string_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_common/types/string_impl.h -------------------------------------------------------------------------------- /dist/static_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_common/types/type_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_common/types/type_tools.h -------------------------------------------------------------------------------- /dist/static_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_common/types/type_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_common/types/type_traits.h -------------------------------------------------------------------------------- /dist/static_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_log/adapters/adapter_unreal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_log/adapters/adapter_unreal.h -------------------------------------------------------------------------------- /dist/static_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_log/adapters/adapters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_log/adapters/adapters.h -------------------------------------------------------------------------------- /dist/static_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_log/bq_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_log/bq_log.h -------------------------------------------------------------------------------- /dist/static_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_log/misc/bq_log_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_log/misc/bq_log_api.h -------------------------------------------------------------------------------- /dist/static_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_log/misc/bq_log_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_log/misc/bq_log_def.h -------------------------------------------------------------------------------- /dist/static_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_log/misc/bq_log_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_log/misc/bq_log_impl.h -------------------------------------------------------------------------------- /dist/static_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_log/misc/bq_log_wrapper_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/MinSizeRel/BqLog.framework/Headers/bq_log/misc/bq_log_wrapper_tools.h -------------------------------------------------------------------------------- /dist/static_lib/mac/MinSizeRel/BqLog.framework/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/MinSizeRel/BqLog.framework/Resources/Info.plist -------------------------------------------------------------------------------- /dist/static_lib/mac/MinSizeRel/BqLog.framework/Versions/1.0.0/BqLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/MinSizeRel/BqLog.framework/Versions/1.0.0/BqLog -------------------------------------------------------------------------------- /dist/static_lib/mac/MinSizeRel/BqLog.framework/Versions/1.0.0/Headers/bq_log/bq_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/MinSizeRel/BqLog.framework/Versions/1.0.0/Headers/bq_log/bq_log.h -------------------------------------------------------------------------------- /dist/static_lib/mac/MinSizeRel/BqLog.framework/Versions/1.0.0/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/MinSizeRel/BqLog.framework/Versions/1.0.0/Resources/Info.plist -------------------------------------------------------------------------------- /dist/static_lib/mac/MinSizeRel/BqLog.framework/Versions/1.0.0/_CodeSignature/CodeSignature: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static_lib/mac/MinSizeRel/BqLog.framework/Versions/Current/BqLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/MinSizeRel/BqLog.framework/Versions/Current/BqLog -------------------------------------------------------------------------------- /dist/static_lib/mac/MinSizeRel/BqLog.framework/Versions/Current/Headers/bq_log/bq_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/MinSizeRel/BqLog.framework/Versions/Current/Headers/bq_log/bq_log.h -------------------------------------------------------------------------------- /dist/static_lib/mac/MinSizeRel/BqLog.framework/Versions/Current/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/MinSizeRel/BqLog.framework/Versions/Current/Resources/Info.plist -------------------------------------------------------------------------------- /dist/static_lib/mac/MinSizeRel/BqLog.framework/Versions/Current/_CodeSignature/CodeSignature: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static_lib/mac/MinSizeRel/libBqLog.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/MinSizeRel/libBqLog.a -------------------------------------------------------------------------------- /dist/static_lib/mac/RelWithDebInfo/BqLog.framework/BqLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/RelWithDebInfo/BqLog.framework/BqLog -------------------------------------------------------------------------------- /dist/static_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_common/misc/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_common/misc/assert.h -------------------------------------------------------------------------------- /dist/static_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_common/platform/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_common/platform/macros.h -------------------------------------------------------------------------------- /dist/static_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_common/types/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_common/types/array.h -------------------------------------------------------------------------------- /dist/static_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_common/types/array_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_common/types/array_def.h -------------------------------------------------------------------------------- /dist/static_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_common/types/array_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_common/types/array_impl.h -------------------------------------------------------------------------------- /dist/static_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_common/types/basic_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_common/types/basic_types.h -------------------------------------------------------------------------------- /dist/static_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_common/types/hash_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_common/types/hash_map.h -------------------------------------------------------------------------------- /dist/static_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_common/types/hash_map_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_common/types/hash_map_def.h -------------------------------------------------------------------------------- /dist/static_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_common/types/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_common/types/string.h -------------------------------------------------------------------------------- /dist/static_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_common/types/string_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_common/types/string_impl.h -------------------------------------------------------------------------------- /dist/static_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_common/types/type_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_common/types/type_tools.h -------------------------------------------------------------------------------- /dist/static_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_common/types/type_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_common/types/type_traits.h -------------------------------------------------------------------------------- /dist/static_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_log/adapters/adapters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_log/adapters/adapters.h -------------------------------------------------------------------------------- /dist/static_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_log/bq_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_log/bq_log.h -------------------------------------------------------------------------------- /dist/static_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_log/misc/bq_log_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_log/misc/bq_log_api.h -------------------------------------------------------------------------------- /dist/static_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_log/misc/bq_log_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_log/misc/bq_log_def.h -------------------------------------------------------------------------------- /dist/static_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_log/misc/bq_log_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/RelWithDebInfo/BqLog.framework/Headers/bq_log/misc/bq_log_impl.h -------------------------------------------------------------------------------- /dist/static_lib/mac/RelWithDebInfo/BqLog.framework/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/RelWithDebInfo/BqLog.framework/Resources/Info.plist -------------------------------------------------------------------------------- /dist/static_lib/mac/RelWithDebInfo/BqLog.framework/Versions/1.0.0/BqLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/RelWithDebInfo/BqLog.framework/Versions/1.0.0/BqLog -------------------------------------------------------------------------------- /dist/static_lib/mac/RelWithDebInfo/BqLog.framework/Versions/1.0.0/Headers/bq_log/bq_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/RelWithDebInfo/BqLog.framework/Versions/1.0.0/Headers/bq_log/bq_log.h -------------------------------------------------------------------------------- /dist/static_lib/mac/RelWithDebInfo/BqLog.framework/Versions/1.0.0/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/RelWithDebInfo/BqLog.framework/Versions/1.0.0/Resources/Info.plist -------------------------------------------------------------------------------- /dist/static_lib/mac/RelWithDebInfo/BqLog.framework/Versions/1.0.0/_CodeSignature/CodeSignature: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static_lib/mac/RelWithDebInfo/BqLog.framework/Versions/Current/BqLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/RelWithDebInfo/BqLog.framework/Versions/Current/BqLog -------------------------------------------------------------------------------- /dist/static_lib/mac/RelWithDebInfo/BqLog.framework/Versions/Current/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/RelWithDebInfo/BqLog.framework/Versions/Current/Resources/Info.plist -------------------------------------------------------------------------------- /dist/static_lib/mac/RelWithDebInfo/BqLog.framework/Versions/Current/_CodeSignature/CodeSignature: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static_lib/mac/RelWithDebInfo/libBqLog.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/RelWithDebInfo/libBqLog.a -------------------------------------------------------------------------------- /dist/static_lib/mac/Release/BqLog.framework/BqLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Release/BqLog.framework/BqLog -------------------------------------------------------------------------------- /dist/static_lib/mac/Release/BqLog.framework/Headers/bq_common/bq_common_public_include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Release/BqLog.framework/Headers/bq_common/bq_common_public_include.h -------------------------------------------------------------------------------- /dist/static_lib/mac/Release/BqLog.framework/Headers/bq_common/misc/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Release/BqLog.framework/Headers/bq_common/misc/assert.h -------------------------------------------------------------------------------- /dist/static_lib/mac/Release/BqLog.framework/Headers/bq_common/platform/build_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Release/BqLog.framework/Headers/bq_common/platform/build_type.h -------------------------------------------------------------------------------- /dist/static_lib/mac/Release/BqLog.framework/Headers/bq_common/platform/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Release/BqLog.framework/Headers/bq_common/platform/macros.h -------------------------------------------------------------------------------- /dist/static_lib/mac/Release/BqLog.framework/Headers/bq_common/types/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Release/BqLog.framework/Headers/bq_common/types/array.h -------------------------------------------------------------------------------- /dist/static_lib/mac/Release/BqLog.framework/Headers/bq_common/types/array_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Release/BqLog.framework/Headers/bq_common/types/array_def.h -------------------------------------------------------------------------------- /dist/static_lib/mac/Release/BqLog.framework/Headers/bq_common/types/array_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Release/BqLog.framework/Headers/bq_common/types/array_impl.h -------------------------------------------------------------------------------- /dist/static_lib/mac/Release/BqLog.framework/Headers/bq_common/types/basic_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Release/BqLog.framework/Headers/bq_common/types/basic_types.h -------------------------------------------------------------------------------- /dist/static_lib/mac/Release/BqLog.framework/Headers/bq_common/types/hash_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Release/BqLog.framework/Headers/bq_common/types/hash_map.h -------------------------------------------------------------------------------- /dist/static_lib/mac/Release/BqLog.framework/Headers/bq_common/types/hash_map_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Release/BqLog.framework/Headers/bq_common/types/hash_map_def.h -------------------------------------------------------------------------------- /dist/static_lib/mac/Release/BqLog.framework/Headers/bq_common/types/hash_map_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Release/BqLog.framework/Headers/bq_common/types/hash_map_impl.h -------------------------------------------------------------------------------- /dist/static_lib/mac/Release/BqLog.framework/Headers/bq_common/types/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Release/BqLog.framework/Headers/bq_common/types/string.h -------------------------------------------------------------------------------- /dist/static_lib/mac/Release/BqLog.framework/Headers/bq_common/types/string_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Release/BqLog.framework/Headers/bq_common/types/string_impl.h -------------------------------------------------------------------------------- /dist/static_lib/mac/Release/BqLog.framework/Headers/bq_common/types/type_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Release/BqLog.framework/Headers/bq_common/types/type_tools.h -------------------------------------------------------------------------------- /dist/static_lib/mac/Release/BqLog.framework/Headers/bq_common/types/type_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Release/BqLog.framework/Headers/bq_common/types/type_traits.h -------------------------------------------------------------------------------- /dist/static_lib/mac/Release/BqLog.framework/Headers/bq_log/adapters/adapter_unreal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Release/BqLog.framework/Headers/bq_log/adapters/adapter_unreal.h -------------------------------------------------------------------------------- /dist/static_lib/mac/Release/BqLog.framework/Headers/bq_log/adapters/adapters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Release/BqLog.framework/Headers/bq_log/adapters/adapters.h -------------------------------------------------------------------------------- /dist/static_lib/mac/Release/BqLog.framework/Headers/bq_log/bq_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Release/BqLog.framework/Headers/bq_log/bq_log.h -------------------------------------------------------------------------------- /dist/static_lib/mac/Release/BqLog.framework/Headers/bq_log/misc/bq_log_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Release/BqLog.framework/Headers/bq_log/misc/bq_log_api.h -------------------------------------------------------------------------------- /dist/static_lib/mac/Release/BqLog.framework/Headers/bq_log/misc/bq_log_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Release/BqLog.framework/Headers/bq_log/misc/bq_log_def.h -------------------------------------------------------------------------------- /dist/static_lib/mac/Release/BqLog.framework/Headers/bq_log/misc/bq_log_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Release/BqLog.framework/Headers/bq_log/misc/bq_log_impl.h -------------------------------------------------------------------------------- /dist/static_lib/mac/Release/BqLog.framework/Headers/bq_log/misc/bq_log_wrapper_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Release/BqLog.framework/Headers/bq_log/misc/bq_log_wrapper_tools.h -------------------------------------------------------------------------------- /dist/static_lib/mac/Release/BqLog.framework/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Release/BqLog.framework/Resources/Info.plist -------------------------------------------------------------------------------- /dist/static_lib/mac/Release/BqLog.framework/Versions/1.0.0/BqLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Release/BqLog.framework/Versions/1.0.0/BqLog -------------------------------------------------------------------------------- /dist/static_lib/mac/Release/BqLog.framework/Versions/1.0.0/Headers/bq_log/bq_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Release/BqLog.framework/Versions/1.0.0/Headers/bq_log/bq_log.h -------------------------------------------------------------------------------- /dist/static_lib/mac/Release/BqLog.framework/Versions/1.0.0/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Release/BqLog.framework/Versions/1.0.0/Resources/Info.plist -------------------------------------------------------------------------------- /dist/static_lib/mac/Release/BqLog.framework/Versions/1.0.0/_CodeSignature/CodeDirectory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Release/BqLog.framework/Versions/1.0.0/_CodeSignature/CodeDirectory -------------------------------------------------------------------------------- /dist/static_lib/mac/Release/BqLog.framework/Versions/1.0.0/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Release/BqLog.framework/Versions/1.0.0/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /dist/static_lib/mac/Release/BqLog.framework/Versions/1.0.0/_CodeSignature/CodeSignature: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static_lib/mac/Release/BqLog.framework/Versions/Current/BqLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Release/BqLog.framework/Versions/Current/BqLog -------------------------------------------------------------------------------- /dist/static_lib/mac/Release/BqLog.framework/Versions/Current/Headers/bq_log/bq_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Release/BqLog.framework/Versions/Current/Headers/bq_log/bq_log.h -------------------------------------------------------------------------------- /dist/static_lib/mac/Release/BqLog.framework/Versions/Current/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Release/BqLog.framework/Versions/Current/Resources/Info.plist -------------------------------------------------------------------------------- /dist/static_lib/mac/Release/BqLog.framework/Versions/Current/_CodeSignature/CodeDirectory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Release/BqLog.framework/Versions/Current/_CodeSignature/CodeDirectory -------------------------------------------------------------------------------- /dist/static_lib/mac/Release/BqLog.framework/Versions/Current/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Release/BqLog.framework/Versions/Current/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /dist/static_lib/mac/Release/BqLog.framework/Versions/Current/_CodeSignature/CodeSignature: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/static_lib/mac/Release/libBqLog.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/mac/Release/libBqLog.a -------------------------------------------------------------------------------- /dist/static_lib/unix32/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/unix32/README.MD -------------------------------------------------------------------------------- /dist/static_lib/unix64/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/unix64/README.MD -------------------------------------------------------------------------------- /dist/static_lib/win64/Debug/BqLog.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/win64/Debug/BqLog.lib -------------------------------------------------------------------------------- /dist/static_lib/win64/Debug/BqLog.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/win64/Debug/BqLog.pdb -------------------------------------------------------------------------------- /dist/static_lib/win64/MinSizeRel/BqLog.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/win64/MinSizeRel/BqLog.lib -------------------------------------------------------------------------------- /dist/static_lib/win64/RelWithDebInfo/BqLog.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/win64/RelWithDebInfo/BqLog.lib -------------------------------------------------------------------------------- /dist/static_lib/win64/RelWithDebInfo/BqLog.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/win64/RelWithDebInfo/BqLog.pdb -------------------------------------------------------------------------------- /dist/static_lib/win64/Release/BqLog.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/dist/static_lib/win64/Release/BqLog.lib -------------------------------------------------------------------------------- /docs/Article 1_Why is BqLog so fast - High Performance Realtime Compressed Log Format.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/docs/Article 1_Why is BqLog so fast - High Performance Realtime Compressed Log Format.MD -------------------------------------------------------------------------------- /docs/Article 2_Why is BqLog so fast - High Concurrency Ring Buffer.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/docs/Article 2_Why is BqLog so fast - High Concurrency Ring Buffer.MD -------------------------------------------------------------------------------- /docs/img/BqLog_Fetch_Add_Demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/docs/img/BqLog_Fetch_Add_Demo.png -------------------------------------------------------------------------------- /docs/img/Disruptor_Alloc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/docs/img/Disruptor_Alloc.png -------------------------------------------------------------------------------- /docs/img/benchmark_4_params.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/docs/img/benchmark_4_params.png -------------------------------------------------------------------------------- /docs/img/benchmark_no_param.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/docs/img/benchmark_no_param.png -------------------------------------------------------------------------------- /docs/img/compress_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/docs/img/compress_1.png -------------------------------------------------------------------------------- /docs/img/compress_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/docs/img/compress_10.png -------------------------------------------------------------------------------- /docs/img/compress_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/docs/img/compress_11.png -------------------------------------------------------------------------------- /docs/img/compress_11_EN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/docs/img/compress_11_EN.png -------------------------------------------------------------------------------- /docs/img/compress_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/docs/img/compress_2.png -------------------------------------------------------------------------------- /docs/img/compress_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/docs/img/compress_3.png -------------------------------------------------------------------------------- /docs/img/compress_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/docs/img/compress_4.png -------------------------------------------------------------------------------- /docs/img/compress_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/docs/img/compress_5.png -------------------------------------------------------------------------------- /docs/img/compress_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/docs/img/compress_6.png -------------------------------------------------------------------------------- /docs/img/compress_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/docs/img/compress_7.png -------------------------------------------------------------------------------- /docs/img/compress_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/docs/img/compress_8.png -------------------------------------------------------------------------------- /docs/img/compress_8_EN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/docs/img/compress_8_EN.png -------------------------------------------------------------------------------- /docs/img/compress_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/docs/img/compress_9.png -------------------------------------------------------------------------------- /docs/img/compress_9_EN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/docs/img/compress_9_EN.png -------------------------------------------------------------------------------- /docs/img/kfifo_buffer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/docs/img/kfifo_buffer.png -------------------------------------------------------------------------------- /docs/img/log_level.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/docs/img/log_level.png -------------------------------------------------------------------------------- /docs/img/log_structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/docs/img/log_structure.png -------------------------------------------------------------------------------- /docs/img/rollback_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/docs/img/rollback_1.png -------------------------------------------------------------------------------- /docs/img/rollback_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/docs/img/rollback_2.png -------------------------------------------------------------------------------- /docs/文章1_为何BqLog如此快 - 高性能实时压缩日志格式.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/docs/文章1_为何BqLog如此快 - 高性能实时压缩日志格式.MD -------------------------------------------------------------------------------- /docs/文章2_为何BqLog如此快 - 高并发环形队列.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/docs/文章2_为何BqLog如此快 - 高并发环形队列.MD -------------------------------------------------------------------------------- /format_code.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/format_code.bat -------------------------------------------------------------------------------- /format_code.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/format_code.sh -------------------------------------------------------------------------------- /include/bq_common/bq_common_public_include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/include/bq_common/bq_common_public_include.h -------------------------------------------------------------------------------- /include/bq_common/misc/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/include/bq_common/misc/assert.h -------------------------------------------------------------------------------- /include/bq_common/platform/build_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/include/bq_common/platform/build_type.h -------------------------------------------------------------------------------- /include/bq_common/platform/build_type_dynamic_lib_import.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/include/bq_common/platform/build_type_dynamic_lib_import.h -------------------------------------------------------------------------------- /include/bq_common/platform/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/include/bq_common/platform/macros.h -------------------------------------------------------------------------------- /include/bq_common/types/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/include/bq_common/types/array.h -------------------------------------------------------------------------------- /include/bq_common/types/array_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/include/bq_common/types/array_def.h -------------------------------------------------------------------------------- /include/bq_common/types/array_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/include/bq_common/types/array_impl.h -------------------------------------------------------------------------------- /include/bq_common/types/basic_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/include/bq_common/types/basic_types.h -------------------------------------------------------------------------------- /include/bq_common/types/hash_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/include/bq_common/types/hash_map.h -------------------------------------------------------------------------------- /include/bq_common/types/hash_map_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/include/bq_common/types/hash_map_def.h -------------------------------------------------------------------------------- /include/bq_common/types/hash_map_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/include/bq_common/types/hash_map_impl.h -------------------------------------------------------------------------------- /include/bq_common/types/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/include/bq_common/types/string.h -------------------------------------------------------------------------------- /include/bq_common/types/string_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/include/bq_common/types/string_impl.h -------------------------------------------------------------------------------- /include/bq_common/types/type_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/include/bq_common/types/type_tools.h -------------------------------------------------------------------------------- /include/bq_common/types/type_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/include/bq_common/types/type_traits.h -------------------------------------------------------------------------------- /include/bq_log/adapters/adapter_unreal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/include/bq_log/adapters/adapter_unreal.h -------------------------------------------------------------------------------- /include/bq_log/adapters/adapters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/include/bq_log/adapters/adapters.h -------------------------------------------------------------------------------- /include/bq_log/bq_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/include/bq_log/bq_log.h -------------------------------------------------------------------------------- /include/bq_log/misc/bq_log_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/include/bq_log/misc/bq_log_api.h -------------------------------------------------------------------------------- /include/bq_log/misc/bq_log_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/include/bq_log/misc/bq_log_def.h -------------------------------------------------------------------------------- /include/bq_log/misc/bq_log_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/include/bq_log/misc/bq_log_impl.h -------------------------------------------------------------------------------- /include/bq_log/misc/bq_log_wrapper_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/include/bq_log/misc/bq_log_wrapper_tools.h -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/bq_common/bq_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_common/bq_common.h -------------------------------------------------------------------------------- /src/bq_common/bq_common_debug_viewer.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_common/bq_common_debug_viewer.natvis -------------------------------------------------------------------------------- /src/bq_common/platform/android_misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_common/platform/android_misc.cpp -------------------------------------------------------------------------------- /src/bq_common/platform/android_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_common/platform/android_misc.h -------------------------------------------------------------------------------- /src/bq_common/platform/atomic/_inner_atomic_GNU_C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_common/platform/atomic/_inner_atomic_GNU_C.h -------------------------------------------------------------------------------- /src/bq_common/platform/atomic/_inner_atomic_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_common/platform/atomic/_inner_atomic_windows.h -------------------------------------------------------------------------------- /src/bq_common/platform/atomic/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_common/platform/atomic/atomic.h -------------------------------------------------------------------------------- /src/bq_common/platform/io/memory_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_common/platform/io/memory_map.h -------------------------------------------------------------------------------- /src/bq_common/platform/io/memory_map_posix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_common/platform/io/memory_map_posix.cpp -------------------------------------------------------------------------------- /src/bq_common/platform/io/memory_map_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_common/platform/io/memory_map_win.cpp -------------------------------------------------------------------------------- /src/bq_common/platform/ios_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_common/platform/ios_misc.h -------------------------------------------------------------------------------- /src/bq_common/platform/ios_misc.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_common/platform/ios_misc.mm -------------------------------------------------------------------------------- /src/bq_common/platform/java_misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_common/platform/java_misc.cpp -------------------------------------------------------------------------------- /src/bq_common/platform/java_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_common/platform/java_misc.h -------------------------------------------------------------------------------- /src/bq_common/platform/linux_misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_common/platform/linux_misc.cpp -------------------------------------------------------------------------------- /src/bq_common/platform/linux_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_common/platform/linux_misc.h -------------------------------------------------------------------------------- /src/bq_common/platform/mac_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_common/platform/mac_misc.h -------------------------------------------------------------------------------- /src/bq_common/platform/mac_misc.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_common/platform/mac_misc.mm -------------------------------------------------------------------------------- /src/bq_common/platform/no_lib_cpp_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_common/platform/no_lib_cpp_impl.cpp -------------------------------------------------------------------------------- /src/bq_common/platform/no_lib_cpp_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_common/platform/no_lib_cpp_impl.h -------------------------------------------------------------------------------- /src/bq_common/platform/platform_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_common/platform/platform_misc.h -------------------------------------------------------------------------------- /src/bq_common/platform/posix_misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_common/platform/posix_misc.cpp -------------------------------------------------------------------------------- /src/bq_common/platform/posix_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_common/platform/posix_misc.h -------------------------------------------------------------------------------- /src/bq_common/platform/ps_misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_common/platform/ps_misc.cpp -------------------------------------------------------------------------------- /src/bq_common/platform/ps_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_common/platform/ps_misc.h -------------------------------------------------------------------------------- /src/bq_common/platform/thread/condition_variable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_common/platform/thread/condition_variable.h -------------------------------------------------------------------------------- /src/bq_common/platform/thread/condition_variable_posix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_common/platform/thread/condition_variable_posix.cpp -------------------------------------------------------------------------------- /src/bq_common/platform/thread/condition_variable_win64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_common/platform/thread/condition_variable_win64.cpp -------------------------------------------------------------------------------- /src/bq_common/platform/thread/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_common/platform/thread/mutex.h -------------------------------------------------------------------------------- /src/bq_common/platform/thread/mutex_posix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_common/platform/thread/mutex_posix.cpp -------------------------------------------------------------------------------- /src/bq_common/platform/thread/mutex_win64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_common/platform/thread/mutex_win64.cpp -------------------------------------------------------------------------------- /src/bq_common/platform/thread/spin_lock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_common/platform/thread/spin_lock.cpp -------------------------------------------------------------------------------- /src/bq_common/platform/thread/spin_lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_common/platform/thread/spin_lock.h -------------------------------------------------------------------------------- /src/bq_common/platform/thread/thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_common/platform/thread/thread.cpp -------------------------------------------------------------------------------- /src/bq_common/platform/thread/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_common/platform/thread/thread.h -------------------------------------------------------------------------------- /src/bq_common/platform/thread/thread_posix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_common/platform/thread/thread_posix.cpp -------------------------------------------------------------------------------- /src/bq_common/platform/thread/thread_win64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_common/platform/thread/thread_win64.cpp -------------------------------------------------------------------------------- /src/bq_common/platform/unix_misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_common/platform/unix_misc.cpp -------------------------------------------------------------------------------- /src/bq_common/platform/unix_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_common/platform/unix_misc.h -------------------------------------------------------------------------------- /src/bq_common/platform/win64_misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_common/platform/win64_misc.cpp -------------------------------------------------------------------------------- /src/bq_common/platform/win64_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_common/platform/win64_misc.h -------------------------------------------------------------------------------- /src/bq_common/utils/file_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_common/utils/file_manager.cpp -------------------------------------------------------------------------------- /src/bq_common/utils/file_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_common/utils/file_manager.h -------------------------------------------------------------------------------- /src/bq_common/utils/property.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_common/utils/property.cpp -------------------------------------------------------------------------------- /src/bq_common/utils/property.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_common/utils/property.h -------------------------------------------------------------------------------- /src/bq_common/utils/property_ex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_common/utils/property_ex.cpp -------------------------------------------------------------------------------- /src/bq_common/utils/property_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_common/utils/property_ex.h -------------------------------------------------------------------------------- /src/bq_common/utils/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_common/utils/util.cpp -------------------------------------------------------------------------------- /src/bq_common/utils/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_common/utils/util.h -------------------------------------------------------------------------------- /src/bq_log/api/bq_impl_log_invoker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_log/api/bq_impl_log_invoker.h -------------------------------------------------------------------------------- /src/bq_log/api/bq_log_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_log/api/bq_log_api.cpp -------------------------------------------------------------------------------- /src/bq_log/api/bq_log_jni_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_log/api/bq_log_jni_api.cpp -------------------------------------------------------------------------------- /src/bq_log/log/appender/appender_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_log/log/appender/appender_base.cpp -------------------------------------------------------------------------------- /src/bq_log/log/appender/appender_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_log/log/appender/appender_base.h -------------------------------------------------------------------------------- /src/bq_log/log/appender/appender_console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_log/log/appender/appender_console.cpp -------------------------------------------------------------------------------- /src/bq_log/log/appender/appender_console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_log/log/appender/appender_console.h -------------------------------------------------------------------------------- /src/bq_log/log/appender/appender_file_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_log/log/appender/appender_file_base.cpp -------------------------------------------------------------------------------- /src/bq_log/log/appender/appender_file_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_log/log/appender/appender_file_base.h -------------------------------------------------------------------------------- /src/bq_log/log/appender/appender_file_binary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_log/log/appender/appender_file_binary.cpp -------------------------------------------------------------------------------- /src/bq_log/log/appender/appender_file_binary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_log/log/appender/appender_file_binary.h -------------------------------------------------------------------------------- /src/bq_log/log/appender/appender_file_compressed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_log/log/appender/appender_file_compressed.cpp -------------------------------------------------------------------------------- /src/bq_log/log/appender/appender_file_compressed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_log/log/appender/appender_file_compressed.h -------------------------------------------------------------------------------- /src/bq_log/log/appender/appender_file_raw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_log/log/appender/appender_file_raw.cpp -------------------------------------------------------------------------------- /src/bq_log/log/appender/appender_file_raw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_log/log/appender/appender_file_raw.h -------------------------------------------------------------------------------- /src/bq_log/log/appender/appender_file_text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_log/log/appender/appender_file_text.cpp -------------------------------------------------------------------------------- /src/bq_log/log/appender/appender_file_text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_log/log/appender/appender_file_text.h -------------------------------------------------------------------------------- /src/bq_log/log/decoder/appender_decoder_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_log/log/decoder/appender_decoder_base.cpp -------------------------------------------------------------------------------- /src/bq_log/log/decoder/appender_decoder_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_log/log/decoder/appender_decoder_base.h -------------------------------------------------------------------------------- /src/bq_log/log/decoder/appender_decoder_compressed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_log/log/decoder/appender_decoder_compressed.cpp -------------------------------------------------------------------------------- /src/bq_log/log/decoder/appender_decoder_compressed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_log/log/decoder/appender_decoder_compressed.h -------------------------------------------------------------------------------- /src/bq_log/log/decoder/appender_decoder_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_log/log/decoder/appender_decoder_helper.cpp -------------------------------------------------------------------------------- /src/bq_log/log/decoder/appender_decoder_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_log/log/decoder/appender_decoder_helper.h -------------------------------------------------------------------------------- /src/bq_log/log/decoder/appender_decoder_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_log/log/decoder/appender_decoder_manager.cpp -------------------------------------------------------------------------------- /src/bq_log/log/decoder/appender_decoder_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_log/log/decoder/appender_decoder_manager.h -------------------------------------------------------------------------------- /src/bq_log/log/decoder/appender_decoder_raw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_log/log/decoder/appender_decoder_raw.cpp -------------------------------------------------------------------------------- /src/bq_log/log/decoder/appender_decoder_raw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_log/log/decoder/appender_decoder_raw.h -------------------------------------------------------------------------------- /src/bq_log/log/layout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_log/log/layout.cpp -------------------------------------------------------------------------------- /src/bq_log/log/layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_log/log/layout.h -------------------------------------------------------------------------------- /src/bq_log/log/log_imp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_log/log/log_imp.cpp -------------------------------------------------------------------------------- /src/bq_log/log/log_imp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_log/log/log_imp.h -------------------------------------------------------------------------------- /src/bq_log/log/log_level_bitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_log/log/log_level_bitmap.cpp -------------------------------------------------------------------------------- /src/bq_log/log/log_level_bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_log/log/log_level_bitmap.h -------------------------------------------------------------------------------- /src/bq_log/log/log_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_log/log/log_manager.cpp -------------------------------------------------------------------------------- /src/bq_log/log/log_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_log/log/log_manager.h -------------------------------------------------------------------------------- /src/bq_log/log/log_snapshot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_log/log/log_snapshot.cpp -------------------------------------------------------------------------------- /src/bq_log/log/log_snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_log/log/log_snapshot.h -------------------------------------------------------------------------------- /src/bq_log/log/log_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_log/log/log_types.cpp -------------------------------------------------------------------------------- /src/bq_log/log/log_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_log/log/log_types.h -------------------------------------------------------------------------------- /src/bq_log/log/log_worker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_log/log/log_worker.cpp -------------------------------------------------------------------------------- /src/bq_log/log/log_worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_log/log/log_worker.h -------------------------------------------------------------------------------- /src/bq_log/types/ring_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_log/types/ring_buffer.cpp -------------------------------------------------------------------------------- /src/bq_log/types/ring_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_log/types/ring_buffer.h -------------------------------------------------------------------------------- /src/bq_log/utils/log_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_log/utils/log_utils.cpp -------------------------------------------------------------------------------- /src/bq_log/utils/log_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/src/bq_log/utils/log_utils.h -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/bq_common_test/test_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/test/bq_common_test/test_array.h -------------------------------------------------------------------------------- /test/bq_common_test/test_basic_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/test/bq_common_test/test_basic_types.h -------------------------------------------------------------------------------- /test/bq_common_test/test_file_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/test/bq_common_test/test_file_manager.h -------------------------------------------------------------------------------- /test/bq_common_test/test_hash_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/test/bq_common_test/test_hash_map.h -------------------------------------------------------------------------------- /test/bq_common_test/test_property.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/test/bq_common_test/test_property.h -------------------------------------------------------------------------------- /test/bq_common_test/test_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/test/bq_common_test/test_string.h -------------------------------------------------------------------------------- /test/bq_common_test/test_thread_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/test/bq_common_test/test_thread_atomic.h -------------------------------------------------------------------------------- /test/bq_common_test/test_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/test/bq_common_test/test_utils.h -------------------------------------------------------------------------------- /test/com_tencent_bq_unittest_JNIEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/test/com_tencent_bq_unittest_JNIEntry.h -------------------------------------------------------------------------------- /test/jni_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/test/jni_main.cpp -------------------------------------------------------------------------------- /test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/test/main.cpp -------------------------------------------------------------------------------- /test/test_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/test/test_base.cpp -------------------------------------------------------------------------------- /test/test_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/test/test_base.h -------------------------------------------------------------------------------- /test/test_category_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/test/test_category_log.h -------------------------------------------------------------------------------- /test/test_category_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/test/test_category_log.txt -------------------------------------------------------------------------------- /test/test_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/test/test_log.h -------------------------------------------------------------------------------- /test/test_log_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/test/test_log_1.cpp -------------------------------------------------------------------------------- /test/test_log_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/test/test_log_2.cpp -------------------------------------------------------------------------------- /test/test_log_3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/test/test_log_3.cpp -------------------------------------------------------------------------------- /test/test_log_4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/test/test_log_4.cpp -------------------------------------------------------------------------------- /test/test_ring_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/test/test_ring_buffer.h -------------------------------------------------------------------------------- /tools/category_log_generator/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/tools/category_log_generator/CMakeLists.txt -------------------------------------------------------------------------------- /tools/category_log_generator/category_generator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/tools/category_log_generator/category_generator.cpp -------------------------------------------------------------------------------- /tools/category_log_generator/category_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/tools/category_log_generator/category_generator.h -------------------------------------------------------------------------------- /tools/category_log_generator/common_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/tools/category_log_generator/common_header.h -------------------------------------------------------------------------------- /tools/category_log_generator/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/tools/category_log_generator/main.cpp -------------------------------------------------------------------------------- /tools/category_log_generator/template/category_log_template_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/tools/category_log_generator/template/category_log_template_base.cpp -------------------------------------------------------------------------------- /tools/category_log_generator/template/category_log_template_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/tools/category_log_generator/template/category_log_template_base.h -------------------------------------------------------------------------------- /tools/category_log_generator/template/category_log_template_cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/tools/category_log_generator/template/category_log_template_cpp.cpp -------------------------------------------------------------------------------- /tools/category_log_generator/template/category_log_template_cpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/tools/category_log_generator/template/category_log_template_cpp.h -------------------------------------------------------------------------------- /tools/category_log_generator/template/category_log_template_csharp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/tools/category_log_generator/template/category_log_template_csharp.cpp -------------------------------------------------------------------------------- /tools/category_log_generator/template/category_log_template_csharp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/tools/category_log_generator/template/category_log_template_csharp.h -------------------------------------------------------------------------------- /tools/category_log_generator/template/category_log_template_java.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/tools/category_log_generator/template/category_log_template_java.cpp -------------------------------------------------------------------------------- /tools/category_log_generator/template/category_log_template_java.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/tools/category_log_generator/template/category_log_template_java.h -------------------------------------------------------------------------------- /tools/log_decoder/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/tools/log_decoder/CMakeLists.txt -------------------------------------------------------------------------------- /tools/log_decoder/common_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/tools/log_decoder/common_header.h -------------------------------------------------------------------------------- /tools/log_decoder/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/tools/log_decoder/main.cpp -------------------------------------------------------------------------------- /wrapper/csharp/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/wrapper/csharp/src/CMakeLists.txt -------------------------------------------------------------------------------- /wrapper/csharp/src/bq/category_log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/wrapper/csharp/src/bq/category_log.cs -------------------------------------------------------------------------------- /wrapper/csharp/src/bq/def/log_category_base.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/wrapper/csharp/src/bq/def/log_category_base.cs -------------------------------------------------------------------------------- /wrapper/csharp/src/bq/def/log_types_def.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/wrapper/csharp/src/bq/def/log_types_def.cs -------------------------------------------------------------------------------- /wrapper/csharp/src/bq/impl/log_context.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/wrapper/csharp/src/bq/impl/log_context.cs -------------------------------------------------------------------------------- /wrapper/csharp/src/bq/impl/log_invoker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/wrapper/csharp/src/bq/impl/log_invoker.cs -------------------------------------------------------------------------------- /wrapper/csharp/src/bq/impl/param_wrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/wrapper/csharp/src/bq/impl/param_wrapper.cs -------------------------------------------------------------------------------- /wrapper/csharp/src/bq/impl/utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/wrapper/csharp/src/bq/impl/utils.cs -------------------------------------------------------------------------------- /wrapper/csharp/src/bq/lib_def.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/wrapper/csharp/src/bq/lib_def.cs -------------------------------------------------------------------------------- /wrapper/csharp/src/bq/log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/wrapper/csharp/src/bq/log.cs -------------------------------------------------------------------------------- /wrapper/csharp/src/bq/tools/log_decoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/wrapper/csharp/src/bq/tools/log_decoder.cs -------------------------------------------------------------------------------- /wrapper/java/.gitignore: -------------------------------------------------------------------------------- 1 | **/*.class -------------------------------------------------------------------------------- /wrapper/java/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/wrapper/java/CMakeLists.txt -------------------------------------------------------------------------------- /wrapper/java/src/bq/category_log.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/wrapper/java/src/bq/category_log.java -------------------------------------------------------------------------------- /wrapper/java/src/bq/def/constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/wrapper/java/src/bq/def/constants.java -------------------------------------------------------------------------------- /wrapper/java/src/bq/def/log_arg_type_enum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/wrapper/java/src/bq/def/log_arg_type_enum.java -------------------------------------------------------------------------------- /wrapper/java/src/bq/def/log_category_base.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/wrapper/java/src/bq/def/log_category_base.java -------------------------------------------------------------------------------- /wrapper/java/src/bq/def/log_level.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/wrapper/java/src/bq/def/log_level.java -------------------------------------------------------------------------------- /wrapper/java/src/bq/def/string_holder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/wrapper/java/src/bq/def/string_holder.java -------------------------------------------------------------------------------- /wrapper/java/src/bq/impl/log_context.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/wrapper/java/src/bq/impl/log_context.java -------------------------------------------------------------------------------- /wrapper/java/src/bq/impl/log_invoker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/wrapper/java/src/bq/impl/log_invoker.java -------------------------------------------------------------------------------- /wrapper/java/src/bq/lib_def.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/wrapper/java/src/bq/lib_def.java -------------------------------------------------------------------------------- /wrapper/java/src/bq/log.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/wrapper/java/src/bq/log.java -------------------------------------------------------------------------------- /wrapper/java/src/bq/tools/log_decoder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/wrapper/java/src/bq/tools/log_decoder.java -------------------------------------------------------------------------------- /wrapper/java/src/bq/utils/param.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/BqLog/HEAD/wrapper/java/src/bq/utils/param.java --------------------------------------------------------------------------------