├── .gitignore ├── Binaries └── Win64 │ ├── bsoncxx.dll │ ├── libbson-1.0.dll │ ├── libmongoc-1.0.dll │ └── mongocxx.dll ├── EMOS.uplugin ├── LICENSE ├── Libraries └── Win64 │ ├── bson-1.0.lib │ ├── bsoncxx.lib │ ├── mongoc-1.0.lib │ └── mongocxx.lib ├── README.md ├── Resources └── Icon128.png └── Source ├── EMOSDB ├── Classes │ ├── EMOSDB.cpp │ └── Framework │ │ ├── UMongoClient.cpp │ │ ├── UMongoCollection.cpp │ │ ├── UMongoDatabase.cpp │ │ └── UMongoDocument.cpp ├── EMOSDB.Build.cs ├── Private │ ├── EMOSDBPCH.h │ ├── Framework │ │ ├── UMongoClient_impl.h │ │ ├── UMongoCollection_impl.h │ │ ├── UMongoDatabase_impl.h │ │ └── UMongoDocument_impl.h │ ├── boost │ │ ├── assert.hpp │ │ ├── config.hpp │ │ ├── config │ │ │ ├── abi │ │ │ │ ├── borland_prefix.hpp │ │ │ │ ├── borland_suffix.hpp │ │ │ │ ├── msvc_prefix.hpp │ │ │ │ └── msvc_suffix.hpp │ │ │ ├── abi_prefix.hpp │ │ │ ├── abi_suffix.hpp │ │ │ ├── auto_link.hpp │ │ │ ├── compiler │ │ │ │ ├── borland.hpp │ │ │ │ ├── clang.hpp │ │ │ │ ├── codegear.hpp │ │ │ │ ├── comeau.hpp │ │ │ │ ├── common_edg.hpp │ │ │ │ ├── compaq_cxx.hpp │ │ │ │ ├── cray.hpp │ │ │ │ ├── digitalmars.hpp │ │ │ │ ├── gcc.hpp │ │ │ │ ├── gcc_xml.hpp │ │ │ │ ├── greenhills.hpp │ │ │ │ ├── hp_acc.hpp │ │ │ │ ├── intel.hpp │ │ │ │ ├── kai.hpp │ │ │ │ ├── metrowerks.hpp │ │ │ │ ├── mpw.hpp │ │ │ │ ├── nvcc.hpp │ │ │ │ ├── pathscale.hpp │ │ │ │ ├── pgi.hpp │ │ │ │ ├── sgi_mipspro.hpp │ │ │ │ ├── sunpro_cc.hpp │ │ │ │ ├── vacpp.hpp │ │ │ │ ├── visualc.hpp │ │ │ │ └── xlcpp.hpp │ │ │ ├── no_tr1 │ │ │ │ ├── cmath.hpp │ │ │ │ ├── complex.hpp │ │ │ │ ├── functional.hpp │ │ │ │ ├── memory.hpp │ │ │ │ └── utility.hpp │ │ │ ├── platform │ │ │ │ ├── aix.hpp │ │ │ │ ├── amigaos.hpp │ │ │ │ ├── beos.hpp │ │ │ │ ├── bsd.hpp │ │ │ │ ├── cray.hpp │ │ │ │ ├── cygwin.hpp │ │ │ │ ├── haiku.hpp │ │ │ │ ├── hpux.hpp │ │ │ │ ├── irix.hpp │ │ │ │ ├── linux.hpp │ │ │ │ ├── macos.hpp │ │ │ │ ├── qnxnto.hpp │ │ │ │ ├── solaris.hpp │ │ │ │ ├── symbian.hpp │ │ │ │ ├── vms.hpp │ │ │ │ ├── vxworks.hpp │ │ │ │ └── win32.hpp │ │ │ ├── posix_features.hpp │ │ │ ├── requires_threads.hpp │ │ │ ├── select_compiler_config.hpp │ │ │ ├── select_platform_config.hpp │ │ │ ├── select_stdlib_config.hpp │ │ │ ├── stdlib │ │ │ │ ├── dinkumware.hpp │ │ │ │ ├── libcomo.hpp │ │ │ │ ├── libcpp.hpp │ │ │ │ ├── libstdcpp3.hpp │ │ │ │ ├── modena.hpp │ │ │ │ ├── msl.hpp │ │ │ │ ├── roguewave.hpp │ │ │ │ ├── sgi.hpp │ │ │ │ ├── stlport.hpp │ │ │ │ └── vacpp.hpp │ │ │ ├── suffix.hpp │ │ │ ├── user.hpp │ │ │ └── warning_disable.hpp │ │ ├── core │ │ │ ├── addressof.hpp │ │ │ ├── checked_delete.hpp │ │ │ ├── demangle.hpp │ │ │ ├── enable_if.hpp │ │ │ ├── explicit_operator_bool.hpp │ │ │ ├── ignore_unused.hpp │ │ │ ├── is_same.hpp │ │ │ ├── lightweight_test.hpp │ │ │ ├── lightweight_test_trait.hpp │ │ │ ├── no_exceptions_support.hpp │ │ │ ├── noncopyable.hpp │ │ │ ├── null_deleter.hpp │ │ │ ├── ref.hpp │ │ │ ├── scoped_enum.hpp │ │ │ ├── swap.hpp │ │ │ ├── typeinfo.hpp │ │ │ └── underlying_type.hpp │ │ ├── current_function.hpp │ │ ├── detail │ │ │ ├── algorithm.hpp │ │ │ ├── allocator_utilities.hpp │ │ │ ├── atomic_count.hpp │ │ │ ├── atomic_redef_macros.hpp │ │ │ ├── atomic_undef_macros.hpp │ │ │ ├── basic_pointerbuf.hpp │ │ │ ├── binary_search.hpp │ │ │ ├── bitmask.hpp │ │ │ ├── call_traits.hpp │ │ │ ├── catch_exceptions.hpp │ │ │ ├── compressed_pair.hpp │ │ │ ├── container_fwd.hpp │ │ │ ├── dynamic_bitset.hpp │ │ │ ├── endian.hpp │ │ │ ├── fenv.hpp │ │ │ ├── has_default_constructor.hpp │ │ │ ├── identifier.hpp │ │ │ ├── indirect_traits.hpp │ │ │ ├── interlocked.hpp │ │ │ ├── is_incrementable.hpp │ │ │ ├── is_sorted.hpp │ │ │ ├── is_xxx.hpp │ │ │ ├── iterator.hpp │ │ │ ├── lcast_precision.hpp │ │ │ ├── lightweight_main.hpp │ │ │ ├── lightweight_mutex.hpp │ │ │ ├── lightweight_test.hpp │ │ │ ├── lightweight_test_report.hpp │ │ │ ├── lightweight_thread.hpp │ │ │ ├── named_template_params.hpp │ │ │ ├── no_exceptions_support.hpp │ │ │ ├── numeric_traits.hpp │ │ │ ├── ob_compressed_pair.hpp │ │ │ ├── quick_allocator.hpp │ │ │ ├── reference_content.hpp │ │ │ ├── scoped_enum_emulation.hpp │ │ │ ├── select_type.hpp │ │ │ ├── sp_typeinfo.hpp │ │ │ ├── templated_streams.hpp │ │ │ ├── utf8_codecvt_facet.hpp │ │ │ ├── utf8_codecvt_facet.ipp │ │ │ ├── winapi │ │ │ │ ├── GetCurrentProcess.hpp │ │ │ │ ├── GetCurrentThread.hpp │ │ │ │ ├── GetLastError.hpp │ │ │ │ ├── GetProcessTimes.hpp │ │ │ │ ├── GetThreadTimes.hpp │ │ │ │ ├── LocalFree.hpp │ │ │ │ ├── basic_types.hpp │ │ │ │ ├── config.hpp │ │ │ │ ├── crypt.hpp │ │ │ │ ├── directory_management.hpp │ │ │ │ ├── dll.hpp │ │ │ │ ├── error_handling.hpp │ │ │ │ ├── file_management.hpp │ │ │ │ ├── handles.hpp │ │ │ │ ├── memory.hpp │ │ │ │ ├── process.hpp │ │ │ │ ├── security.hpp │ │ │ │ ├── synchronization.hpp │ │ │ │ ├── system.hpp │ │ │ │ ├── thread.hpp │ │ │ │ ├── thread_pool.hpp │ │ │ │ ├── time.hpp │ │ │ │ ├── timers.hpp │ │ │ │ ├── tls.hpp │ │ │ │ └── waitable_timer.hpp │ │ │ └── workaround.hpp │ │ ├── exception │ │ │ ├── N3757.hpp │ │ │ ├── all.hpp │ │ │ ├── current_exception_cast.hpp │ │ │ ├── detail │ │ │ │ ├── clone_current_exception.hpp │ │ │ │ ├── error_info_impl.hpp │ │ │ │ ├── exception_ptr.hpp │ │ │ │ ├── is_output_streamable.hpp │ │ │ │ ├── object_hex_dump.hpp │ │ │ │ └── type_info.hpp │ │ │ ├── diagnostic_information.hpp │ │ │ ├── enable_current_exception.hpp │ │ │ ├── enable_error_info.hpp │ │ │ ├── errinfo_api_function.hpp │ │ │ ├── errinfo_at_line.hpp │ │ │ ├── errinfo_errno.hpp │ │ │ ├── errinfo_file_handle.hpp │ │ │ ├── errinfo_file_name.hpp │ │ │ ├── errinfo_file_open_mode.hpp │ │ │ ├── errinfo_nested_exception.hpp │ │ │ ├── errinfo_type_info_name.hpp │ │ │ ├── error_info.hpp │ │ │ ├── exception.hpp │ │ │ ├── get_error_info.hpp │ │ │ ├── info.hpp │ │ │ ├── info_tuple.hpp │ │ │ ├── to_string.hpp │ │ │ └── to_string_stub.hpp │ │ ├── move │ │ │ ├── adl_move_swap.hpp │ │ │ ├── algorithm.hpp │ │ │ ├── core.hpp │ │ │ ├── default_delete.hpp │ │ │ ├── detail │ │ │ │ ├── config_begin.hpp │ │ │ │ ├── config_end.hpp │ │ │ │ ├── fwd_macros.hpp │ │ │ │ ├── iterator_traits.hpp │ │ │ │ ├── meta_utils.hpp │ │ │ │ ├── meta_utils_core.hpp │ │ │ │ ├── move_helpers.hpp │ │ │ │ ├── type_traits.hpp │ │ │ │ ├── unique_ptr_meta_utils.hpp │ │ │ │ └── workaround.hpp │ │ │ ├── iterator.hpp │ │ │ ├── make_unique.hpp │ │ │ ├── move.hpp │ │ │ ├── traits.hpp │ │ │ ├── unique_ptr.hpp │ │ │ ├── utility.hpp │ │ │ └── utility_core.hpp │ │ ├── mpl │ │ │ ├── O1_size.hpp │ │ │ ├── O1_size_fwd.hpp │ │ │ ├── accumulate.hpp │ │ │ ├── advance.hpp │ │ │ ├── advance_fwd.hpp │ │ │ ├── alias.hpp │ │ │ ├── always.hpp │ │ │ ├── and.hpp │ │ │ ├── apply.hpp │ │ │ ├── apply_fwd.hpp │ │ │ ├── apply_wrap.hpp │ │ │ ├── arg.hpp │ │ │ ├── arg_fwd.hpp │ │ │ ├── arithmetic.hpp │ │ │ ├── as_sequence.hpp │ │ │ ├── assert.hpp │ │ │ ├── at.hpp │ │ │ ├── at_fwd.hpp │ │ │ ├── aux_ │ │ │ │ ├── O1_size_impl.hpp │ │ │ │ ├── adl_barrier.hpp │ │ │ │ ├── advance_backward.hpp │ │ │ │ ├── advance_forward.hpp │ │ │ │ ├── apply_1st.hpp │ │ │ │ ├── arg_typedef.hpp │ │ │ │ ├── arithmetic_op.hpp │ │ │ │ ├── arity.hpp │ │ │ │ ├── arity_spec.hpp │ │ │ │ ├── at_impl.hpp │ │ │ │ ├── back_impl.hpp │ │ │ │ ├── basic_bind.hpp │ │ │ │ ├── begin_end_impl.hpp │ │ │ │ ├── clear_impl.hpp │ │ │ │ ├── common_name_wknd.hpp │ │ │ │ ├── comparison_op.hpp │ │ │ │ ├── config │ │ │ │ │ ├── adl.hpp │ │ │ │ │ ├── arrays.hpp │ │ │ │ │ ├── bcc.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── compiler.hpp │ │ │ │ │ ├── ctps.hpp │ │ │ │ │ ├── dependent_nttp.hpp │ │ │ │ │ ├── dmc_ambiguous_ctps.hpp │ │ │ │ │ ├── dtp.hpp │ │ │ │ │ ├── eti.hpp │ │ │ │ │ ├── forwarding.hpp │ │ │ │ │ ├── gcc.hpp │ │ │ │ │ ├── gpu.hpp │ │ │ │ │ ├── has_apply.hpp │ │ │ │ │ ├── has_xxx.hpp │ │ │ │ │ ├── integral.hpp │ │ │ │ │ ├── intel.hpp │ │ │ │ │ ├── lambda.hpp │ │ │ │ │ ├── msvc.hpp │ │ │ │ │ ├── msvc_typename.hpp │ │ │ │ │ ├── nttp.hpp │ │ │ │ │ ├── operators.hpp │ │ │ │ │ ├── overload_resolution.hpp │ │ │ │ │ ├── pp_counter.hpp │ │ │ │ │ ├── preprocessor.hpp │ │ │ │ │ ├── static_constant.hpp │ │ │ │ │ ├── ttp.hpp │ │ │ │ │ ├── typeof.hpp │ │ │ │ │ ├── use_preprocessed.hpp │ │ │ │ │ └── workaround.hpp │ │ │ │ ├── contains_impl.hpp │ │ │ │ ├── count_args.hpp │ │ │ │ ├── count_impl.hpp │ │ │ │ ├── empty_impl.hpp │ │ │ │ ├── erase_impl.hpp │ │ │ │ ├── erase_key_impl.hpp │ │ │ │ ├── filter_iter.hpp │ │ │ │ ├── find_if_pred.hpp │ │ │ │ ├── fold_impl.hpp │ │ │ │ ├── fold_impl_body.hpp │ │ │ │ ├── fold_op.hpp │ │ │ │ ├── fold_pred.hpp │ │ │ │ ├── front_impl.hpp │ │ │ │ ├── full_lambda.hpp │ │ │ │ ├── has_apply.hpp │ │ │ │ ├── has_begin.hpp │ │ │ │ ├── has_key_impl.hpp │ │ │ │ ├── has_rebind.hpp │ │ │ │ ├── has_size.hpp │ │ │ │ ├── has_tag.hpp │ │ │ │ ├── has_type.hpp │ │ │ │ ├── include_preprocessed.hpp │ │ │ │ ├── insert_impl.hpp │ │ │ │ ├── insert_range_impl.hpp │ │ │ │ ├── inserter_algorithm.hpp │ │ │ │ ├── integral_wrapper.hpp │ │ │ │ ├── is_msvc_eti_arg.hpp │ │ │ │ ├── iter_apply.hpp │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ ├── iter_push_front.hpp │ │ │ │ ├── joint_iter.hpp │ │ │ │ ├── lambda_arity_param.hpp │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ ├── lambda_spec.hpp │ │ │ │ ├── lambda_support.hpp │ │ │ │ ├── largest_int.hpp │ │ │ │ ├── logical_op.hpp │ │ │ │ ├── msvc_dtw.hpp │ │ │ │ ├── msvc_eti_base.hpp │ │ │ │ ├── msvc_is_class.hpp │ │ │ │ ├── msvc_never_true.hpp │ │ │ │ ├── msvc_type.hpp │ │ │ │ ├── na.hpp │ │ │ │ ├── na_assert.hpp │ │ │ │ ├── na_fwd.hpp │ │ │ │ ├── na_spec.hpp │ │ │ │ ├── nested_type_wknd.hpp │ │ │ │ ├── nttp_decl.hpp │ │ │ │ ├── numeric_cast_utils.hpp │ │ │ │ ├── numeric_op.hpp │ │ │ │ ├── order_impl.hpp │ │ │ │ ├── overload_names.hpp │ │ │ │ ├── partition_op.hpp │ │ │ │ ├── pop_back_impl.hpp │ │ │ │ ├── pop_front_impl.hpp │ │ │ │ ├── preprocessed │ │ │ │ │ ├── bcc │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ ├── bcc551 │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ ├── bcc_pre590 │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ ├── dmc │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ ├── gcc │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ ├── msvc60 │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ ├── msvc70 │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ ├── mwcw │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ ├── no_ctps │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ ├── no_ttp │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ └── plain │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ ├── preprocessor │ │ │ │ │ ├── add.hpp │ │ │ │ │ ├── def_params_tail.hpp │ │ │ │ │ ├── default_params.hpp │ │ │ │ │ ├── enum.hpp │ │ │ │ │ ├── ext_params.hpp │ │ │ │ │ ├── filter_params.hpp │ │ │ │ │ ├── is_seq.hpp │ │ │ │ │ ├── params.hpp │ │ │ │ │ ├── partial_spec_params.hpp │ │ │ │ │ ├── range.hpp │ │ │ │ │ ├── repeat.hpp │ │ │ │ │ ├── sub.hpp │ │ │ │ │ ├── token_equal.hpp │ │ │ │ │ └── tuple.hpp │ │ │ │ ├── ptr_to_ref.hpp │ │ │ │ ├── push_back_impl.hpp │ │ │ │ ├── push_front_impl.hpp │ │ │ │ ├── range_c │ │ │ │ │ ├── O1_size.hpp │ │ │ │ │ ├── back.hpp │ │ │ │ │ ├── empty.hpp │ │ │ │ │ ├── front.hpp │ │ │ │ │ ├── iterator.hpp │ │ │ │ │ ├── size.hpp │ │ │ │ │ └── tag.hpp │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ ├── reverse_fold_impl_body.hpp │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ ├── sequence_wrapper.hpp │ │ │ │ ├── shift_op.hpp │ │ │ │ ├── single_element_iter.hpp │ │ │ │ ├── size_impl.hpp │ │ │ │ ├── sort_impl.hpp │ │ │ │ ├── static_cast.hpp │ │ │ │ ├── template_arity.hpp │ │ │ │ ├── template_arity_fwd.hpp │ │ │ │ ├── test.hpp │ │ │ │ ├── test │ │ │ │ │ ├── assert.hpp │ │ │ │ │ ├── data.hpp │ │ │ │ │ └── test_case.hpp │ │ │ │ ├── traits_lambda_spec.hpp │ │ │ │ ├── transform_iter.hpp │ │ │ │ ├── type_wrapper.hpp │ │ │ │ ├── unwrap.hpp │ │ │ │ ├── value_wknd.hpp │ │ │ │ └── yes_no.hpp │ │ │ ├── back.hpp │ │ │ ├── back_fwd.hpp │ │ │ ├── back_inserter.hpp │ │ │ ├── base.hpp │ │ │ ├── begin.hpp │ │ │ ├── begin_end.hpp │ │ │ ├── begin_end_fwd.hpp │ │ │ ├── bind.hpp │ │ │ ├── bind_fwd.hpp │ │ │ ├── bitand.hpp │ │ │ ├── bitor.hpp │ │ │ ├── bitwise.hpp │ │ │ ├── bitxor.hpp │ │ │ ├── bool.hpp │ │ │ ├── bool_fwd.hpp │ │ │ ├── char.hpp │ │ │ ├── char_fwd.hpp │ │ │ ├── clear.hpp │ │ │ ├── clear_fwd.hpp │ │ │ ├── comparison.hpp │ │ │ ├── contains.hpp │ │ │ ├── contains_fwd.hpp │ │ │ ├── copy.hpp │ │ │ ├── copy_if.hpp │ │ │ ├── count.hpp │ │ │ ├── count_fwd.hpp │ │ │ ├── count_if.hpp │ │ │ ├── deque.hpp │ │ │ ├── deref.hpp │ │ │ ├── distance.hpp │ │ │ ├── distance_fwd.hpp │ │ │ ├── divides.hpp │ │ │ ├── empty.hpp │ │ │ ├── empty_base.hpp │ │ │ ├── empty_fwd.hpp │ │ │ ├── empty_sequence.hpp │ │ │ ├── end.hpp │ │ │ ├── equal.hpp │ │ │ ├── equal_to.hpp │ │ │ ├── erase.hpp │ │ │ ├── erase_fwd.hpp │ │ │ ├── erase_key.hpp │ │ │ ├── erase_key_fwd.hpp │ │ │ ├── eval_if.hpp │ │ │ ├── filter_view.hpp │ │ │ ├── find.hpp │ │ │ ├── find_if.hpp │ │ │ ├── fold.hpp │ │ │ ├── for_each.hpp │ │ │ ├── front.hpp │ │ │ ├── front_fwd.hpp │ │ │ ├── front_inserter.hpp │ │ │ ├── greater.hpp │ │ │ ├── greater_equal.hpp │ │ │ ├── has_key.hpp │ │ │ ├── has_key_fwd.hpp │ │ │ ├── has_xxx.hpp │ │ │ ├── identity.hpp │ │ │ ├── if.hpp │ │ │ ├── index_if.hpp │ │ │ ├── index_of.hpp │ │ │ ├── inherit.hpp │ │ │ ├── inherit_linearly.hpp │ │ │ ├── insert.hpp │ │ │ ├── insert_fwd.hpp │ │ │ ├── insert_range.hpp │ │ │ ├── insert_range_fwd.hpp │ │ │ ├── inserter.hpp │ │ │ ├── int.hpp │ │ │ ├── int_fwd.hpp │ │ │ ├── integral_c.hpp │ │ │ ├── integral_c_fwd.hpp │ │ │ ├── integral_c_tag.hpp │ │ │ ├── is_placeholder.hpp │ │ │ ├── is_sequence.hpp │ │ │ ├── iter_fold.hpp │ │ │ ├── iter_fold_if.hpp │ │ │ ├── iterator_category.hpp │ │ │ ├── iterator_range.hpp │ │ │ ├── iterator_tags.hpp │ │ │ ├── joint_view.hpp │ │ │ ├── key_type.hpp │ │ │ ├── key_type_fwd.hpp │ │ │ ├── lambda.hpp │ │ │ ├── lambda_fwd.hpp │ │ │ ├── less.hpp │ │ │ ├── less_equal.hpp │ │ │ ├── limits │ │ │ │ ├── arity.hpp │ │ │ │ ├── list.hpp │ │ │ │ ├── map.hpp │ │ │ │ ├── set.hpp │ │ │ │ ├── string.hpp │ │ │ │ ├── unrolling.hpp │ │ │ │ └── vector.hpp │ │ │ ├── list.hpp │ │ │ ├── list │ │ │ │ ├── aux_ │ │ │ │ │ ├── O1_size.hpp │ │ │ │ │ ├── begin_end.hpp │ │ │ │ │ ├── clear.hpp │ │ │ │ │ ├── empty.hpp │ │ │ │ │ ├── front.hpp │ │ │ │ │ ├── include_preprocessed.hpp │ │ │ │ │ ├── item.hpp │ │ │ │ │ ├── iterator.hpp │ │ │ │ │ ├── numbered.hpp │ │ │ │ │ ├── numbered_c.hpp │ │ │ │ │ ├── pop_front.hpp │ │ │ │ │ ├── preprocessed │ │ │ │ │ │ └── plain │ │ │ │ │ │ │ ├── list10.hpp │ │ │ │ │ │ │ ├── list10_c.hpp │ │ │ │ │ │ │ ├── list20.hpp │ │ │ │ │ │ │ ├── list20_c.hpp │ │ │ │ │ │ │ ├── list30.hpp │ │ │ │ │ │ │ ├── list30_c.hpp │ │ │ │ │ │ │ ├── list40.hpp │ │ │ │ │ │ │ ├── list40_c.hpp │ │ │ │ │ │ │ ├── list50.hpp │ │ │ │ │ │ │ └── list50_c.hpp │ │ │ │ │ ├── push_back.hpp │ │ │ │ │ ├── push_front.hpp │ │ │ │ │ ├── size.hpp │ │ │ │ │ └── tag.hpp │ │ │ │ ├── list0.hpp │ │ │ │ ├── list0_c.hpp │ │ │ │ ├── list10.hpp │ │ │ │ ├── list10_c.hpp │ │ │ │ ├── list20.hpp │ │ │ │ ├── list20_c.hpp │ │ │ │ ├── list30.hpp │ │ │ │ ├── list30_c.hpp │ │ │ │ ├── list40.hpp │ │ │ │ ├── list40_c.hpp │ │ │ │ ├── list50.hpp │ │ │ │ └── list50_c.hpp │ │ │ ├── list_c.hpp │ │ │ ├── logical.hpp │ │ │ ├── long.hpp │ │ │ ├── long_fwd.hpp │ │ │ ├── lower_bound.hpp │ │ │ ├── map.hpp │ │ │ ├── map │ │ │ │ ├── aux_ │ │ │ │ │ ├── at_impl.hpp │ │ │ │ │ ├── begin_end_impl.hpp │ │ │ │ │ ├── clear_impl.hpp │ │ │ │ │ ├── contains_impl.hpp │ │ │ │ │ ├── empty_impl.hpp │ │ │ │ │ ├── erase_impl.hpp │ │ │ │ │ ├── erase_key_impl.hpp │ │ │ │ │ ├── has_key_impl.hpp │ │ │ │ │ ├── include_preprocessed.hpp │ │ │ │ │ ├── insert_impl.hpp │ │ │ │ │ ├── insert_range_impl.hpp │ │ │ │ │ ├── item.hpp │ │ │ │ │ ├── iterator.hpp │ │ │ │ │ ├── key_type_impl.hpp │ │ │ │ │ ├── map0.hpp │ │ │ │ │ ├── numbered.hpp │ │ │ │ │ ├── preprocessed │ │ │ │ │ │ ├── no_ctps │ │ │ │ │ │ │ ├── map10.hpp │ │ │ │ │ │ │ ├── map20.hpp │ │ │ │ │ │ │ ├── map30.hpp │ │ │ │ │ │ │ ├── map40.hpp │ │ │ │ │ │ │ └── map50.hpp │ │ │ │ │ │ ├── plain │ │ │ │ │ │ │ ├── map10.hpp │ │ │ │ │ │ │ ├── map20.hpp │ │ │ │ │ │ │ ├── map30.hpp │ │ │ │ │ │ │ ├── map40.hpp │ │ │ │ │ │ │ └── map50.hpp │ │ │ │ │ │ └── typeof_based │ │ │ │ │ │ │ ├── map10.hpp │ │ │ │ │ │ │ ├── map20.hpp │ │ │ │ │ │ │ ├── map30.hpp │ │ │ │ │ │ │ ├── map40.hpp │ │ │ │ │ │ │ └── map50.hpp │ │ │ │ │ ├── size_impl.hpp │ │ │ │ │ ├── tag.hpp │ │ │ │ │ └── value_type_impl.hpp │ │ │ │ ├── map0.hpp │ │ │ │ ├── map10.hpp │ │ │ │ ├── map20.hpp │ │ │ │ ├── map30.hpp │ │ │ │ ├── map40.hpp │ │ │ │ └── map50.hpp │ │ │ ├── math │ │ │ │ ├── fixed_c.hpp │ │ │ │ ├── is_even.hpp │ │ │ │ └── rational_c.hpp │ │ │ ├── max.hpp │ │ │ ├── max_element.hpp │ │ │ ├── min.hpp │ │ │ ├── min_element.hpp │ │ │ ├── min_max.hpp │ │ │ ├── minus.hpp │ │ │ ├── modulus.hpp │ │ │ ├── multiplies.hpp │ │ │ ├── multiset │ │ │ │ ├── aux_ │ │ │ │ │ ├── count_impl.hpp │ │ │ │ │ ├── insert_impl.hpp │ │ │ │ │ ├── item.hpp │ │ │ │ │ ├── multiset0.hpp │ │ │ │ │ └── tag.hpp │ │ │ │ └── multiset0.hpp │ │ │ ├── negate.hpp │ │ │ ├── next.hpp │ │ │ ├── next_prior.hpp │ │ │ ├── not.hpp │ │ │ ├── not_equal_to.hpp │ │ │ ├── numeric_cast.hpp │ │ │ ├── or.hpp │ │ │ ├── order.hpp │ │ │ ├── order_fwd.hpp │ │ │ ├── pair.hpp │ │ │ ├── pair_view.hpp │ │ │ ├── partition.hpp │ │ │ ├── placeholders.hpp │ │ │ ├── plus.hpp │ │ │ ├── pop_back.hpp │ │ │ ├── pop_back_fwd.hpp │ │ │ ├── pop_front.hpp │ │ │ ├── pop_front_fwd.hpp │ │ │ ├── print.hpp │ │ │ ├── prior.hpp │ │ │ ├── protect.hpp │ │ │ ├── push_back.hpp │ │ │ ├── push_back_fwd.hpp │ │ │ ├── push_front.hpp │ │ │ ├── push_front_fwd.hpp │ │ │ ├── quote.hpp │ │ │ ├── range_c.hpp │ │ │ ├── remove.hpp │ │ │ ├── remove_if.hpp │ │ │ ├── replace.hpp │ │ │ ├── replace_if.hpp │ │ │ ├── reverse.hpp │ │ │ ├── reverse_fold.hpp │ │ │ ├── reverse_iter_fold.hpp │ │ │ ├── same_as.hpp │ │ │ ├── sequence_tag.hpp │ │ │ ├── sequence_tag_fwd.hpp │ │ │ ├── set.hpp │ │ │ ├── set │ │ │ │ ├── aux_ │ │ │ │ │ ├── at_impl.hpp │ │ │ │ │ ├── begin_end_impl.hpp │ │ │ │ │ ├── clear_impl.hpp │ │ │ │ │ ├── empty_impl.hpp │ │ │ │ │ ├── erase_impl.hpp │ │ │ │ │ ├── erase_key_impl.hpp │ │ │ │ │ ├── has_key_impl.hpp │ │ │ │ │ ├── include_preprocessed.hpp │ │ │ │ │ ├── insert_impl.hpp │ │ │ │ │ ├── insert_range_impl.hpp │ │ │ │ │ ├── item.hpp │ │ │ │ │ ├── iterator.hpp │ │ │ │ │ ├── key_type_impl.hpp │ │ │ │ │ ├── numbered.hpp │ │ │ │ │ ├── numbered_c.hpp │ │ │ │ │ ├── preprocessed │ │ │ │ │ │ └── plain │ │ │ │ │ │ │ ├── set10.hpp │ │ │ │ │ │ │ ├── set10_c.hpp │ │ │ │ │ │ │ ├── set20.hpp │ │ │ │ │ │ │ ├── set20_c.hpp │ │ │ │ │ │ │ ├── set30.hpp │ │ │ │ │ │ │ ├── set30_c.hpp │ │ │ │ │ │ │ ├── set40.hpp │ │ │ │ │ │ │ ├── set40_c.hpp │ │ │ │ │ │ │ ├── set50.hpp │ │ │ │ │ │ │ └── set50_c.hpp │ │ │ │ │ ├── set0.hpp │ │ │ │ │ ├── size_impl.hpp │ │ │ │ │ ├── tag.hpp │ │ │ │ │ └── value_type_impl.hpp │ │ │ │ ├── set0.hpp │ │ │ │ ├── set0_c.hpp │ │ │ │ ├── set10.hpp │ │ │ │ ├── set10_c.hpp │ │ │ │ ├── set20.hpp │ │ │ │ ├── set20_c.hpp │ │ │ │ ├── set30.hpp │ │ │ │ ├── set30_c.hpp │ │ │ │ ├── set40.hpp │ │ │ │ ├── set40_c.hpp │ │ │ │ ├── set50.hpp │ │ │ │ └── set50_c.hpp │ │ │ ├── set_c.hpp │ │ │ ├── shift_left.hpp │ │ │ ├── shift_right.hpp │ │ │ ├── single_view.hpp │ │ │ ├── size.hpp │ │ │ ├── size_fwd.hpp │ │ │ ├── size_t.hpp │ │ │ ├── size_t_fwd.hpp │ │ │ ├── sizeof.hpp │ │ │ ├── sort.hpp │ │ │ ├── stable_partition.hpp │ │ │ ├── string.hpp │ │ │ ├── switch.hpp │ │ │ ├── tag.hpp │ │ │ ├── times.hpp │ │ │ ├── transform.hpp │ │ │ ├── transform_view.hpp │ │ │ ├── unique.hpp │ │ │ ├── unpack_args.hpp │ │ │ ├── upper_bound.hpp │ │ │ ├── value_type.hpp │ │ │ ├── value_type_fwd.hpp │ │ │ ├── vector.hpp │ │ │ ├── vector │ │ │ │ ├── aux_ │ │ │ │ │ ├── O1_size.hpp │ │ │ │ │ ├── at.hpp │ │ │ │ │ ├── back.hpp │ │ │ │ │ ├── begin_end.hpp │ │ │ │ │ ├── clear.hpp │ │ │ │ │ ├── empty.hpp │ │ │ │ │ ├── front.hpp │ │ │ │ │ ├── include_preprocessed.hpp │ │ │ │ │ ├── item.hpp │ │ │ │ │ ├── iterator.hpp │ │ │ │ │ ├── numbered.hpp │ │ │ │ │ ├── numbered_c.hpp │ │ │ │ │ ├── pop_back.hpp │ │ │ │ │ ├── pop_front.hpp │ │ │ │ │ ├── preprocessed │ │ │ │ │ │ ├── no_ctps │ │ │ │ │ │ │ ├── vector10.hpp │ │ │ │ │ │ │ ├── vector10_c.hpp │ │ │ │ │ │ │ ├── vector20.hpp │ │ │ │ │ │ │ ├── vector20_c.hpp │ │ │ │ │ │ │ ├── vector30.hpp │ │ │ │ │ │ │ ├── vector30_c.hpp │ │ │ │ │ │ │ ├── vector40.hpp │ │ │ │ │ │ │ ├── vector40_c.hpp │ │ │ │ │ │ │ ├── vector50.hpp │ │ │ │ │ │ │ └── vector50_c.hpp │ │ │ │ │ │ ├── plain │ │ │ │ │ │ │ ├── vector10.hpp │ │ │ │ │ │ │ ├── vector10_c.hpp │ │ │ │ │ │ │ ├── vector20.hpp │ │ │ │ │ │ │ ├── vector20_c.hpp │ │ │ │ │ │ │ ├── vector30.hpp │ │ │ │ │ │ │ ├── vector30_c.hpp │ │ │ │ │ │ │ ├── vector40.hpp │ │ │ │ │ │ │ ├── vector40_c.hpp │ │ │ │ │ │ │ ├── vector50.hpp │ │ │ │ │ │ │ └── vector50_c.hpp │ │ │ │ │ │ └── typeof_based │ │ │ │ │ │ │ ├── vector10.hpp │ │ │ │ │ │ │ ├── vector10_c.hpp │ │ │ │ │ │ │ ├── vector20.hpp │ │ │ │ │ │ │ ├── vector20_c.hpp │ │ │ │ │ │ │ ├── vector30.hpp │ │ │ │ │ │ │ ├── vector30_c.hpp │ │ │ │ │ │ │ ├── vector40.hpp │ │ │ │ │ │ │ ├── vector40_c.hpp │ │ │ │ │ │ │ ├── vector50.hpp │ │ │ │ │ │ │ └── vector50_c.hpp │ │ │ │ │ ├── push_back.hpp │ │ │ │ │ ├── push_front.hpp │ │ │ │ │ ├── size.hpp │ │ │ │ │ ├── tag.hpp │ │ │ │ │ └── vector0.hpp │ │ │ │ ├── vector0.hpp │ │ │ │ ├── vector0_c.hpp │ │ │ │ ├── vector10.hpp │ │ │ │ ├── vector10_c.hpp │ │ │ │ ├── vector20.hpp │ │ │ │ ├── vector20_c.hpp │ │ │ │ ├── vector30.hpp │ │ │ │ ├── vector30_c.hpp │ │ │ │ ├── vector40.hpp │ │ │ │ ├── vector40_c.hpp │ │ │ │ ├── vector50.hpp │ │ │ │ └── vector50_c.hpp │ │ │ ├── vector_c.hpp │ │ │ ├── void.hpp │ │ │ ├── void_fwd.hpp │ │ │ └── zip_view.hpp │ │ ├── none.hpp │ │ ├── none_t.hpp │ │ ├── optional │ │ │ ├── bad_optional_access.hpp │ │ │ ├── optional.hpp │ │ │ ├── optional_fwd.hpp │ │ │ └── optional_io.hpp │ │ ├── preprocessor │ │ │ ├── arithmetic.hpp │ │ │ ├── arithmetic │ │ │ │ ├── add.hpp │ │ │ │ ├── dec.hpp │ │ │ │ ├── detail │ │ │ │ │ └── div_base.hpp │ │ │ │ ├── div.hpp │ │ │ │ ├── inc.hpp │ │ │ │ ├── mod.hpp │ │ │ │ ├── mul.hpp │ │ │ │ └── sub.hpp │ │ │ ├── array.hpp │ │ │ ├── array │ │ │ │ ├── data.hpp │ │ │ │ ├── detail │ │ │ │ │ └── get_data.hpp │ │ │ │ ├── elem.hpp │ │ │ │ ├── enum.hpp │ │ │ │ ├── insert.hpp │ │ │ │ ├── pop_back.hpp │ │ │ │ ├── pop_front.hpp │ │ │ │ ├── push_back.hpp │ │ │ │ ├── push_front.hpp │ │ │ │ ├── remove.hpp │ │ │ │ ├── replace.hpp │ │ │ │ ├── reverse.hpp │ │ │ │ ├── size.hpp │ │ │ │ ├── to_list.hpp │ │ │ │ ├── to_seq.hpp │ │ │ │ └── to_tuple.hpp │ │ │ ├── assert_msg.hpp │ │ │ ├── cat.hpp │ │ │ ├── comma.hpp │ │ │ ├── comma_if.hpp │ │ │ ├── comparison.hpp │ │ │ ├── comparison │ │ │ │ ├── equal.hpp │ │ │ │ ├── greater.hpp │ │ │ │ ├── greater_equal.hpp │ │ │ │ ├── less.hpp │ │ │ │ ├── less_equal.hpp │ │ │ │ └── not_equal.hpp │ │ │ ├── config │ │ │ │ ├── config.hpp │ │ │ │ └── limits.hpp │ │ │ ├── control.hpp │ │ │ ├── control │ │ │ │ ├── deduce_d.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── dmc │ │ │ │ │ │ └── while.hpp │ │ │ │ │ ├── edg │ │ │ │ │ │ └── while.hpp │ │ │ │ │ ├── msvc │ │ │ │ │ │ └── while.hpp │ │ │ │ │ └── while.hpp │ │ │ │ ├── expr_if.hpp │ │ │ │ ├── expr_iif.hpp │ │ │ │ ├── if.hpp │ │ │ │ ├── iif.hpp │ │ │ │ └── while.hpp │ │ │ ├── debug.hpp │ │ │ ├── debug │ │ │ │ ├── assert.hpp │ │ │ │ ├── error.hpp │ │ │ │ └── line.hpp │ │ │ ├── dec.hpp │ │ │ ├── detail │ │ │ │ ├── auto_rec.hpp │ │ │ │ ├── check.hpp │ │ │ │ ├── dmc │ │ │ │ │ └── auto_rec.hpp │ │ │ │ ├── is_binary.hpp │ │ │ │ ├── is_nullary.hpp │ │ │ │ ├── is_unary.hpp │ │ │ │ ├── null.hpp │ │ │ │ └── split.hpp │ │ │ ├── empty.hpp │ │ │ ├── enum.hpp │ │ │ ├── enum_params.hpp │ │ │ ├── enum_params_with_a_default.hpp │ │ │ ├── enum_params_with_defaults.hpp │ │ │ ├── enum_shifted.hpp │ │ │ ├── enum_shifted_params.hpp │ │ │ ├── expand.hpp │ │ │ ├── expr_if.hpp │ │ │ ├── facilities.hpp │ │ │ ├── facilities │ │ │ │ ├── apply.hpp │ │ │ │ ├── detail │ │ │ │ │ └── is_empty.hpp │ │ │ │ ├── empty.hpp │ │ │ │ ├── expand.hpp │ │ │ │ ├── identity.hpp │ │ │ │ ├── intercept.hpp │ │ │ │ ├── is_1.hpp │ │ │ │ ├── is_empty.hpp │ │ │ │ ├── is_empty_or_1.hpp │ │ │ │ ├── is_empty_variadic.hpp │ │ │ │ └── overload.hpp │ │ │ ├── for.hpp │ │ │ ├── identity.hpp │ │ │ ├── if.hpp │ │ │ ├── inc.hpp │ │ │ ├── iterate.hpp │ │ │ ├── iteration.hpp │ │ │ ├── iteration │ │ │ │ ├── detail │ │ │ │ │ ├── bounds │ │ │ │ │ │ ├── lower1.hpp │ │ │ │ │ │ ├── lower2.hpp │ │ │ │ │ │ ├── lower3.hpp │ │ │ │ │ │ ├── lower4.hpp │ │ │ │ │ │ ├── lower5.hpp │ │ │ │ │ │ ├── upper1.hpp │ │ │ │ │ │ ├── upper2.hpp │ │ │ │ │ │ ├── upper3.hpp │ │ │ │ │ │ ├── upper4.hpp │ │ │ │ │ │ └── upper5.hpp │ │ │ │ │ ├── finish.hpp │ │ │ │ │ ├── iter │ │ │ │ │ │ ├── forward1.hpp │ │ │ │ │ │ ├── forward2.hpp │ │ │ │ │ │ ├── forward3.hpp │ │ │ │ │ │ ├── forward4.hpp │ │ │ │ │ │ ├── forward5.hpp │ │ │ │ │ │ ├── reverse1.hpp │ │ │ │ │ │ ├── reverse2.hpp │ │ │ │ │ │ ├── reverse3.hpp │ │ │ │ │ │ ├── reverse4.hpp │ │ │ │ │ │ └── reverse5.hpp │ │ │ │ │ ├── local.hpp │ │ │ │ │ ├── rlocal.hpp │ │ │ │ │ ├── self.hpp │ │ │ │ │ └── start.hpp │ │ │ │ ├── iterate.hpp │ │ │ │ ├── local.hpp │ │ │ │ └── self.hpp │ │ │ ├── library.hpp │ │ │ ├── limits.hpp │ │ │ ├── list.hpp │ │ │ ├── list │ │ │ │ ├── adt.hpp │ │ │ │ ├── append.hpp │ │ │ │ ├── at.hpp │ │ │ │ ├── cat.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── dmc │ │ │ │ │ │ └── fold_left.hpp │ │ │ │ │ ├── edg │ │ │ │ │ │ ├── fold_left.hpp │ │ │ │ │ │ └── fold_right.hpp │ │ │ │ │ ├── fold_left.hpp │ │ │ │ │ └── fold_right.hpp │ │ │ │ ├── enum.hpp │ │ │ │ ├── filter.hpp │ │ │ │ ├── first_n.hpp │ │ │ │ ├── fold_left.hpp │ │ │ │ ├── fold_right.hpp │ │ │ │ ├── for_each.hpp │ │ │ │ ├── for_each_i.hpp │ │ │ │ ├── for_each_product.hpp │ │ │ │ ├── rest_n.hpp │ │ │ │ ├── reverse.hpp │ │ │ │ ├── size.hpp │ │ │ │ ├── to_array.hpp │ │ │ │ ├── to_seq.hpp │ │ │ │ ├── to_tuple.hpp │ │ │ │ └── transform.hpp │ │ │ ├── logical.hpp │ │ │ ├── logical │ │ │ │ ├── and.hpp │ │ │ │ ├── bitand.hpp │ │ │ │ ├── bitnor.hpp │ │ │ │ ├── bitor.hpp │ │ │ │ ├── bitxor.hpp │ │ │ │ ├── bool.hpp │ │ │ │ ├── compl.hpp │ │ │ │ ├── nor.hpp │ │ │ │ ├── not.hpp │ │ │ │ ├── or.hpp │ │ │ │ └── xor.hpp │ │ │ ├── max.hpp │ │ │ ├── min.hpp │ │ │ ├── punctuation.hpp │ │ │ ├── punctuation │ │ │ │ ├── comma.hpp │ │ │ │ ├── comma_if.hpp │ │ │ │ ├── detail │ │ │ │ │ └── is_begin_parens.hpp │ │ │ │ ├── is_begin_parens.hpp │ │ │ │ ├── paren.hpp │ │ │ │ ├── paren_if.hpp │ │ │ │ └── remove_parens.hpp │ │ │ ├── repeat.hpp │ │ │ ├── repeat_2nd.hpp │ │ │ ├── repeat_3rd.hpp │ │ │ ├── repeat_from_to.hpp │ │ │ ├── repeat_from_to_2nd.hpp │ │ │ ├── repeat_from_to_3rd.hpp │ │ │ ├── repetition.hpp │ │ │ ├── repetition │ │ │ │ ├── deduce_r.hpp │ │ │ │ ├── deduce_z.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── dmc │ │ │ │ │ │ └── for.hpp │ │ │ │ │ ├── edg │ │ │ │ │ │ └── for.hpp │ │ │ │ │ ├── for.hpp │ │ │ │ │ └── msvc │ │ │ │ │ │ └── for.hpp │ │ │ │ ├── enum.hpp │ │ │ │ ├── enum_binary_params.hpp │ │ │ │ ├── enum_params.hpp │ │ │ │ ├── enum_params_with_a_default.hpp │ │ │ │ ├── enum_params_with_defaults.hpp │ │ │ │ ├── enum_shifted.hpp │ │ │ │ ├── enum_shifted_binary_params.hpp │ │ │ │ ├── enum_shifted_params.hpp │ │ │ │ ├── enum_trailing.hpp │ │ │ │ ├── enum_trailing_binary_params.hpp │ │ │ │ ├── enum_trailing_params.hpp │ │ │ │ ├── for.hpp │ │ │ │ ├── repeat.hpp │ │ │ │ └── repeat_from_to.hpp │ │ │ ├── selection.hpp │ │ │ ├── selection │ │ │ │ ├── max.hpp │ │ │ │ └── min.hpp │ │ │ ├── seq.hpp │ │ │ ├── seq │ │ │ │ ├── cat.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── binary_transform.hpp │ │ │ │ │ ├── is_empty.hpp │ │ │ │ │ └── split.hpp │ │ │ │ ├── elem.hpp │ │ │ │ ├── enum.hpp │ │ │ │ ├── filter.hpp │ │ │ │ ├── first_n.hpp │ │ │ │ ├── fold_left.hpp │ │ │ │ ├── fold_right.hpp │ │ │ │ ├── for_each.hpp │ │ │ │ ├── for_each_i.hpp │ │ │ │ ├── for_each_product.hpp │ │ │ │ ├── insert.hpp │ │ │ │ ├── pop_back.hpp │ │ │ │ ├── pop_front.hpp │ │ │ │ ├── push_back.hpp │ │ │ │ ├── push_front.hpp │ │ │ │ ├── remove.hpp │ │ │ │ ├── replace.hpp │ │ │ │ ├── rest_n.hpp │ │ │ │ ├── reverse.hpp │ │ │ │ ├── seq.hpp │ │ │ │ ├── size.hpp │ │ │ │ ├── subseq.hpp │ │ │ │ ├── to_array.hpp │ │ │ │ ├── to_list.hpp │ │ │ │ ├── to_tuple.hpp │ │ │ │ ├── transform.hpp │ │ │ │ └── variadic_seq_to_seq.hpp │ │ │ ├── slot.hpp │ │ │ ├── slot │ │ │ │ ├── counter.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── counter.hpp │ │ │ │ │ ├── def.hpp │ │ │ │ │ ├── shared.hpp │ │ │ │ │ ├── slot1.hpp │ │ │ │ │ ├── slot2.hpp │ │ │ │ │ ├── slot3.hpp │ │ │ │ │ ├── slot4.hpp │ │ │ │ │ └── slot5.hpp │ │ │ │ └── slot.hpp │ │ │ ├── stringize.hpp │ │ │ ├── tuple.hpp │ │ │ ├── tuple │ │ │ │ ├── detail │ │ │ │ │ └── is_single_return.hpp │ │ │ │ ├── eat.hpp │ │ │ │ ├── elem.hpp │ │ │ │ ├── enum.hpp │ │ │ │ ├── insert.hpp │ │ │ │ ├── pop_back.hpp │ │ │ │ ├── pop_front.hpp │ │ │ │ ├── push_back.hpp │ │ │ │ ├── push_front.hpp │ │ │ │ ├── rem.hpp │ │ │ │ ├── remove.hpp │ │ │ │ ├── replace.hpp │ │ │ │ ├── reverse.hpp │ │ │ │ ├── size.hpp │ │ │ │ ├── to_array.hpp │ │ │ │ ├── to_list.hpp │ │ │ │ └── to_seq.hpp │ │ │ ├── variadic.hpp │ │ │ ├── variadic │ │ │ │ ├── detail │ │ │ │ │ └── is_single_return.hpp │ │ │ │ ├── elem.hpp │ │ │ │ ├── size.hpp │ │ │ │ ├── to_array.hpp │ │ │ │ ├── to_list.hpp │ │ │ │ ├── to_seq.hpp │ │ │ │ └── to_tuple.hpp │ │ │ ├── while.hpp │ │ │ └── wstringize.hpp │ │ ├── smart_ptr │ │ │ ├── allocate_shared_array.hpp │ │ │ ├── bad_weak_ptr.hpp │ │ │ ├── detail │ │ │ │ ├── array_allocator.hpp │ │ │ │ ├── array_count_impl.hpp │ │ │ │ ├── array_traits.hpp │ │ │ │ ├── array_utility.hpp │ │ │ │ ├── atomic_count.hpp │ │ │ │ ├── atomic_count_gcc.hpp │ │ │ │ ├── atomic_count_gcc_x86.hpp │ │ │ │ ├── atomic_count_nt.hpp │ │ │ │ ├── atomic_count_pt.hpp │ │ │ │ ├── atomic_count_solaris.hpp │ │ │ │ ├── atomic_count_spin.hpp │ │ │ │ ├── atomic_count_std_atomic.hpp │ │ │ │ ├── atomic_count_sync.hpp │ │ │ │ ├── atomic_count_win32.hpp │ │ │ │ ├── lightweight_mutex.hpp │ │ │ │ ├── lwm_nop.hpp │ │ │ │ ├── lwm_pthreads.hpp │ │ │ │ ├── lwm_win32_cs.hpp │ │ │ │ ├── operator_bool.hpp │ │ │ │ ├── quick_allocator.hpp │ │ │ │ ├── shared_count.hpp │ │ │ │ ├── sp_convertible.hpp │ │ │ │ ├── sp_counted_base.hpp │ │ │ │ ├── sp_counted_base_acc_ia64.hpp │ │ │ │ ├── sp_counted_base_aix.hpp │ │ │ │ ├── sp_counted_base_clang.hpp │ │ │ │ ├── sp_counted_base_cw_ppc.hpp │ │ │ │ ├── sp_counted_base_cw_x86.hpp │ │ │ │ ├── sp_counted_base_gcc_ia64.hpp │ │ │ │ ├── sp_counted_base_gcc_mips.hpp │ │ │ │ ├── sp_counted_base_gcc_ppc.hpp │ │ │ │ ├── sp_counted_base_gcc_sparc.hpp │ │ │ │ ├── sp_counted_base_gcc_x86.hpp │ │ │ │ ├── sp_counted_base_nt.hpp │ │ │ │ ├── sp_counted_base_pt.hpp │ │ │ │ ├── sp_counted_base_snc_ps3.hpp │ │ │ │ ├── sp_counted_base_solaris.hpp │ │ │ │ ├── sp_counted_base_spin.hpp │ │ │ │ ├── sp_counted_base_std_atomic.hpp │ │ │ │ ├── sp_counted_base_sync.hpp │ │ │ │ ├── sp_counted_base_vacpp_ppc.hpp │ │ │ │ ├── sp_counted_base_w32.hpp │ │ │ │ ├── sp_counted_impl.hpp │ │ │ │ ├── sp_forward.hpp │ │ │ │ ├── sp_has_sync.hpp │ │ │ │ ├── sp_if_array.hpp │ │ │ │ ├── sp_interlocked.hpp │ │ │ │ ├── sp_nullptr_t.hpp │ │ │ │ ├── spinlock.hpp │ │ │ │ ├── spinlock_gcc_arm.hpp │ │ │ │ ├── spinlock_nt.hpp │ │ │ │ ├── spinlock_pool.hpp │ │ │ │ ├── spinlock_pt.hpp │ │ │ │ ├── spinlock_std_atomic.hpp │ │ │ │ ├── spinlock_sync.hpp │ │ │ │ ├── spinlock_w32.hpp │ │ │ │ ├── up_if_array.hpp │ │ │ │ ├── up_if_not_array.hpp │ │ │ │ └── yield_k.hpp │ │ │ ├── enable_shared_from_raw.hpp │ │ │ ├── enable_shared_from_this.hpp │ │ │ ├── intrusive_ptr.hpp │ │ │ ├── intrusive_ref_counter.hpp │ │ │ ├── make_shared.hpp │ │ │ ├── make_shared_array.hpp │ │ │ ├── make_shared_object.hpp │ │ │ ├── make_unique.hpp │ │ │ ├── make_unique_array.hpp │ │ │ ├── make_unique_object.hpp │ │ │ ├── owner_less.hpp │ │ │ ├── scoped_array.hpp │ │ │ ├── scoped_ptr.hpp │ │ │ ├── shared_array.hpp │ │ │ ├── shared_ptr.hpp │ │ │ └── weak_ptr.hpp │ │ ├── static_assert.hpp │ │ ├── throw_exception.hpp │ │ ├── type.hpp │ │ ├── type_traits │ │ │ ├── add_const.hpp │ │ │ ├── add_cv.hpp │ │ │ ├── add_lvalue_reference.hpp │ │ │ ├── add_pointer.hpp │ │ │ ├── add_reference.hpp │ │ │ ├── add_rvalue_reference.hpp │ │ │ ├── add_volatile.hpp │ │ │ ├── aligned_storage.hpp │ │ │ ├── alignment_of.hpp │ │ │ ├── alignment_traits.hpp │ │ │ ├── arithmetic_traits.hpp │ │ │ ├── array_traits.hpp │ │ │ ├── broken_compiler_spec.hpp │ │ │ ├── common_type.hpp │ │ │ ├── composite_traits.hpp │ │ │ ├── conditional.hpp │ │ │ ├── config.hpp │ │ │ ├── conversion_traits.hpp │ │ │ ├── cv_traits.hpp │ │ │ ├── decay.hpp │ │ │ ├── detail │ │ │ │ ├── bool_trait_def.hpp │ │ │ │ ├── bool_trait_undef.hpp │ │ │ │ ├── common_type_imp.hpp │ │ │ │ ├── cv_traits_impl.hpp │ │ │ │ ├── false_result.hpp │ │ │ │ ├── has_binary_operator.hpp │ │ │ │ ├── has_postfix_operator.hpp │ │ │ │ ├── has_prefix_operator.hpp │ │ │ │ ├── ice_and.hpp │ │ │ │ ├── ice_eq.hpp │ │ │ │ ├── ice_not.hpp │ │ │ │ ├── ice_or.hpp │ │ │ │ ├── is_function_ptr_helper.hpp │ │ │ │ ├── is_function_ptr_tester.hpp │ │ │ │ ├── is_mem_fun_pointer_impl.hpp │ │ │ │ ├── is_mem_fun_pointer_tester.hpp │ │ │ │ ├── size_t_trait_def.hpp │ │ │ │ ├── size_t_trait_undef.hpp │ │ │ │ ├── template_arity_spec.hpp │ │ │ │ ├── type_trait_def.hpp │ │ │ │ ├── type_trait_undef.hpp │ │ │ │ ├── wrap.hpp │ │ │ │ └── yes_no_type.hpp │ │ │ ├── extent.hpp │ │ │ ├── floating_point_promotion.hpp │ │ │ ├── function_traits.hpp │ │ │ ├── has_bit_and.hpp │ │ │ ├── has_bit_and_assign.hpp │ │ │ ├── has_bit_or.hpp │ │ │ ├── has_bit_or_assign.hpp │ │ │ ├── has_bit_xor.hpp │ │ │ ├── has_bit_xor_assign.hpp │ │ │ ├── has_complement.hpp │ │ │ ├── has_dereference.hpp │ │ │ ├── has_divides.hpp │ │ │ ├── has_divides_assign.hpp │ │ │ ├── has_equal_to.hpp │ │ │ ├── has_greater.hpp │ │ │ ├── has_greater_equal.hpp │ │ │ ├── has_left_shift.hpp │ │ │ ├── has_left_shift_assign.hpp │ │ │ ├── has_less.hpp │ │ │ ├── has_less_equal.hpp │ │ │ ├── has_logical_and.hpp │ │ │ ├── has_logical_not.hpp │ │ │ ├── has_logical_or.hpp │ │ │ ├── has_minus.hpp │ │ │ ├── has_minus_assign.hpp │ │ │ ├── has_modulus.hpp │ │ │ ├── has_modulus_assign.hpp │ │ │ ├── has_multiplies.hpp │ │ │ ├── has_multiplies_assign.hpp │ │ │ ├── has_negate.hpp │ │ │ ├── has_new_operator.hpp │ │ │ ├── has_not_equal_to.hpp │ │ │ ├── has_nothrow_assign.hpp │ │ │ ├── has_nothrow_constructor.hpp │ │ │ ├── has_nothrow_copy.hpp │ │ │ ├── has_nothrow_destructor.hpp │ │ │ ├── has_operator.hpp │ │ │ ├── has_plus.hpp │ │ │ ├── has_plus_assign.hpp │ │ │ ├── has_post_decrement.hpp │ │ │ ├── has_post_increment.hpp │ │ │ ├── has_pre_decrement.hpp │ │ │ ├── has_pre_increment.hpp │ │ │ ├── has_right_shift.hpp │ │ │ ├── has_right_shift_assign.hpp │ │ │ ├── has_trivial_assign.hpp │ │ │ ├── has_trivial_constructor.hpp │ │ │ ├── has_trivial_copy.hpp │ │ │ ├── has_trivial_destructor.hpp │ │ │ ├── has_trivial_move_assign.hpp │ │ │ ├── has_trivial_move_constructor.hpp │ │ │ ├── has_unary_minus.hpp │ │ │ ├── has_unary_plus.hpp │ │ │ ├── has_virtual_destructor.hpp │ │ │ ├── ice.hpp │ │ │ ├── integral_constant.hpp │ │ │ ├── integral_promotion.hpp │ │ │ ├── intrinsics.hpp │ │ │ ├── is_abstract.hpp │ │ │ ├── is_arithmetic.hpp │ │ │ ├── is_array.hpp │ │ │ ├── is_base_and_derived.hpp │ │ │ ├── is_base_of.hpp │ │ │ ├── is_base_of_tr1.hpp │ │ │ ├── is_class.hpp │ │ │ ├── is_complex.hpp │ │ │ ├── is_compound.hpp │ │ │ ├── is_const.hpp │ │ │ ├── is_convertible.hpp │ │ │ ├── is_copy_assignable.hpp │ │ │ ├── is_copy_constructible.hpp │ │ │ ├── is_empty.hpp │ │ │ ├── is_enum.hpp │ │ │ ├── is_final.hpp │ │ │ ├── is_float.hpp │ │ │ ├── is_floating_point.hpp │ │ │ ├── is_function.hpp │ │ │ ├── is_fundamental.hpp │ │ │ ├── is_integral.hpp │ │ │ ├── is_lvalue_reference.hpp │ │ │ ├── is_member_function_pointer.hpp │ │ │ ├── is_member_object_pointer.hpp │ │ │ ├── is_member_pointer.hpp │ │ │ ├── is_nothrow_move_assignable.hpp │ │ │ ├── is_nothrow_move_constructible.hpp │ │ │ ├── is_object.hpp │ │ │ ├── is_pod.hpp │ │ │ ├── is_pointer.hpp │ │ │ ├── is_polymorphic.hpp │ │ │ ├── is_reference.hpp │ │ │ ├── is_rvalue_reference.hpp │ │ │ ├── is_same.hpp │ │ │ ├── is_scalar.hpp │ │ │ ├── is_signed.hpp │ │ │ ├── is_stateless.hpp │ │ │ ├── is_union.hpp │ │ │ ├── is_unsigned.hpp │ │ │ ├── is_virtual_base_of.hpp │ │ │ ├── is_void.hpp │ │ │ ├── is_volatile.hpp │ │ │ ├── make_signed.hpp │ │ │ ├── make_unsigned.hpp │ │ │ ├── object_traits.hpp │ │ │ ├── promote.hpp │ │ │ ├── rank.hpp │ │ │ ├── reference_traits.hpp │ │ │ ├── remove_all_extents.hpp │ │ │ ├── remove_bounds.hpp │ │ │ ├── remove_const.hpp │ │ │ ├── remove_cv.hpp │ │ │ ├── remove_extent.hpp │ │ │ ├── remove_pointer.hpp │ │ │ ├── remove_reference.hpp │ │ │ ├── remove_volatile.hpp │ │ │ ├── same_traits.hpp │ │ │ ├── transform_traits.hpp │ │ │ ├── transform_traits_spec.hpp │ │ │ └── type_with_alignment.hpp │ │ └── utility │ │ │ ├── addressof.hpp │ │ │ ├── base_from_member.hpp │ │ │ ├── binary.hpp │ │ │ ├── compare_pointees.hpp │ │ │ ├── declval.hpp │ │ │ ├── detail │ │ │ ├── in_place_factory_prefix.hpp │ │ │ ├── in_place_factory_suffix.hpp │ │ │ └── result_of_iterate.hpp │ │ │ ├── empty_deleter.hpp │ │ │ ├── enable_if.hpp │ │ │ ├── explicit_operator_bool.hpp │ │ │ ├── identity_type.hpp │ │ │ ├── in_place_factory.hpp │ │ │ ├── result_of.hpp │ │ │ ├── string_ref.hpp │ │ │ ├── string_ref_fwd.hpp │ │ │ ├── swap.hpp │ │ │ ├── typed_in_place_factory.hpp │ │ │ └── value_init.hpp │ ├── bsoncxx │ │ └── v_noabi │ │ │ └── bsoncxx │ │ │ ├── array │ │ │ ├── element.hpp │ │ │ ├── value.hpp │ │ │ ├── view.hpp │ │ │ └── view_or_value.hpp │ │ │ ├── builder │ │ │ ├── basic │ │ │ │ ├── array.hpp │ │ │ │ ├── document.hpp │ │ │ │ ├── helpers.hpp │ │ │ │ ├── impl.hpp │ │ │ │ ├── kvp.hpp │ │ │ │ ├── sub_array.hpp │ │ │ │ └── sub_document.hpp │ │ │ ├── concatenate.hpp │ │ │ ├── core.hpp │ │ │ └── stream │ │ │ │ ├── array.hpp │ │ │ │ ├── array_context.hpp │ │ │ │ ├── closed_context.hpp │ │ │ │ ├── document.hpp │ │ │ │ ├── helpers.hpp │ │ │ │ ├── key_context.hpp │ │ │ │ ├── single_context.hpp │ │ │ │ └── value_context.hpp │ │ │ ├── config │ │ │ ├── compiler.hpp │ │ │ ├── config.hpp │ │ │ ├── export.hpp │ │ │ ├── postlude.hpp │ │ │ ├── prelude.hpp │ │ │ └── version.hpp │ │ │ ├── document │ │ │ ├── element.hpp │ │ │ ├── value.hpp │ │ │ ├── view.hpp │ │ │ └── view_or_value.hpp │ │ │ ├── enums │ │ │ ├── binary_sub_type.hpp │ │ │ └── type.hpp │ │ │ ├── exception │ │ │ ├── error_code.hpp │ │ │ └── exception.hpp │ │ │ ├── json.hpp │ │ │ ├── oid.hpp │ │ │ ├── stdx │ │ │ ├── make_unique.hpp │ │ │ ├── optional.hpp │ │ │ └── string_view.hpp │ │ │ ├── string │ │ │ └── view_or_value.hpp │ │ │ ├── types.hpp │ │ │ ├── types │ │ │ └── value.hpp │ │ │ ├── util │ │ │ └── functor.hpp │ │ │ ├── validate.hpp │ │ │ └── view_or_value.hpp │ ├── libbson-1.0 │ │ ├── bcon.h │ │ ├── bson-atomic.h │ │ ├── bson-clock.h │ │ ├── bson-compat.h │ │ ├── bson-config.h │ │ ├── bson-context.h │ │ ├── bson-endian.h │ │ ├── bson-error.h │ │ ├── bson-iter.h │ │ ├── bson-json.h │ │ ├── bson-keys.h │ │ ├── bson-macros.h │ │ ├── bson-md5.h │ │ ├── bson-memory.h │ │ ├── bson-oid.h │ │ ├── bson-reader.h │ │ ├── bson-stdint-win32.h │ │ ├── bson-stdint.h │ │ ├── bson-string.h │ │ ├── bson-types.h │ │ ├── bson-utf8.h │ │ ├── bson-value.h │ │ ├── bson-version-functions.h │ │ ├── bson-version.h │ │ ├── bson-writer.h │ │ └── bson.h │ ├── libmongoc-1.0 │ │ ├── mongoc-apm-private.h │ │ ├── mongoc-apm.h │ │ ├── mongoc-bulk-operation.h │ │ ├── mongoc-client-pool.h │ │ ├── mongoc-client.h │ │ ├── mongoc-collection.h │ │ ├── mongoc-config.h │ │ ├── mongoc-cursor.h │ │ ├── mongoc-database.h │ │ ├── mongoc-error.h │ │ ├── mongoc-find-and-modify.h │ │ ├── mongoc-flags.h │ │ ├── mongoc-gridfs-file-list.h │ │ ├── mongoc-gridfs-file-page.h │ │ ├── mongoc-gridfs-file.h │ │ ├── mongoc-gridfs.h │ │ ├── mongoc-host-list.h │ │ ├── mongoc-index.h │ │ ├── mongoc-init.h │ │ ├── mongoc-iovec.h │ │ ├── mongoc-log.h │ │ ├── mongoc-matcher.h │ │ ├── mongoc-opcode-private.h │ │ ├── mongoc-opcode.h │ │ ├── mongoc-read-concern.h │ │ ├── mongoc-read-prefs.h │ │ ├── mongoc-server-description.h │ │ ├── mongoc-socket-private.h │ │ ├── mongoc-socket.h │ │ ├── mongoc-stream-buffered.h │ │ ├── mongoc-stream-file.h │ │ ├── mongoc-stream-gridfs.h │ │ ├── mongoc-stream-socket.h │ │ ├── mongoc-stream-tls-openssl-bio-private.h │ │ ├── mongoc-stream-tls-openssl-private.h │ │ ├── mongoc-stream-tls-openssl.h │ │ ├── mongoc-stream-tls-private.h │ │ ├── mongoc-stream.h │ │ ├── mongoc-uri.h │ │ ├── mongoc-version-functions.h │ │ ├── mongoc-version.h │ │ ├── mongoc-write-concern.h │ │ └── mongoc.h │ └── mongocxx │ │ └── v_noabi │ │ └── mongocxx │ │ ├── bulk_write.hpp │ │ ├── client.hpp │ │ ├── collection.hpp │ │ ├── config │ │ ├── compiler.hpp │ │ ├── config.hpp │ │ ├── export.hpp │ │ ├── postlude.hpp │ │ ├── prelude.hpp │ │ └── version.hpp │ │ ├── cursor.hpp │ │ ├── database.hpp │ │ ├── exception │ │ ├── authentication_exception.hpp │ │ ├── bulk_write_exception.hpp │ │ ├── error_code.hpp │ │ ├── exception.hpp │ │ ├── logic_error.hpp │ │ ├── operation_exception.hpp │ │ ├── query_exception.hpp │ │ ├── server_error_code.hpp │ │ └── write_exception.hpp │ │ ├── hint.hpp │ │ ├── insert_many_builder.hpp │ │ ├── instance.hpp │ │ ├── logger.hpp │ │ ├── model │ │ ├── delete_many.hpp │ │ ├── delete_one.hpp │ │ ├── insert_one.hpp │ │ ├── replace_one.hpp │ │ ├── update_many.hpp │ │ ├── update_one.hpp │ │ └── write.hpp │ │ ├── options │ │ ├── aggregate.hpp │ │ ├── bulk_write.hpp │ │ ├── client.hpp │ │ ├── count.hpp │ │ ├── create_collection.hpp │ │ ├── delete.hpp │ │ ├── distinct.hpp │ │ ├── find.hpp │ │ ├── find_one_and_delete.hpp │ │ ├── find_one_and_replace.hpp │ │ ├── find_one_and_update.hpp │ │ ├── find_one_common_options.hpp │ │ ├── index.hpp │ │ ├── insert.hpp │ │ ├── modify_collection.hpp │ │ ├── ssl.hpp │ │ └── update.hpp │ │ ├── pipeline.hpp │ │ ├── pool.hpp │ │ ├── read_concern.hpp │ │ ├── read_preference.hpp │ │ ├── result │ │ ├── bulk_write.hpp │ │ ├── delete.hpp │ │ ├── insert_many.hpp │ │ ├── insert_one.hpp │ │ ├── replace_one.hpp │ │ └── update.hpp │ │ ├── stdx.hpp │ │ ├── uri.hpp │ │ ├── validation_criteria.hpp │ │ ├── write_concern.hpp │ │ └── write_type.hpp └── Public │ ├── EMOSDB.h │ └── Framework │ ├── Structures │ └── FMongoDocumentTemplate.h │ ├── UMongoClient.h │ ├── UMongoCollection.h │ ├── UMongoDatabase.h │ └── UMongoDocument.h ├── EMOSRPG ├── Classes │ ├── EMOSRPG.cpp │ └── Framework │ │ ├── ARPGCharacter.cpp │ │ ├── ARPGPlayableCharacter.cpp │ │ ├── ARPGPlayerController.cpp │ │ ├── Actors │ │ └── ARPGBaseItem.cpp │ │ ├── Components │ │ ├── URPGCombatComponent.cpp │ │ └── URPGSocialComponent.cpp │ │ └── Interfaces │ │ └── IRPGCombatInterface.cpp ├── EMOSRPG.Build.cs ├── Private │ ├── EMOSRPGPCH.h │ └── Framework │ │ └── Components │ │ └── SocialComponentServices.h ├── Public │ ├── EMOSRPG.h │ └── Framework │ │ ├── ARPGCharacter.h │ │ ├── ARPGPlayableCharacter.h │ │ ├── ARPGPlayerController.h │ │ ├── Actors │ │ └── ARPGBaseItem.h │ │ ├── Components │ │ ├── URPGCombatComponent.h │ │ └── URPGSocialComponent.h │ │ ├── Data │ │ └── DataAssets │ │ │ ├── URPGCharacterData.h │ │ │ └── URPGPlayerProgressionData.h │ │ ├── Enumerations │ │ ├── ERPGCharacterType.h │ │ ├── ERPGChatMessageArea.h │ │ ├── ERPGEquipmentStatType.h │ │ ├── ERPGItemCategory.h │ │ ├── ERPGItemRarity.h │ │ ├── ERPGSkillType.h │ │ ├── ERPGStatRarity.h │ │ ├── ERPGStatsUpdateType.h │ │ ├── ERPGTargetAttribute.h │ │ └── ERPGTargetDamageType.h │ │ ├── Interfaces │ │ └── IRPGCombatInterface.h │ │ └── Structures │ │ ├── FRPGCharacterStats.h │ │ ├── FRPGChatMessage.h │ │ ├── FRPGCombatStats.h │ │ ├── FRPGEquipmentStat.h │ │ ├── FRPGItemIcon.h │ │ ├── FRPGItemInfo.h │ │ ├── FRPGMailMessage.h │ │ ├── FRPGPlayerStats.h │ │ ├── FRPGSkillEffect.h │ │ ├── FRPGSkillUsage.h │ │ └── FRPGStatusEffect.h └── README.md └── EMOSWS ├── Classes ├── EMOSWS.cpp └── Framework │ ├── Implementations │ ├── UWebsocketClient_impl.cpp │ ├── UWebsocketConnection_impl.cpp │ └── UWebsocketServer_impl.cpp │ ├── UWebsocketppClient.cpp │ ├── UWebsocketppConnection.cpp │ └── UWebsocketppServer.cpp ├── EMOSWS.Build.cs ├── Private ├── EMOSWSPCH.h ├── Framework │ ├── UWebsocketClient_impl.h │ ├── UWebsocketConnection_impl.h │ └── UWebsocketServer_impl.h ├── asio.hpp ├── asio │ ├── associated_allocator.hpp │ ├── associated_executor.hpp │ ├── async_result.hpp │ ├── basic_datagram_socket.hpp │ ├── basic_deadline_timer.hpp │ ├── basic_io_object.hpp │ ├── basic_raw_socket.hpp │ ├── basic_seq_packet_socket.hpp │ ├── basic_serial_port.hpp │ ├── basic_signal_set.hpp │ ├── basic_socket.hpp │ ├── basic_socket_acceptor.hpp │ ├── basic_socket_iostream.hpp │ ├── basic_socket_streambuf.hpp │ ├── basic_stream_socket.hpp │ ├── basic_streambuf.hpp │ ├── basic_streambuf_fwd.hpp │ ├── basic_waitable_timer.hpp │ ├── buffer.hpp │ ├── buffered_read_stream.hpp │ ├── buffered_read_stream_fwd.hpp │ ├── buffered_stream.hpp │ ├── buffered_stream_fwd.hpp │ ├── buffered_write_stream.hpp │ ├── buffered_write_stream_fwd.hpp │ ├── buffers_iterator.hpp │ ├── completion_condition.hpp │ ├── connect.hpp │ ├── coroutine.hpp │ ├── datagram_socket_service.hpp │ ├── deadline_timer.hpp │ ├── deadline_timer_service.hpp │ ├── defer.hpp │ ├── detail │ │ ├── array.hpp │ │ ├── array_fwd.hpp │ │ ├── assert.hpp │ │ ├── atomic_count.hpp │ │ ├── base_from_completion_cond.hpp │ │ ├── bind_handler.hpp │ │ ├── buffer_resize_guard.hpp │ │ ├── buffer_sequence_adapter.hpp │ │ ├── buffered_stream_storage.hpp │ │ ├── call_stack.hpp │ │ ├── chrono_time_traits.hpp │ │ ├── completion_handler.hpp │ │ ├── config.hpp │ │ ├── consuming_buffers.hpp │ │ ├── cstddef.hpp │ │ ├── cstdint.hpp │ │ ├── date_time_fwd.hpp │ │ ├── deadline_timer_service.hpp │ │ ├── dependent_type.hpp │ │ ├── descriptor_ops.hpp │ │ ├── descriptor_read_op.hpp │ │ ├── descriptor_write_op.hpp │ │ ├── dev_poll_reactor.hpp │ │ ├── epoll_reactor.hpp │ │ ├── event.hpp │ │ ├── eventfd_select_interrupter.hpp │ │ ├── executor_op.hpp │ │ ├── fd_set_adapter.hpp │ │ ├── fenced_block.hpp │ │ ├── functional.hpp │ │ ├── gcc_arm_fenced_block.hpp │ │ ├── gcc_hppa_fenced_block.hpp │ │ ├── gcc_sync_fenced_block.hpp │ │ ├── gcc_x86_fenced_block.hpp │ │ ├── global.hpp │ │ ├── handler_alloc_helpers.hpp │ │ ├── handler_cont_helpers.hpp │ │ ├── handler_invoke_helpers.hpp │ │ ├── handler_tracking.hpp │ │ ├── handler_type_requirements.hpp │ │ ├── handler_work.hpp │ │ ├── hash_map.hpp │ │ ├── impl │ │ │ ├── buffer_sequence_adapter.ipp │ │ │ ├── descriptor_ops.ipp │ │ │ ├── dev_poll_reactor.hpp │ │ │ ├── dev_poll_reactor.ipp │ │ │ ├── epoll_reactor.hpp │ │ │ ├── epoll_reactor.ipp │ │ │ ├── eventfd_select_interrupter.ipp │ │ │ ├── handler_tracking.ipp │ │ │ ├── kqueue_reactor.hpp │ │ │ ├── kqueue_reactor.ipp │ │ │ ├── pipe_select_interrupter.ipp │ │ │ ├── posix_event.ipp │ │ │ ├── posix_mutex.ipp │ │ │ ├── posix_thread.ipp │ │ │ ├── posix_tss_ptr.ipp │ │ │ ├── reactive_descriptor_service.ipp │ │ │ ├── reactive_serial_port_service.ipp │ │ │ ├── reactive_socket_service_base.ipp │ │ │ ├── resolver_service_base.ipp │ │ │ ├── scheduler.ipp │ │ │ ├── select_reactor.hpp │ │ │ ├── select_reactor.ipp │ │ │ ├── service_registry.hpp │ │ │ ├── service_registry.ipp │ │ │ ├── signal_set_service.ipp │ │ │ ├── socket_ops.ipp │ │ │ ├── socket_select_interrupter.ipp │ │ │ ├── strand_executor_service.hpp │ │ │ ├── strand_executor_service.ipp │ │ │ ├── strand_service.hpp │ │ │ ├── strand_service.ipp │ │ │ ├── throw_error.ipp │ │ │ ├── timer_queue_ptime.ipp │ │ │ ├── timer_queue_set.ipp │ │ │ ├── win_event.ipp │ │ │ ├── win_iocp_handle_service.ipp │ │ │ ├── win_iocp_io_service.hpp │ │ │ ├── win_iocp_io_service.ipp │ │ │ ├── win_iocp_serial_port_service.ipp │ │ │ ├── win_iocp_socket_service_base.ipp │ │ │ ├── win_mutex.ipp │ │ │ ├── win_object_handle_service.ipp │ │ │ ├── win_static_mutex.ipp │ │ │ ├── win_thread.ipp │ │ │ ├── win_tss_ptr.ipp │ │ │ ├── winrt_ssocket_service_base.ipp │ │ │ ├── winrt_timer_scheduler.hpp │ │ │ ├── winrt_timer_scheduler.ipp │ │ │ └── winsock_init.ipp │ │ ├── io_control.hpp │ │ ├── is_buffer_sequence.hpp │ │ ├── keyword_tss_ptr.hpp │ │ ├── kqueue_reactor.hpp │ │ ├── limits.hpp │ │ ├── local_free_on_block_exit.hpp │ │ ├── macos_fenced_block.hpp │ │ ├── memory.hpp │ │ ├── mutex.hpp │ │ ├── noncopyable.hpp │ │ ├── null_event.hpp │ │ ├── null_fenced_block.hpp │ │ ├── null_global.hpp │ │ ├── null_mutex.hpp │ │ ├── null_reactor.hpp │ │ ├── null_signal_blocker.hpp │ │ ├── null_socket_service.hpp │ │ ├── null_static_mutex.hpp │ │ ├── null_thread.hpp │ │ ├── null_tss_ptr.hpp │ │ ├── object_pool.hpp │ │ ├── old_win_sdk_compat.hpp │ │ ├── op_queue.hpp │ │ ├── operation.hpp │ │ ├── pipe_select_interrupter.hpp │ │ ├── pop_options.hpp │ │ ├── posix_event.hpp │ │ ├── posix_fd_set_adapter.hpp │ │ ├── posix_global.hpp │ │ ├── posix_mutex.hpp │ │ ├── posix_signal_blocker.hpp │ │ ├── posix_static_mutex.hpp │ │ ├── posix_thread.hpp │ │ ├── posix_tss_ptr.hpp │ │ ├── push_options.hpp │ │ ├── reactive_descriptor_service.hpp │ │ ├── reactive_null_buffers_op.hpp │ │ ├── reactive_serial_port_service.hpp │ │ ├── reactive_socket_accept_op.hpp │ │ ├── reactive_socket_connect_op.hpp │ │ ├── reactive_socket_recv_op.hpp │ │ ├── reactive_socket_recvfrom_op.hpp │ │ ├── reactive_socket_recvmsg_op.hpp │ │ ├── reactive_socket_send_op.hpp │ │ ├── reactive_socket_sendto_op.hpp │ │ ├── reactive_socket_service.hpp │ │ ├── reactive_socket_service_base.hpp │ │ ├── reactive_wait_op.hpp │ │ ├── reactor.hpp │ │ ├── reactor_fwd.hpp │ │ ├── reactor_op.hpp │ │ ├── reactor_op_queue.hpp │ │ ├── recycling_allocator.hpp │ │ ├── regex_fwd.hpp │ │ ├── resolve_endpoint_op.hpp │ │ ├── resolve_op.hpp │ │ ├── resolver_service.hpp │ │ ├── resolver_service_base.hpp │ │ ├── scheduler.hpp │ │ ├── scheduler_operation.hpp │ │ ├── scheduler_thread_info.hpp │ │ ├── scoped_lock.hpp │ │ ├── scoped_ptr.hpp │ │ ├── select_interrupter.hpp │ │ ├── select_reactor.hpp │ │ ├── service_registry.hpp │ │ ├── signal_blocker.hpp │ │ ├── signal_handler.hpp │ │ ├── signal_init.hpp │ │ ├── signal_op.hpp │ │ ├── signal_set_service.hpp │ │ ├── socket_holder.hpp │ │ ├── socket_ops.hpp │ │ ├── socket_option.hpp │ │ ├── socket_select_interrupter.hpp │ │ ├── socket_types.hpp │ │ ├── solaris_fenced_block.hpp │ │ ├── static_mutex.hpp │ │ ├── std_event.hpp │ │ ├── std_global.hpp │ │ ├── std_mutex.hpp │ │ ├── std_static_mutex.hpp │ │ ├── std_thread.hpp │ │ ├── strand_executor_service.hpp │ │ ├── strand_service.hpp │ │ ├── thread.hpp │ │ ├── thread_context.hpp │ │ ├── thread_group.hpp │ │ ├── thread_info_base.hpp │ │ ├── throw_error.hpp │ │ ├── throw_exception.hpp │ │ ├── timer_queue.hpp │ │ ├── timer_queue_base.hpp │ │ ├── timer_queue_ptime.hpp │ │ ├── timer_queue_set.hpp │ │ ├── timer_scheduler.hpp │ │ ├── timer_scheduler_fwd.hpp │ │ ├── tss_ptr.hpp │ │ ├── type_traits.hpp │ │ ├── variadic_templates.hpp │ │ ├── wait_handler.hpp │ │ ├── wait_op.hpp │ │ ├── win_event.hpp │ │ ├── win_fd_set_adapter.hpp │ │ ├── win_fenced_block.hpp │ │ ├── win_global.hpp │ │ ├── win_iocp_handle_read_op.hpp │ │ ├── win_iocp_handle_service.hpp │ │ ├── win_iocp_handle_write_op.hpp │ │ ├── win_iocp_io_service.hpp │ │ ├── win_iocp_null_buffers_op.hpp │ │ ├── win_iocp_operation.hpp │ │ ├── win_iocp_overlapped_op.hpp │ │ ├── win_iocp_overlapped_ptr.hpp │ │ ├── win_iocp_serial_port_service.hpp │ │ ├── win_iocp_socket_accept_op.hpp │ │ ├── win_iocp_socket_connect_op.hpp │ │ ├── win_iocp_socket_recv_op.hpp │ │ ├── win_iocp_socket_recvfrom_op.hpp │ │ ├── win_iocp_socket_recvmsg_op.hpp │ │ ├── win_iocp_socket_send_op.hpp │ │ ├── win_iocp_socket_service.hpp │ │ ├── win_iocp_socket_service_base.hpp │ │ ├── win_iocp_thread_info.hpp │ │ ├── win_iocp_wait_op.hpp │ │ ├── win_mutex.hpp │ │ ├── win_object_handle_service.hpp │ │ ├── win_static_mutex.hpp │ │ ├── win_thread.hpp │ │ ├── win_tss_ptr.hpp │ │ ├── wince_thread.hpp │ │ ├── winrt_async_manager.hpp │ │ ├── winrt_async_op.hpp │ │ ├── winrt_resolve_op.hpp │ │ ├── winrt_resolver_service.hpp │ │ ├── winrt_socket_connect_op.hpp │ │ ├── winrt_socket_recv_op.hpp │ │ ├── winrt_socket_send_op.hpp │ │ ├── winrt_ssocket_service.hpp │ │ ├── winrt_ssocket_service_base.hpp │ │ ├── winrt_timer_scheduler.hpp │ │ ├── winrt_utils.hpp │ │ ├── winsock_init.hpp │ │ ├── work_dispatcher.hpp │ │ └── wrapped_handler.hpp │ ├── dispatch.hpp │ ├── error.hpp │ ├── error_code.hpp │ ├── execution_context.hpp │ ├── executor.hpp │ ├── executor_work.hpp │ ├── generic │ │ ├── basic_endpoint.hpp │ │ ├── datagram_protocol.hpp │ │ ├── detail │ │ │ ├── endpoint.hpp │ │ │ └── impl │ │ │ │ └── endpoint.ipp │ │ ├── raw_protocol.hpp │ │ ├── seq_packet_protocol.hpp │ │ └── stream_protocol.hpp │ ├── handler_alloc_hook.hpp │ ├── handler_continuation_hook.hpp │ ├── handler_invoke_hook.hpp │ ├── handler_type.hpp │ ├── high_resolution_timer.hpp │ ├── impl │ │ ├── buffered_read_stream.hpp │ │ ├── buffered_write_stream.hpp │ │ ├── connect.hpp │ │ ├── defer.hpp │ │ ├── dispatch.hpp │ │ ├── error.ipp │ │ ├── error_code.ipp │ │ ├── execution_context.hpp │ │ ├── execution_context.ipp │ │ ├── executor.hpp │ │ ├── executor.ipp │ │ ├── handler_alloc_hook.ipp │ │ ├── io_service.hpp │ │ ├── io_service.ipp │ │ ├── post.hpp │ │ ├── read.hpp │ │ ├── read_at.hpp │ │ ├── read_until.hpp │ │ ├── serial_port_base.hpp │ │ ├── serial_port_base.ipp │ │ ├── spawn.hpp │ │ ├── src.hpp │ │ ├── system_executor.hpp │ │ ├── system_executor.ipp │ │ ├── thread_pool.hpp │ │ ├── thread_pool.ipp │ │ ├── use_future.hpp │ │ ├── write.hpp │ │ └── write_at.hpp │ ├── io_service.hpp │ ├── io_service_strand.hpp │ ├── ip │ │ ├── address.hpp │ │ ├── address_iterator_v4.hpp │ │ ├── address_iterator_v6.hpp │ │ ├── address_range_v4.hpp │ │ ├── address_range_v6.hpp │ │ ├── address_v4.hpp │ │ ├── address_v6.hpp │ │ ├── bad_address_cast.hpp │ │ ├── basic_endpoint.hpp │ │ ├── basic_resolver.hpp │ │ ├── basic_resolver_entry.hpp │ │ ├── basic_resolver_iterator.hpp │ │ ├── basic_resolver_query.hpp │ │ ├── detail │ │ │ ├── endpoint.hpp │ │ │ ├── impl │ │ │ │ └── endpoint.ipp │ │ │ └── socket_option.hpp │ │ ├── host_name.hpp │ │ ├── icmp.hpp │ │ ├── impl │ │ │ ├── address.hpp │ │ │ ├── address.ipp │ │ │ ├── address_v4.hpp │ │ │ ├── address_v4.ipp │ │ │ ├── address_v6.hpp │ │ │ ├── address_v6.ipp │ │ │ ├── basic_endpoint.hpp │ │ │ ├── host_name.ipp │ │ │ ├── network_v4.hpp │ │ │ ├── network_v4.ipp │ │ │ ├── network_v6.hpp │ │ │ └── network_v6.ipp │ │ ├── multicast.hpp │ │ ├── network_v4.hpp │ │ ├── network_v6.hpp │ │ ├── resolver_query_base.hpp │ │ ├── resolver_service.hpp │ │ ├── tcp.hpp │ │ ├── udp.hpp │ │ ├── unicast.hpp │ │ └── v6_only.hpp │ ├── is_executor.hpp │ ├── is_read_buffered.hpp │ ├── is_write_buffered.hpp │ ├── local │ │ ├── basic_endpoint.hpp │ │ ├── connect_pair.hpp │ │ ├── datagram_protocol.hpp │ │ ├── detail │ │ │ ├── endpoint.hpp │ │ │ └── impl │ │ │ │ └── endpoint.ipp │ │ └── stream_protocol.hpp │ ├── package.hpp │ ├── placeholders.hpp │ ├── posix │ │ ├── basic_descriptor.hpp │ │ ├── basic_stream_descriptor.hpp │ │ ├── descriptor_base.hpp │ │ ├── stream_descriptor.hpp │ │ └── stream_descriptor_service.hpp │ ├── post.hpp │ ├── raw_socket_service.hpp │ ├── read.hpp │ ├── read_at.hpp │ ├── read_until.hpp │ ├── seq_packet_socket_service.hpp │ ├── serial_port.hpp │ ├── serial_port_base.hpp │ ├── serial_port_service.hpp │ ├── signal_set.hpp │ ├── signal_set_service.hpp │ ├── socket_acceptor_service.hpp │ ├── socket_base.hpp │ ├── spawn.hpp │ ├── ssl.hpp │ ├── ssl │ │ ├── context.hpp │ │ ├── context_base.hpp │ │ ├── detail │ │ │ ├── buffered_handshake_op.hpp │ │ │ ├── engine.hpp │ │ │ ├── handshake_op.hpp │ │ │ ├── impl │ │ │ │ ├── engine.ipp │ │ │ │ └── openssl_init.ipp │ │ │ ├── io.hpp │ │ │ ├── openssl_init.hpp │ │ │ ├── openssl_types.hpp │ │ │ ├── password_callback.hpp │ │ │ ├── read_op.hpp │ │ │ ├── shutdown_op.hpp │ │ │ ├── stream_core.hpp │ │ │ ├── verify_callback.hpp │ │ │ └── write_op.hpp │ │ ├── error.hpp │ │ ├── impl │ │ │ ├── context.hpp │ │ │ ├── context.ipp │ │ │ ├── error.ipp │ │ │ ├── rfc2818_verification.ipp │ │ │ └── src.hpp │ │ ├── rfc2818_verification.hpp │ │ ├── stream.hpp │ │ ├── stream_base.hpp │ │ ├── verify_context.hpp │ │ └── verify_mode.hpp │ ├── steady_timer.hpp │ ├── strand.hpp │ ├── stream_socket_service.hpp │ ├── streambuf.hpp │ ├── system_error.hpp │ ├── system_executor.hpp │ ├── system_timer.hpp │ ├── thread.hpp │ ├── thread_pool.hpp │ ├── time_traits.hpp │ ├── ts │ │ ├── buffer.hpp │ │ ├── executor.hpp │ │ ├── internet.hpp │ │ ├── io_service.hpp │ │ ├── networking.hpp │ │ ├── socket.hpp │ │ ├── thread_pool.hpp │ │ └── timer.hpp │ ├── unyield.hpp │ ├── use_future.hpp │ ├── uses_executor.hpp │ ├── version.hpp │ ├── wait_traits.hpp │ ├── waitable_timer_service.hpp │ ├── windows │ │ ├── basic_handle.hpp │ │ ├── basic_object_handle.hpp │ │ ├── basic_random_access_handle.hpp │ │ ├── basic_stream_handle.hpp │ │ ├── object_handle.hpp │ │ ├── object_handle_service.hpp │ │ ├── overlapped_ptr.hpp │ │ ├── random_access_handle.hpp │ │ ├── random_access_handle_service.hpp │ │ ├── stream_handle.hpp │ │ └── stream_handle_service.hpp │ ├── wrap.hpp │ ├── write.hpp │ ├── write_at.hpp │ └── yield.hpp └── websocketpp │ ├── base64 │ └── base64.hpp │ ├── client.hpp │ ├── close.hpp │ ├── common │ ├── asio.hpp │ ├── asio_ssl.hpp │ ├── chrono.hpp │ ├── connection_hdl.hpp │ ├── cpp11.hpp │ ├── functional.hpp │ ├── md5.hpp │ ├── memory.hpp │ ├── network.hpp │ ├── platforms.hpp │ ├── random.hpp │ ├── regex.hpp │ ├── stdint.hpp │ ├── system_error.hpp │ ├── thread.hpp │ ├── time.hpp │ └── type_traits.hpp │ ├── concurrency │ ├── basic.hpp │ └── none.hpp │ ├── config │ ├── asio.hpp │ ├── asio_client.hpp │ ├── asio_no_tls.hpp │ ├── asio_no_tls_client.hpp │ ├── boost_config.hpp │ ├── core.hpp │ ├── core_client.hpp │ ├── debug.hpp │ ├── debug_asio.hpp │ ├── debug_asio_no_tls.hpp │ ├── minimal_client.hpp │ └── minimal_server.hpp │ ├── connection.hpp │ ├── connection_base.hpp │ ├── endpoint.hpp │ ├── endpoint_base.hpp │ ├── error.hpp │ ├── extensions │ ├── extension.hpp │ └── permessage_deflate │ │ ├── disabled.hpp │ │ └── enabled.hpp │ ├── frame.hpp │ ├── http │ ├── constants.hpp │ ├── impl │ │ ├── parser.hpp │ │ ├── request.hpp │ │ └── response.hpp │ ├── parser.hpp │ ├── request.hpp │ └── response.hpp │ ├── impl │ ├── connection_impl.hpp │ ├── endpoint_impl.hpp │ └── utilities_impl.hpp │ ├── logger │ ├── basic.hpp │ ├── levels.hpp │ ├── stub.hpp │ └── syslog.hpp │ ├── message_buffer │ ├── alloc.hpp │ ├── message.hpp │ └── pool.hpp │ ├── processors │ ├── base.hpp │ ├── hybi00.hpp │ ├── hybi07.hpp │ ├── hybi08.hpp │ ├── hybi13.hpp │ └── processor.hpp │ ├── random │ ├── none.hpp │ └── random_device.hpp │ ├── roles │ ├── client_endpoint.hpp │ └── server_endpoint.hpp │ ├── server.hpp │ ├── sha1 │ └── sha1.hpp │ ├── transport │ ├── asio │ │ ├── base.hpp │ │ ├── connection.hpp │ │ ├── endpoint.hpp │ │ └── security │ │ │ ├── base.hpp │ │ │ ├── none.hpp │ │ │ └── tls.hpp │ ├── base │ │ ├── connection.hpp │ │ └── endpoint.hpp │ ├── debug │ │ ├── base.hpp │ │ ├── connection.hpp │ │ └── endpoint.hpp │ ├── iostream │ │ ├── base.hpp │ │ ├── connection.hpp │ │ └── endpoint.hpp │ └── stub │ │ ├── base.hpp │ │ ├── connection.hpp │ │ └── endpoint.hpp │ ├── uri.hpp │ ├── utf8_validator.hpp │ ├── utilities.hpp │ └── version.hpp └── Public ├── EMOSWS.h └── Framework ├── UWebsocketppClient.h ├── UWebsocketppConnection.h └── UWebsocketppServer.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/.gitignore -------------------------------------------------------------------------------- /Binaries/Win64/bsoncxx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Binaries/Win64/bsoncxx.dll -------------------------------------------------------------------------------- /Binaries/Win64/libbson-1.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Binaries/Win64/libbson-1.0.dll -------------------------------------------------------------------------------- /Binaries/Win64/libmongoc-1.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Binaries/Win64/libmongoc-1.0.dll -------------------------------------------------------------------------------- /Binaries/Win64/mongocxx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Binaries/Win64/mongocxx.dll -------------------------------------------------------------------------------- /EMOS.uplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/EMOS.uplugin -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/LICENSE -------------------------------------------------------------------------------- /Libraries/Win64/bson-1.0.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Libraries/Win64/bson-1.0.lib -------------------------------------------------------------------------------- /Libraries/Win64/bsoncxx.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Libraries/Win64/bsoncxx.lib -------------------------------------------------------------------------------- /Libraries/Win64/mongoc-1.0.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Libraries/Win64/mongoc-1.0.lib -------------------------------------------------------------------------------- /Libraries/Win64/mongocxx.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Libraries/Win64/mongocxx.lib -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Resources/Icon128.png -------------------------------------------------------------------------------- /Source/EMOSDB/Classes/EMOSDB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Classes/EMOSDB.cpp -------------------------------------------------------------------------------- /Source/EMOSDB/Classes/Framework/UMongoClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Classes/Framework/UMongoClient.cpp -------------------------------------------------------------------------------- /Source/EMOSDB/Classes/Framework/UMongoCollection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Classes/Framework/UMongoCollection.cpp -------------------------------------------------------------------------------- /Source/EMOSDB/Classes/Framework/UMongoDatabase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Classes/Framework/UMongoDatabase.cpp -------------------------------------------------------------------------------- /Source/EMOSDB/Classes/Framework/UMongoDocument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Classes/Framework/UMongoDocument.cpp -------------------------------------------------------------------------------- /Source/EMOSDB/EMOSDB.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/EMOSDB.Build.cs -------------------------------------------------------------------------------- /Source/EMOSDB/Private/EMOSDBPCH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/EMOSDBPCH.h -------------------------------------------------------------------------------- /Source/EMOSDB/Private/Framework/UMongoClient_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/Framework/UMongoClient_impl.h -------------------------------------------------------------------------------- /Source/EMOSDB/Private/Framework/UMongoDatabase_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/Framework/UMongoDatabase_impl.h -------------------------------------------------------------------------------- /Source/EMOSDB/Private/Framework/UMongoDocument_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/Framework/UMongoDocument_impl.h -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/assert.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/config.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/config/abi/msvc_prefix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/config/abi/msvc_prefix.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/config/abi/msvc_suffix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/config/abi/msvc_suffix.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/config/abi_prefix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/config/abi_prefix.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/config/abi_suffix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/config/abi_suffix.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/config/auto_link.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/config/auto_link.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/config/compiler/clang.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/config/compiler/clang.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/config/compiler/comeau.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/config/compiler/comeau.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/config/compiler/cray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/config/compiler/cray.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/config/compiler/gcc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/config/compiler/gcc.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/config/compiler/hp_acc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/config/compiler/hp_acc.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/config/compiler/intel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/config/compiler/intel.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/config/compiler/kai.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/config/compiler/kai.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/config/compiler/mpw.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/config/compiler/mpw.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/config/compiler/nvcc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/config/compiler/nvcc.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/config/compiler/pgi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/config/compiler/pgi.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/config/compiler/vacpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/config/compiler/vacpp.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/config/compiler/xlcpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/config/compiler/xlcpp.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/config/no_tr1/cmath.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/config/no_tr1/cmath.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/config/no_tr1/complex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/config/no_tr1/complex.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/config/no_tr1/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/config/no_tr1/memory.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/config/no_tr1/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/config/no_tr1/utility.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/config/platform/aix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/config/platform/aix.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/config/platform/beos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/config/platform/beos.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/config/platform/bsd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/config/platform/bsd.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/config/platform/cray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/config/platform/cray.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/config/platform/cygwin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/config/platform/cygwin.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/config/platform/haiku.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/config/platform/haiku.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/config/platform/hpux.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/config/platform/hpux.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/config/platform/irix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/config/platform/irix.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/config/platform/linux.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/config/platform/linux.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/config/platform/macos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/config/platform/macos.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/config/platform/qnxnto.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/config/platform/qnxnto.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/config/platform/vms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/config/platform/vms.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/config/platform/win32.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/config/platform/win32.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/config/posix_features.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/config/posix_features.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/config/stdlib/libcomo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/config/stdlib/libcomo.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/config/stdlib/libcpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/config/stdlib/libcpp.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/config/stdlib/modena.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/config/stdlib/modena.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/config/stdlib/msl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/config/stdlib/msl.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/config/stdlib/sgi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/config/stdlib/sgi.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/config/stdlib/stlport.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/config/stdlib/stlport.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/config/stdlib/vacpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/config/stdlib/vacpp.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/config/suffix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/config/suffix.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/config/user.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/config/user.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/config/warning_disable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/config/warning_disable.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/core/addressof.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/core/addressof.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/core/checked_delete.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/core/checked_delete.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/core/demangle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/core/demangle.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/core/enable_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/core/enable_if.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/core/ignore_unused.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/core/ignore_unused.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/core/is_same.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/core/is_same.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/core/lightweight_test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/core/lightweight_test.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/core/noncopyable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/core/noncopyable.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/core/null_deleter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/core/null_deleter.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/core/ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/core/ref.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/core/scoped_enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/core/scoped_enum.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/core/swap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/core/swap.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/core/typeinfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/core/typeinfo.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/core/underlying_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/core/underlying_type.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/current_function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/current_function.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/detail/algorithm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/detail/algorithm.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/detail/atomic_count.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/detail/atomic_count.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/detail/binary_search.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/detail/binary_search.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/detail/bitmask.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/detail/bitmask.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/detail/call_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/detail/call_traits.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/detail/compressed_pair.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/detail/compressed_pair.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/detail/container_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/detail/container_fwd.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/detail/dynamic_bitset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/detail/dynamic_bitset.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/detail/endian.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/detail/endian.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/detail/fenv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/detail/fenv.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/detail/identifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/detail/identifier.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/detail/indirect_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/detail/indirect_traits.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/detail/interlocked.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/detail/interlocked.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/detail/is_sorted.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/detail/is_sorted.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/detail/is_xxx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/detail/is_xxx.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/detail/iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/detail/iterator.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/detail/lcast_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/detail/lcast_precision.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/detail/numeric_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/detail/numeric_traits.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/detail/quick_allocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/detail/quick_allocator.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/detail/select_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/detail/select_type.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/detail/sp_typeinfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/detail/sp_typeinfo.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/detail/winapi/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/detail/winapi/config.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/detail/winapi/crypt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/detail/winapi/crypt.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/detail/winapi/dll.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/detail/winapi/dll.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/detail/winapi/handles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/detail/winapi/handles.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/detail/winapi/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/detail/winapi/memory.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/detail/winapi/time.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/detail/winapi/time.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/detail/winapi/tls.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/detail/winapi/tls.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/detail/workaround.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/detail/workaround.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/exception/N3757.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/exception/N3757.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/exception/all.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/exception/all.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/exception/exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/exception/exception.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/exception/info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/exception/info.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/exception/to_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/exception/to_string.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/move/adl_move_swap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/move/adl_move_swap.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/move/algorithm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/move/algorithm.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/move/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/move/core.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/move/default_delete.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/move/default_delete.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/move/iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/move/iterator.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/move/make_unique.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/move/make_unique.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/move/move.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/move/move.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/move/traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/move/traits.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/move/unique_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/move/unique_ptr.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/move/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/move/utility.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/move/utility_core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/move/utility_core.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/O1_size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/O1_size.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/O1_size_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/O1_size_fwd.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/accumulate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/accumulate.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/advance.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/advance.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/advance_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/advance_fwd.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/alias.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/alias.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/always.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/always.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/and.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/and.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/apply.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/apply.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/apply_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/apply_fwd.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/apply_wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/apply_wrap.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/arg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/arg.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/arg_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/arg_fwd.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/arithmetic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/arithmetic.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/as_sequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/as_sequence.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/assert.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/at.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/at.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/at_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/at_fwd.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/aux_/apply_1st.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/aux_/apply_1st.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/aux_/arity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/aux_/arity.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/aux_/arity_spec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/aux_/arity_spec.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/aux_/at_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/aux_/at_impl.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/aux_/back_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/aux_/back_impl.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/aux_/basic_bind.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/aux_/basic_bind.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/aux_/clear_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/aux_/clear_impl.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/aux_/config/adl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/aux_/config/adl.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/aux_/config/bcc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/aux_/config/bcc.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/aux_/config/dtp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/aux_/config/dtp.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/aux_/config/eti.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/aux_/config/eti.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/aux_/config/gcc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/aux_/config/gcc.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/aux_/config/gpu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/aux_/config/gpu.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/aux_/config/ttp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/aux_/config/ttp.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/aux_/count_args.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/aux_/count_args.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/aux_/count_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/aux_/count_impl.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/aux_/empty_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/aux_/empty_impl.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/aux_/erase_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/aux_/erase_impl.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/aux_/fold_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/aux_/fold_impl.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/aux_/fold_op.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/aux_/fold_op.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/aux_/fold_pred.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/aux_/fold_pred.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/aux_/front_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/aux_/front_impl.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/aux_/has_apply.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/aux_/has_apply.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/aux_/has_begin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/aux_/has_begin.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/aux_/has_rebind.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/aux_/has_rebind.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/aux_/has_size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/aux_/has_size.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/aux_/has_tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/aux_/has_tag.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/aux_/has_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/aux_/has_type.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/aux_/iter_apply.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/aux_/iter_apply.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/aux_/joint_iter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/aux_/joint_iter.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/aux_/logical_op.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/aux_/logical_op.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/aux_/msvc_dtw.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/aux_/msvc_dtw.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/aux_/msvc_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/aux_/msvc_type.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/aux_/na.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/aux_/na.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/aux_/na_assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/aux_/na_assert.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/aux_/na_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/aux_/na_fwd.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/aux_/na_spec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/aux_/na_spec.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/aux_/nttp_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/aux_/nttp_decl.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/aux_/numeric_op.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/aux_/numeric_op.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/aux_/order_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/aux_/order_impl.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/aux_/ptr_to_ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/aux_/ptr_to_ref.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/aux_/shift_op.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/aux_/shift_op.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/aux_/size_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/aux_/size_impl.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/aux_/sort_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/aux_/sort_impl.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/aux_/test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/aux_/test.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/aux_/test/data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/aux_/test/data.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/aux_/unwrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/aux_/unwrap.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/aux_/value_wknd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/aux_/value_wknd.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/aux_/yes_no.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/aux_/yes_no.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/back.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/back.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/back_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/back_fwd.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/back_inserter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/back_inserter.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/base.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/begin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/begin.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/begin_end.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/begin_end.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/begin_end_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/begin_end_fwd.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/bind.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/bind.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/bind_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/bind_fwd.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/bitand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/bitand.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/bitor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/bitor.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/bitwise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/bitwise.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/bitxor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/bitxor.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/bool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/bool.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/bool_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/bool_fwd.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/char.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/char.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/char_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/char_fwd.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/clear.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/clear.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/clear_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/clear_fwd.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/comparison.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/comparison.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/contains.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/contains.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/contains_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/contains_fwd.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/copy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/copy.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/copy_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/copy_if.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/count.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/count.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/count_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/count_fwd.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/count_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/count_if.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/deque.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/deque.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/deref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/deref.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/distance.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/distance.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/distance_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/distance_fwd.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/divides.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/divides.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/empty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/empty.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/empty_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/empty_base.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/empty_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/empty_fwd.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/empty_sequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/empty_sequence.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/end.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/end.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/equal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/equal.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/equal_to.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/equal_to.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/erase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/erase.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/erase_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/erase_fwd.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/erase_key.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/erase_key.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/erase_key_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/erase_key_fwd.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/eval_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/eval_if.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/filter_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/filter_view.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/find.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/find.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/find_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/find_if.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/fold.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/fold.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/for_each.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/for_each.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/front.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/front.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/front_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/front_fwd.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/front_inserter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/front_inserter.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/greater.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/greater.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/greater_equal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/greater_equal.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/has_key.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/has_key.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/has_key_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/has_key_fwd.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/has_xxx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/has_xxx.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/identity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/identity.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/if.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/index_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/index_if.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/index_of.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/index_of.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/inherit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/inherit.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/insert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/insert.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/insert_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/insert_fwd.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/insert_range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/insert_range.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/inserter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/inserter.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/int.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/int.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/int_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/int_fwd.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/integral_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/integral_c.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/integral_c_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/integral_c_fwd.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/integral_c_tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/integral_c_tag.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/is_placeholder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/is_placeholder.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/is_sequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/is_sequence.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/iter_fold.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/iter_fold.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/iter_fold_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/iter_fold_if.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/iterator_range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/iterator_range.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/iterator_tags.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/iterator_tags.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/joint_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/joint_view.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/key_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/key_type.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/key_type_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/key_type_fwd.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/lambda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/lambda.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/lambda_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/lambda_fwd.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/less.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/less.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/less_equal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/less_equal.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/limits/arity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/limits/arity.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/limits/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/limits/list.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/limits/map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/limits/map.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/limits/set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/limits/set.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/limits/string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/limits/string.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/limits/vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/limits/vector.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/list.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/list/aux_/clear.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/list/aux_/clear.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/list/aux_/empty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/list/aux_/empty.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/list/aux_/front.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/list/aux_/front.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/list/aux_/item.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/list/aux_/item.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/list/aux_/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/list/aux_/size.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/list/aux_/tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/list/aux_/tag.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/list/list0.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/list/list0.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/list/list0_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/list/list0_c.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/list/list10.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/list/list10.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/list/list10_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/list/list10_c.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/list/list20.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/list/list20.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/list/list20_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/list/list20_c.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/list/list30.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/list/list30.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/list/list30_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/list/list30_c.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/list/list40.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/list/list40.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/list/list40_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/list/list40_c.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/list/list50.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/list/list50.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/list/list50_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/list/list50_c.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/list_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/list_c.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/logical.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/logical.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/long.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/long.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/long_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/long_fwd.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/lower_bound.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/lower_bound.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/map.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/map/aux_/item.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/map/aux_/item.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/map/aux_/map0.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/map/aux_/map0.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/map/aux_/tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/map/aux_/tag.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/map/map0.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/map/map0.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/map/map10.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/map/map10.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/map/map20.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/map/map20.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/map/map30.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/map/map30.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/map/map40.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/map/map40.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/map/map50.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/map/map50.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/math/fixed_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/math/fixed_c.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/math/is_even.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/math/is_even.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/math/rational_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/math/rational_c.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/max.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/max_element.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/max_element.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/min.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/min.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/min_element.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/min_element.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/min_max.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/minus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/minus.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/modulus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/modulus.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/multiplies.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/multiplies.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/negate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/negate.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/next.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/next.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/next_prior.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/next_prior.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/not.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/not.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/not_equal_to.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/not_equal_to.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/numeric_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/numeric_cast.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/or.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/or.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/order.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/order.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/order_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/order_fwd.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/pair.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/pair.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/pair_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/pair_view.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/partition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/partition.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/placeholders.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/placeholders.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/plus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/plus.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/pop_back.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/pop_back.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/pop_back_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/pop_back_fwd.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/pop_front.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/pop_front.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/pop_front_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/pop_front_fwd.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/print.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/print.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/prior.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/prior.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/protect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/protect.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/push_back.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/push_back.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/push_back_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/push_back_fwd.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/push_front.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/push_front.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/push_front_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/push_front_fwd.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/quote.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/quote.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/range_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/range_c.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/remove.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/remove.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/remove_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/remove_if.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/replace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/replace.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/replace_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/replace_if.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/reverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/reverse.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/reverse_fold.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/reverse_fold.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/same_as.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/same_as.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/sequence_tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/sequence_tag.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/set.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/set/aux_/item.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/set/aux_/item.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/set/aux_/set0.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/set/aux_/set0.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/set/aux_/tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/set/aux_/tag.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/set/set0.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/set/set0.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/set/set0_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/set/set0_c.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/set/set10.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/set/set10.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/set/set10_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/set/set10_c.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/set/set20.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/set/set20.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/set/set20_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/set/set20_c.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/set/set30.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/set/set30.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/set/set30_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/set/set30_c.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/set/set40.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/set/set40.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/set/set40_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/set/set40_c.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/set/set50.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/set/set50.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/set/set50_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/set/set50_c.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/set_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/set_c.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/shift_left.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/shift_left.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/shift_right.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/shift_right.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/single_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/single_view.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/size.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/size_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/size_fwd.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/size_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/size_t.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/size_t_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/size_t_fwd.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/sizeof.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/sizeof.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/sort.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/sort.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/string.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/switch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/switch.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/tag.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/times.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/times.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/transform.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/transform_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/transform_view.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/unique.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/unique.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/unpack_args.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/unpack_args.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/upper_bound.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/upper_bound.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/value_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/value_type.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/value_type_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/value_type_fwd.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/vector.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/vector/aux_/at.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/vector/aux_/at.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/vector/aux_/tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/vector/aux_/tag.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/vector/vector0.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/vector/vector0.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/vector/vector10.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/vector/vector10.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/vector/vector20.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/vector/vector20.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/vector/vector30.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/vector/vector30.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/vector/vector40.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/vector/vector40.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/vector/vector50.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/vector/vector50.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/vector_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/vector_c.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/void.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/void.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/void_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/void_fwd.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/mpl/zip_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/mpl/zip_view.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/none.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/none.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/none_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/none_t.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/optional/optional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/optional/optional.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/preprocessor/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/preprocessor/array.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/preprocessor/cat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/preprocessor/cat.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/preprocessor/comma.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/preprocessor/comma.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/preprocessor/debug.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/preprocessor/debug.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/preprocessor/dec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/preprocessor/dec.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/preprocessor/empty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/preprocessor/empty.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/preprocessor/enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/preprocessor/enum.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/preprocessor/expand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/preprocessor/expand.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/preprocessor/for.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/preprocessor/for.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/preprocessor/if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/preprocessor/if.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/preprocessor/inc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/preprocessor/inc.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/preprocessor/limits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/preprocessor/limits.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/preprocessor/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/preprocessor/list.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/preprocessor/max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/preprocessor/max.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/preprocessor/min.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/preprocessor/min.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/preprocessor/repeat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/preprocessor/repeat.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/preprocessor/seq.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/preprocessor/seq.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/preprocessor/slot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/preprocessor/slot.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/preprocessor/tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/preprocessor/tuple.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/preprocessor/while.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/preprocessor/while.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/smart_ptr/weak_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/smart_ptr/weak_ptr.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/static_assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/static_assert.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/throw_exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/throw_exception.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/type.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/type_traits/add_cv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/type_traits/add_cv.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/type_traits/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/type_traits/config.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/type_traits/decay.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/type_traits/decay.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/type_traits/extent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/type_traits/extent.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/type_traits/ice.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/type_traits/ice.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/type_traits/is_enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/type_traits/is_enum.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/type_traits/is_pod.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/type_traits/is_pod.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/type_traits/is_same.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/type_traits/is_same.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/type_traits/is_void.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/type_traits/is_void.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/type_traits/promote.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/type_traits/promote.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/type_traits/rank.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/type_traits/rank.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/utility/addressof.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/utility/addressof.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/utility/binary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/utility/binary.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/utility/declval.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/utility/declval.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/utility/enable_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/utility/enable_if.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/utility/result_of.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/utility/result_of.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/utility/string_ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/utility/string_ref.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/utility/swap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/utility/swap.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/boost/utility/value_init.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/boost/utility/value_init.hpp -------------------------------------------------------------------------------- /Source/EMOSDB/Private/libbson-1.0/bcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/libbson-1.0/bcon.h -------------------------------------------------------------------------------- /Source/EMOSDB/Private/libbson-1.0/bson-atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/libbson-1.0/bson-atomic.h -------------------------------------------------------------------------------- /Source/EMOSDB/Private/libbson-1.0/bson-clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/libbson-1.0/bson-clock.h -------------------------------------------------------------------------------- /Source/EMOSDB/Private/libbson-1.0/bson-compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/libbson-1.0/bson-compat.h -------------------------------------------------------------------------------- /Source/EMOSDB/Private/libbson-1.0/bson-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/libbson-1.0/bson-config.h -------------------------------------------------------------------------------- /Source/EMOSDB/Private/libbson-1.0/bson-context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/libbson-1.0/bson-context.h -------------------------------------------------------------------------------- /Source/EMOSDB/Private/libbson-1.0/bson-endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/libbson-1.0/bson-endian.h -------------------------------------------------------------------------------- /Source/EMOSDB/Private/libbson-1.0/bson-error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/libbson-1.0/bson-error.h -------------------------------------------------------------------------------- /Source/EMOSDB/Private/libbson-1.0/bson-iter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/libbson-1.0/bson-iter.h -------------------------------------------------------------------------------- /Source/EMOSDB/Private/libbson-1.0/bson-json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/libbson-1.0/bson-json.h -------------------------------------------------------------------------------- /Source/EMOSDB/Private/libbson-1.0/bson-keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/libbson-1.0/bson-keys.h -------------------------------------------------------------------------------- /Source/EMOSDB/Private/libbson-1.0/bson-macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/libbson-1.0/bson-macros.h -------------------------------------------------------------------------------- /Source/EMOSDB/Private/libbson-1.0/bson-md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/libbson-1.0/bson-md5.h -------------------------------------------------------------------------------- /Source/EMOSDB/Private/libbson-1.0/bson-memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/libbson-1.0/bson-memory.h -------------------------------------------------------------------------------- /Source/EMOSDB/Private/libbson-1.0/bson-oid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/libbson-1.0/bson-oid.h -------------------------------------------------------------------------------- /Source/EMOSDB/Private/libbson-1.0/bson-reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/libbson-1.0/bson-reader.h -------------------------------------------------------------------------------- /Source/EMOSDB/Private/libbson-1.0/bson-stdint.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /Source/EMOSDB/Private/libbson-1.0/bson-string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/libbson-1.0/bson-string.h -------------------------------------------------------------------------------- /Source/EMOSDB/Private/libbson-1.0/bson-types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/libbson-1.0/bson-types.h -------------------------------------------------------------------------------- /Source/EMOSDB/Private/libbson-1.0/bson-utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/libbson-1.0/bson-utf8.h -------------------------------------------------------------------------------- /Source/EMOSDB/Private/libbson-1.0/bson-value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/libbson-1.0/bson-value.h -------------------------------------------------------------------------------- /Source/EMOSDB/Private/libbson-1.0/bson-version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/libbson-1.0/bson-version.h -------------------------------------------------------------------------------- /Source/EMOSDB/Private/libbson-1.0/bson-writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/libbson-1.0/bson-writer.h -------------------------------------------------------------------------------- /Source/EMOSDB/Private/libbson-1.0/bson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/libbson-1.0/bson.h -------------------------------------------------------------------------------- /Source/EMOSDB/Private/libmongoc-1.0/mongoc-apm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/libmongoc-1.0/mongoc-apm.h -------------------------------------------------------------------------------- /Source/EMOSDB/Private/libmongoc-1.0/mongoc-client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/libmongoc-1.0/mongoc-client.h -------------------------------------------------------------------------------- /Source/EMOSDB/Private/libmongoc-1.0/mongoc-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/libmongoc-1.0/mongoc-config.h -------------------------------------------------------------------------------- /Source/EMOSDB/Private/libmongoc-1.0/mongoc-cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/libmongoc-1.0/mongoc-cursor.h -------------------------------------------------------------------------------- /Source/EMOSDB/Private/libmongoc-1.0/mongoc-error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/libmongoc-1.0/mongoc-error.h -------------------------------------------------------------------------------- /Source/EMOSDB/Private/libmongoc-1.0/mongoc-flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/libmongoc-1.0/mongoc-flags.h -------------------------------------------------------------------------------- /Source/EMOSDB/Private/libmongoc-1.0/mongoc-gridfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/libmongoc-1.0/mongoc-gridfs.h -------------------------------------------------------------------------------- /Source/EMOSDB/Private/libmongoc-1.0/mongoc-index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/libmongoc-1.0/mongoc-index.h -------------------------------------------------------------------------------- /Source/EMOSDB/Private/libmongoc-1.0/mongoc-init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/libmongoc-1.0/mongoc-init.h -------------------------------------------------------------------------------- /Source/EMOSDB/Private/libmongoc-1.0/mongoc-iovec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/libmongoc-1.0/mongoc-iovec.h -------------------------------------------------------------------------------- /Source/EMOSDB/Private/libmongoc-1.0/mongoc-log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/libmongoc-1.0/mongoc-log.h -------------------------------------------------------------------------------- /Source/EMOSDB/Private/libmongoc-1.0/mongoc-opcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/libmongoc-1.0/mongoc-opcode.h -------------------------------------------------------------------------------- /Source/EMOSDB/Private/libmongoc-1.0/mongoc-socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/libmongoc-1.0/mongoc-socket.h -------------------------------------------------------------------------------- /Source/EMOSDB/Private/libmongoc-1.0/mongoc-stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/libmongoc-1.0/mongoc-stream.h -------------------------------------------------------------------------------- /Source/EMOSDB/Private/libmongoc-1.0/mongoc-uri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/libmongoc-1.0/mongoc-uri.h -------------------------------------------------------------------------------- /Source/EMOSDB/Private/libmongoc-1.0/mongoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Private/libmongoc-1.0/mongoc.h -------------------------------------------------------------------------------- /Source/EMOSDB/Public/EMOSDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Public/EMOSDB.h -------------------------------------------------------------------------------- /Source/EMOSDB/Public/Framework/UMongoClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Public/Framework/UMongoClient.h -------------------------------------------------------------------------------- /Source/EMOSDB/Public/Framework/UMongoCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Public/Framework/UMongoCollection.h -------------------------------------------------------------------------------- /Source/EMOSDB/Public/Framework/UMongoDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Public/Framework/UMongoDatabase.h -------------------------------------------------------------------------------- /Source/EMOSDB/Public/Framework/UMongoDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSDB/Public/Framework/UMongoDocument.h -------------------------------------------------------------------------------- /Source/EMOSRPG/Classes/EMOSRPG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSRPG/Classes/EMOSRPG.cpp -------------------------------------------------------------------------------- /Source/EMOSRPG/Classes/Framework/ARPGCharacter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSRPG/Classes/Framework/ARPGCharacter.cpp -------------------------------------------------------------------------------- /Source/EMOSRPG/EMOSRPG.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSRPG/EMOSRPG.Build.cs -------------------------------------------------------------------------------- /Source/EMOSRPG/Private/EMOSRPGPCH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSRPG/Private/EMOSRPGPCH.h -------------------------------------------------------------------------------- /Source/EMOSRPG/Public/EMOSRPG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSRPG/Public/EMOSRPG.h -------------------------------------------------------------------------------- /Source/EMOSRPG/Public/Framework/ARPGCharacter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSRPG/Public/Framework/ARPGCharacter.h -------------------------------------------------------------------------------- /Source/EMOSRPG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSRPG/README.md -------------------------------------------------------------------------------- /Source/EMOSWS/Classes/EMOSWS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Classes/EMOSWS.cpp -------------------------------------------------------------------------------- /Source/EMOSWS/EMOSWS.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/EMOSWS.Build.cs -------------------------------------------------------------------------------- /Source/EMOSWS/Private/EMOSWSPCH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/EMOSWSPCH.h -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/associated_allocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/associated_allocator.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/associated_executor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/associated_executor.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/async_result.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/async_result.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/basic_deadline_timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/basic_deadline_timer.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/basic_io_object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/basic_io_object.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/basic_raw_socket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/basic_raw_socket.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/basic_serial_port.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/basic_serial_port.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/basic_signal_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/basic_signal_set.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/basic_socket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/basic_socket.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/basic_stream_socket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/basic_stream_socket.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/basic_streambuf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/basic_streambuf.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/basic_streambuf_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/basic_streambuf_fwd.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/basic_waitable_timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/basic_waitable_timer.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/buffer.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/buffered_read_stream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/buffered_read_stream.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/buffered_stream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/buffered_stream.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/buffered_stream_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/buffered_stream_fwd.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/buffers_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/buffers_iterator.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/completion_condition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/completion_condition.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/connect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/connect.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/coroutine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/coroutine.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/deadline_timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/deadline_timer.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/defer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/defer.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/array.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/array_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/array_fwd.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/assert.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/atomic_count.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/atomic_count.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/bind_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/bind_handler.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/call_stack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/call_stack.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/config.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/cstddef.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/cstddef.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/cstdint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/cstdint.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/date_time_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/date_time_fwd.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/epoll_reactor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/epoll_reactor.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/event.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/executor_op.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/executor_op.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/fenced_block.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/fenced_block.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/functional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/functional.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/global.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/global.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/handler_work.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/handler_work.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/hash_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/hash_map.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/io_control.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/io_control.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/limits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/limits.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/memory.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/mutex.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/noncopyable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/noncopyable.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/null_event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/null_event.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/null_global.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/null_global.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/null_mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/null_mutex.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/null_reactor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/null_reactor.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/null_thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/null_thread.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/null_tss_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/null_tss_ptr.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/object_pool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/object_pool.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/op_queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/op_queue.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/operation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/operation.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/pop_options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/pop_options.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/posix_event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/posix_event.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/posix_global.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/posix_global.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/posix_mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/posix_mutex.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/posix_thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/posix_thread.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/posix_tss_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/posix_tss_ptr.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/push_options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/push_options.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/reactor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/reactor.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/reactor_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/reactor_fwd.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/reactor_op.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/reactor_op.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/regex_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/regex_fwd.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/resolve_op.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/resolve_op.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/scheduler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/scheduler.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/scoped_lock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/scoped_lock.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/scoped_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/scoped_ptr.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/signal_init.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/signal_init.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/signal_op.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/signal_op.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/socket_holder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/socket_holder.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/socket_ops.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/socket_ops.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/socket_option.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/socket_option.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/socket_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/socket_types.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/static_mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/static_mutex.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/std_event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/std_event.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/std_global.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/std_global.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/std_mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/std_mutex.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/std_thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/std_thread.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/thread.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/thread_group.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/thread_group.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/throw_error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/throw_error.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/timer_queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/timer_queue.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/tss_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/tss_ptr.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/type_traits.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/wait_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/wait_handler.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/wait_op.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/wait_op.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/win_event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/win_event.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/win_global.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/win_global.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/win_mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/win_mutex.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/win_thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/win_thread.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/win_tss_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/win_tss_ptr.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/wince_thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/wince_thread.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/winrt_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/winrt_utils.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/detail/winsock_init.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/detail/winsock_init.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/dispatch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/dispatch.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/error.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/error_code.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/error_code.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/execution_context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/execution_context.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/executor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/executor.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/executor_work.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/executor_work.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/generic/raw_protocol.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/generic/raw_protocol.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/handler_alloc_hook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/handler_alloc_hook.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/handler_invoke_hook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/handler_invoke_hook.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/handler_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/handler_type.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/impl/connect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/impl/connect.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/impl/defer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/impl/defer.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/impl/dispatch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/impl/dispatch.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/impl/error.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/impl/error.ipp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/impl/error_code.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/impl/error_code.ipp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/impl/executor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/impl/executor.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/impl/executor.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/impl/executor.ipp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/impl/io_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/impl/io_service.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/impl/io_service.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/impl/io_service.ipp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/impl/post.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/impl/post.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/impl/read.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/impl/read.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/impl/read_at.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/impl/read_at.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/impl/read_until.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/impl/read_until.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/impl/spawn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/impl/spawn.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/impl/src.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/impl/src.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/impl/system_executor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/impl/system_executor.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/impl/system_executor.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/impl/system_executor.ipp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/impl/thread_pool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/impl/thread_pool.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/impl/thread_pool.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/impl/thread_pool.ipp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/impl/use_future.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/impl/use_future.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/impl/write.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/impl/write.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/impl/write_at.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/impl/write_at.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/io_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/io_service.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/io_service_strand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/io_service_strand.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/ip/address.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/ip/address.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/ip/address_range_v4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/ip/address_range_v4.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/ip/address_range_v6.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/ip/address_range_v6.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/ip/address_v4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/ip/address_v4.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/ip/address_v6.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/ip/address_v6.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/ip/bad_address_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/ip/bad_address_cast.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/ip/basic_endpoint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/ip/basic_endpoint.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/ip/basic_resolver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/ip/basic_resolver.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/ip/detail/endpoint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/ip/detail/endpoint.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/ip/host_name.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/ip/host_name.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/ip/icmp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/ip/icmp.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/ip/impl/address.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/ip/impl/address.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/ip/impl/address.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/ip/impl/address.ipp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/ip/impl/address_v4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/ip/impl/address_v4.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/ip/impl/address_v4.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/ip/impl/address_v4.ipp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/ip/impl/address_v6.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/ip/impl/address_v6.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/ip/impl/address_v6.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/ip/impl/address_v6.ipp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/ip/impl/host_name.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/ip/impl/host_name.ipp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/ip/impl/network_v4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/ip/impl/network_v4.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/ip/impl/network_v4.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/ip/impl/network_v4.ipp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/ip/impl/network_v6.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/ip/impl/network_v6.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/ip/impl/network_v6.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/ip/impl/network_v6.ipp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/ip/multicast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/ip/multicast.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/ip/network_v4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/ip/network_v4.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/ip/network_v6.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/ip/network_v6.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/ip/resolver_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/ip/resolver_service.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/ip/tcp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/ip/tcp.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/ip/udp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/ip/udp.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/ip/unicast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/ip/unicast.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/ip/v6_only.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/ip/v6_only.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/is_executor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/is_executor.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/is_read_buffered.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/is_read_buffered.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/is_write_buffered.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/is_write_buffered.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/local/basic_endpoint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/local/basic_endpoint.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/local/connect_pair.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/local/connect_pair.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/package.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/package.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/placeholders.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/placeholders.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/post.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/post.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/raw_socket_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/raw_socket_service.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/read.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/read.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/read_at.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/read_at.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/read_until.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/read_until.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/serial_port.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/serial_port.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/serial_port_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/serial_port_base.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/serial_port_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/serial_port_service.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/signal_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/signal_set.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/signal_set_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/signal_set_service.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/socket_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/socket_base.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/spawn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/spawn.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/ssl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/ssl.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/ssl/context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/ssl/context.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/ssl/context_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/ssl/context_base.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/ssl/detail/engine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/ssl/detail/engine.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/ssl/detail/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/ssl/detail/io.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/ssl/detail/read_op.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/ssl/detail/read_op.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/ssl/detail/write_op.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/ssl/detail/write_op.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/ssl/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/ssl/error.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/ssl/impl/context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/ssl/impl/context.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/ssl/impl/context.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/ssl/impl/context.ipp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/ssl/impl/error.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/ssl/impl/error.ipp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/ssl/impl/src.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/ssl/impl/src.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/ssl/stream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/ssl/stream.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/ssl/stream_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/ssl/stream_base.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/ssl/verify_context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/ssl/verify_context.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/ssl/verify_mode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/ssl/verify_mode.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/steady_timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/steady_timer.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/strand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/strand.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/streambuf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/streambuf.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/system_error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/system_error.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/system_executor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/system_executor.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/system_timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/system_timer.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/thread.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/thread_pool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/thread_pool.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/time_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/time_traits.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/ts/buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/ts/buffer.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/ts/executor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/ts/executor.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/ts/internet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/ts/internet.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/ts/io_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/ts/io_service.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/ts/networking.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/ts/networking.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/ts/socket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/ts/socket.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/ts/thread_pool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/ts/thread_pool.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/ts/timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/ts/timer.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/unyield.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/unyield.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/use_future.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/use_future.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/uses_executor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/uses_executor.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/version.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/wait_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/wait_traits.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/windows/basic_handle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/windows/basic_handle.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/wrap.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/write.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/write.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/write_at.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/write_at.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/asio/yield.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/asio/yield.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/websocketpp/base64/base64.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/websocketpp/base64/base64.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/websocketpp/client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/websocketpp/client.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/websocketpp/close.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/websocketpp/close.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/websocketpp/common/asio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/websocketpp/common/asio.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/websocketpp/common/chrono.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/websocketpp/common/chrono.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/websocketpp/common/cpp11.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/websocketpp/common/cpp11.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/websocketpp/common/md5.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/websocketpp/common/md5.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/websocketpp/common/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/websocketpp/common/memory.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/websocketpp/common/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/websocketpp/common/random.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/websocketpp/common/regex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/websocketpp/common/regex.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/websocketpp/common/stdint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/websocketpp/common/stdint.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/websocketpp/common/thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/websocketpp/common/thread.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/websocketpp/common/time.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/websocketpp/common/time.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/websocketpp/config/asio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/websocketpp/config/asio.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/websocketpp/config/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/websocketpp/config/core.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/websocketpp/config/debug.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/websocketpp/config/debug.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/websocketpp/connection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/websocketpp/connection.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/websocketpp/endpoint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/websocketpp/endpoint.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/websocketpp/endpoint_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/websocketpp/endpoint_base.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/websocketpp/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/websocketpp/error.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/websocketpp/frame.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/websocketpp/frame.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/websocketpp/http/parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/websocketpp/http/parser.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/websocketpp/http/request.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/websocketpp/http/request.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/websocketpp/http/response.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/websocketpp/http/response.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/websocketpp/logger/basic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/websocketpp/logger/basic.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/websocketpp/logger/levels.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/websocketpp/logger/levels.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/websocketpp/logger/stub.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/websocketpp/logger/stub.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/websocketpp/logger/syslog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/websocketpp/logger/syslog.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/websocketpp/random/none.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/websocketpp/random/none.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/websocketpp/server.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/websocketpp/server.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/websocketpp/sha1/sha1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/websocketpp/sha1/sha1.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/websocketpp/uri.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/websocketpp/uri.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/websocketpp/utilities.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/websocketpp/utilities.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Private/websocketpp/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Private/websocketpp/version.hpp -------------------------------------------------------------------------------- /Source/EMOSWS/Public/EMOSWS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Public/EMOSWS.h -------------------------------------------------------------------------------- /Source/EMOSWS/Public/Framework/UWebsocketppClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Public/Framework/UWebsocketppClient.h -------------------------------------------------------------------------------- /Source/EMOSWS/Public/Framework/UWebsocketppServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DigitalKarnage/EMOS/HEAD/Source/EMOSWS/Public/Framework/UWebsocketppServer.h --------------------------------------------------------------------------------