├── .DS_Store ├── README.md ├── client ├── .DS_Store ├── .idea │ ├── .name │ ├── client.iml │ ├── encodings.xml │ ├── misc.xml │ ├── modules.xml │ └── workspace.xml ├── .vscode │ └── settings.json ├── CMakeLists.txt ├── global.h ├── include │ ├── .DS_Store │ ├── jdbc │ │ ├── cppconn │ │ │ ├── build_config.h │ │ │ ├── config.h │ │ │ ├── connection.h │ │ │ ├── datatype.h │ │ │ ├── driver.h │ │ │ ├── exception.h │ │ │ ├── metadata.h │ │ │ ├── parameter_metadata.h │ │ │ ├── prepared_statement.h │ │ │ ├── resultset.h │ │ │ ├── resultset_metadata.h │ │ │ ├── sqlstring.h │ │ │ ├── statement.h │ │ │ ├── variant.h │ │ │ ├── version_info.h │ │ │ └── warning.h │ │ ├── mysql_connection.h │ │ ├── mysql_driver.h │ │ └── mysql_error.h │ ├── mysqlx │ │ ├── common.h │ │ ├── common │ │ │ ├── api.h │ │ │ ├── error.h │ │ │ ├── op_if.h │ │ │ ├── settings.h │ │ │ ├── util.h │ │ │ └── value.h │ │ ├── common_constants.h │ │ ├── devapi │ │ │ ├── collations.h │ │ │ ├── collection_crud.h │ │ │ ├── common.h │ │ │ ├── crud.h │ │ │ ├── detail │ │ │ │ ├── crud.h │ │ │ │ ├── error.h │ │ │ │ ├── result.h │ │ │ │ ├── row.h │ │ │ │ ├── session.h │ │ │ │ └── settings.h │ │ │ ├── document.h │ │ │ ├── error.h │ │ │ ├── executable.h │ │ │ ├── mysql_charsets.h │ │ │ ├── mysql_collations.h │ │ │ ├── result.h │ │ │ ├── row.h │ │ │ ├── settings.h │ │ │ └── table_crud.h │ │ ├── xapi.h │ │ └── xdevapi.h │ └── rpc │ │ ├── client.h │ │ ├── client.inl │ │ ├── compatibility.h │ │ ├── config.h │ │ ├── config.h.in │ │ ├── detail │ │ ├── all.h │ │ ├── any.h │ │ ├── async_writer.h │ │ ├── bool.h │ │ ├── call.h │ │ ├── client_error.h │ │ ├── constant.h │ │ ├── dev_utils.h │ │ ├── func_tools.h │ │ ├── func_traits.h │ │ ├── if.h │ │ ├── invoke.h │ │ ├── is_specialization_of.h │ │ ├── log.h │ │ ├── make_unique.h │ │ ├── not.h │ │ ├── pimpl.h │ │ ├── response.h │ │ ├── server_session.h │ │ ├── thread_group.h │ │ └── util.h │ │ ├── dispatcher.h │ │ ├── dispatcher.inl │ │ ├── msgpack.hpp │ │ ├── msgpack │ │ ├── adaptor │ │ │ ├── adaptor_base.hpp │ │ │ ├── adaptor_base_decl.hpp │ │ │ ├── array_ref.hpp │ │ │ ├── array_ref_decl.hpp │ │ │ ├── bool.hpp │ │ │ ├── boost │ │ │ │ ├── fusion.hpp │ │ │ │ ├── msgpack_variant.hpp │ │ │ │ ├── msgpack_variant_decl.hpp │ │ │ │ ├── optional.hpp │ │ │ │ ├── string_ref.hpp │ │ │ │ └── string_view.hpp │ │ │ ├── carray.hpp │ │ │ ├── char_ptr.hpp │ │ │ ├── check_container_size.hpp │ │ │ ├── check_container_size_decl.hpp │ │ │ ├── cpp11 │ │ │ │ ├── array.hpp │ │ │ │ ├── array_char.hpp │ │ │ │ ├── array_unsigned_char.hpp │ │ │ │ ├── forward_list.hpp │ │ │ │ ├── reference_wrapper.hpp │ │ │ │ ├── shared_ptr.hpp │ │ │ │ ├── tuple.hpp │ │ │ │ ├── unique_ptr.hpp │ │ │ │ ├── unordered_map.hpp │ │ │ │ └── unordered_set.hpp │ │ │ ├── cpp17 │ │ │ │ ├── optional.hpp │ │ │ │ └── string_view.hpp │ │ │ ├── define.hpp │ │ │ ├── define_decl.hpp │ │ │ ├── deque.hpp │ │ │ ├── ext.hpp │ │ │ ├── ext_decl.hpp │ │ │ ├── fixint.hpp │ │ │ ├── fixint_decl.hpp │ │ │ ├── float.hpp │ │ │ ├── int.hpp │ │ │ ├── int_decl.hpp │ │ │ ├── list.hpp │ │ │ ├── map.hpp │ │ │ ├── map_decl.hpp │ │ │ ├── msgpack_tuple.hpp │ │ │ ├── msgpack_tuple_decl.hpp │ │ │ ├── nil.hpp │ │ │ ├── nil_decl.hpp │ │ │ ├── pair.hpp │ │ │ ├── raw.hpp │ │ │ ├── raw_decl.hpp │ │ │ ├── set.hpp │ │ │ ├── size_equal_only.hpp │ │ │ ├── size_equal_only_decl.hpp │ │ │ ├── string.hpp │ │ │ ├── tr1 │ │ │ │ ├── unordered_map.hpp │ │ │ │ └── unordered_set.hpp │ │ │ ├── v4raw.hpp │ │ │ ├── v4raw_decl.hpp │ │ │ ├── vector.hpp │ │ │ ├── vector_bool.hpp │ │ │ ├── vector_char.hpp │ │ │ └── vector_unsigned_char.hpp │ │ ├── cpp_config.hpp │ │ ├── cpp_config_decl.hpp │ │ ├── fbuffer.h │ │ ├── fbuffer.hpp │ │ ├── fbuffer_decl.hpp │ │ ├── gcc_atomic.h │ │ ├── gcc_atomic.hpp │ │ ├── iterator.hpp │ │ ├── iterator_decl.hpp │ │ ├── meta.hpp │ │ ├── meta_decl.hpp │ │ ├── object.h │ │ ├── object.hpp │ │ ├── object_decl.hpp │ │ ├── object_fwd.hpp │ │ ├── object_fwd_decl.hpp │ │ ├── pack.h │ │ ├── pack.hpp │ │ ├── pack_decl.hpp │ │ ├── pack_define.h │ │ ├── pack_template.h │ │ ├── parse_return.hpp │ │ ├── predef.h │ │ ├── predef │ │ │ ├── architecture.h │ │ │ ├── architecture │ │ │ │ ├── alpha.h │ │ │ │ ├── arm.h │ │ │ │ ├── blackfin.h │ │ │ │ ├── convex.h │ │ │ │ ├── ia64.h │ │ │ │ ├── m68k.h │ │ │ │ ├── mips.h │ │ │ │ ├── parisc.h │ │ │ │ ├── ppc.h │ │ │ │ ├── pyramid.h │ │ │ │ ├── rs6k.h │ │ │ │ ├── sparc.h │ │ │ │ ├── superh.h │ │ │ │ ├── sys370.h │ │ │ │ ├── sys390.h │ │ │ │ ├── x86.h │ │ │ │ ├── x86 │ │ │ │ │ ├── 32.h │ │ │ │ │ └── 64.h │ │ │ │ └── z.h │ │ │ ├── compiler.h │ │ │ ├── compiler │ │ │ │ ├── borland.h │ │ │ │ ├── clang.h │ │ │ │ ├── comeau.h │ │ │ │ ├── compaq.h │ │ │ │ ├── diab.h │ │ │ │ ├── digitalmars.h │ │ │ │ ├── dignus.h │ │ │ │ ├── edg.h │ │ │ │ ├── ekopath.h │ │ │ │ ├── gcc.h │ │ │ │ ├── gcc_xml.h │ │ │ │ ├── greenhills.h │ │ │ │ ├── hp_acc.h │ │ │ │ ├── iar.h │ │ │ │ ├── ibm.h │ │ │ │ ├── intel.h │ │ │ │ ├── kai.h │ │ │ │ ├── llvm.h │ │ │ │ ├── metaware.h │ │ │ │ ├── metrowerks.h │ │ │ │ ├── microtec.h │ │ │ │ ├── mpw.h │ │ │ │ ├── palm.h │ │ │ │ ├── pgi.h │ │ │ │ ├── sgi_mipspro.h │ │ │ │ ├── sunpro.h │ │ │ │ ├── tendra.h │ │ │ │ ├── visualc.h │ │ │ │ └── watcom.h │ │ │ ├── detail │ │ │ │ ├── _cassert.h │ │ │ │ ├── _exception.h │ │ │ │ ├── comp_detected.h │ │ │ │ ├── endian_compat.h │ │ │ │ ├── os_detected.h │ │ │ │ ├── platform_detected.h │ │ │ │ ├── test.h │ │ │ │ └── test_def.h │ │ │ ├── hardware.h │ │ │ ├── hardware │ │ │ │ ├── simd.h │ │ │ │ └── simd │ │ │ │ │ ├── arm.h │ │ │ │ │ ├── arm │ │ │ │ │ └── versions.h │ │ │ │ │ ├── ppc.h │ │ │ │ │ ├── ppc │ │ │ │ │ └── versions.h │ │ │ │ │ ├── x86.h │ │ │ │ │ ├── x86 │ │ │ │ │ └── versions.h │ │ │ │ │ ├── x86_amd.h │ │ │ │ │ └── x86_amd │ │ │ │ │ └── versions.h │ │ │ ├── language.h │ │ │ ├── language │ │ │ │ ├── objc.h │ │ │ │ ├── stdc.h │ │ │ │ └── stdcpp.h │ │ │ ├── library.h │ │ │ ├── library │ │ │ │ ├── c.h │ │ │ │ ├── c │ │ │ │ │ ├── _prefix.h │ │ │ │ │ ├── gnu.h │ │ │ │ │ ├── uc.h │ │ │ │ │ ├── vms.h │ │ │ │ │ └── zos.h │ │ │ │ ├── std.h │ │ │ │ └── std │ │ │ │ │ ├── _prefix.h │ │ │ │ │ ├── cxx.h │ │ │ │ │ ├── dinkumware.h │ │ │ │ │ ├── libcomo.h │ │ │ │ │ ├── modena.h │ │ │ │ │ ├── msl.h │ │ │ │ │ ├── roguewave.h │ │ │ │ │ ├── sgi.h │ │ │ │ │ ├── stdcpp3.h │ │ │ │ │ ├── stlport.h │ │ │ │ │ └── vacpp.h │ │ │ ├── make.h │ │ │ ├── os.h │ │ │ ├── os │ │ │ │ ├── aix.h │ │ │ │ ├── amigaos.h │ │ │ │ ├── android.h │ │ │ │ ├── beos.h │ │ │ │ ├── bsd.h │ │ │ │ ├── bsd │ │ │ │ │ ├── bsdi.h │ │ │ │ │ ├── dragonfly.h │ │ │ │ │ ├── free.h │ │ │ │ │ ├── net.h │ │ │ │ │ └── open.h │ │ │ │ ├── cygwin.h │ │ │ │ ├── haiku.h │ │ │ │ ├── hpux.h │ │ │ │ ├── ios.h │ │ │ │ ├── irix.h │ │ │ │ ├── linux.h │ │ │ │ ├── macos.h │ │ │ │ ├── os400.h │ │ │ │ ├── qnxnto.h │ │ │ │ ├── solaris.h │ │ │ │ ├── unix.h │ │ │ │ ├── vms.h │ │ │ │ └── windows.h │ │ │ ├── other.h │ │ │ ├── other │ │ │ │ └── endian.h │ │ │ ├── platform.h │ │ │ ├── platform │ │ │ │ ├── mingw.h │ │ │ │ ├── windows_desktop.h │ │ │ │ ├── windows_phone.h │ │ │ │ ├── windows_runtime.h │ │ │ │ └── windows_store.h │ │ │ ├── version.h │ │ │ └── version_number.h │ │ ├── preprocessor.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 │ │ ├── sbuffer.h │ │ ├── sbuffer.hpp │ │ ├── sbuffer_decl.hpp │ │ ├── sysdep.h │ │ ├── type.hpp │ │ ├── unpack.h │ │ ├── unpack.hpp │ │ ├── unpack_decl.hpp │ │ ├── unpack_define.h │ │ ├── unpack_exception.hpp │ │ ├── unpack_template.h │ │ ├── util.h │ │ ├── v1 │ │ │ ├── adaptor │ │ │ │ ├── adaptor_base.hpp │ │ │ │ ├── adaptor_base_decl.hpp │ │ │ │ ├── array_ref.hpp │ │ │ │ ├── array_ref_decl.hpp │ │ │ │ ├── bool.hpp │ │ │ │ ├── boost │ │ │ │ │ ├── fusion.hpp │ │ │ │ │ ├── msgpack_variant.hpp │ │ │ │ │ ├── msgpack_variant_decl.hpp │ │ │ │ │ ├── optional.hpp │ │ │ │ │ ├── string_ref.hpp │ │ │ │ │ └── string_view.hpp │ │ │ │ ├── carray.hpp │ │ │ │ ├── char_ptr.hpp │ │ │ │ ├── check_container_size.hpp │ │ │ │ ├── check_container_size_decl.hpp │ │ │ │ ├── cpp11 │ │ │ │ │ ├── array.hpp │ │ │ │ │ ├── array_char.hpp │ │ │ │ │ ├── array_unsigned_char.hpp │ │ │ │ │ ├── forward_list.hpp │ │ │ │ │ ├── reference_wrapper.hpp │ │ │ │ │ ├── shared_ptr.hpp │ │ │ │ │ ├── tuple.hpp │ │ │ │ │ ├── unique_ptr.hpp │ │ │ │ │ ├── unordered_map.hpp │ │ │ │ │ └── unordered_set.hpp │ │ │ │ ├── cpp17 │ │ │ │ │ ├── optional.hpp │ │ │ │ │ └── string_view.hpp │ │ │ │ ├── define.hpp │ │ │ │ ├── define_decl.hpp │ │ │ │ ├── deque.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── cpp03_define_array.hpp │ │ │ │ │ ├── cpp03_define_array_decl.hpp │ │ │ │ │ ├── cpp03_define_map.hpp │ │ │ │ │ ├── cpp03_define_map_decl.hpp │ │ │ │ │ ├── cpp03_msgpack_tuple.hpp │ │ │ │ │ ├── cpp03_msgpack_tuple_decl.hpp │ │ │ │ │ ├── cpp11_define_array.hpp │ │ │ │ │ ├── cpp11_define_array_decl.hpp │ │ │ │ │ ├── cpp11_define_map.hpp │ │ │ │ │ ├── cpp11_define_map_decl.hpp │ │ │ │ │ ├── cpp11_msgpack_tuple.hpp │ │ │ │ │ └── cpp11_msgpack_tuple_decl.hpp │ │ │ │ ├── ext.hpp │ │ │ │ ├── ext_decl.hpp │ │ │ │ ├── fixint.hpp │ │ │ │ ├── fixint_decl.hpp │ │ │ │ ├── float.hpp │ │ │ │ ├── int.hpp │ │ │ │ ├── int_decl.hpp │ │ │ │ ├── list.hpp │ │ │ │ ├── map.hpp │ │ │ │ ├── map_decl.hpp │ │ │ │ ├── msgpack_tuple.hpp │ │ │ │ ├── msgpack_tuple_decl.hpp │ │ │ │ ├── nil.hpp │ │ │ │ ├── nil_decl.hpp │ │ │ │ ├── pair.hpp │ │ │ │ ├── raw.hpp │ │ │ │ ├── raw_decl.hpp │ │ │ │ ├── set.hpp │ │ │ │ ├── size_equal_only.hpp │ │ │ │ ├── size_equal_only_decl.hpp │ │ │ │ ├── string.hpp │ │ │ │ ├── tr1 │ │ │ │ │ ├── unordered_map.hpp │ │ │ │ │ └── unordered_set.hpp │ │ │ │ ├── v4raw.hpp │ │ │ │ ├── v4raw_decl.hpp │ │ │ │ ├── vector.hpp │ │ │ │ ├── vector_bool.hpp │ │ │ │ ├── vector_char.hpp │ │ │ │ └── vector_unsigned_char.hpp │ │ │ ├── cpp_config.hpp │ │ │ ├── cpp_config_decl.hpp │ │ │ ├── detail │ │ │ │ ├── cpp03_zone.hpp │ │ │ │ ├── cpp03_zone_decl.hpp │ │ │ │ ├── cpp11_zone.hpp │ │ │ │ └── cpp11_zone_decl.hpp │ │ │ ├── fbuffer.hpp │ │ │ ├── fbuffer_decl.hpp │ │ │ ├── iterator.hpp │ │ │ ├── iterator_decl.hpp │ │ │ ├── meta.hpp │ │ │ ├── meta_decl.hpp │ │ │ ├── object.hpp │ │ │ ├── object_decl.hpp │ │ │ ├── object_fwd.hpp │ │ │ ├── object_fwd_decl.hpp │ │ │ ├── pack.hpp │ │ │ ├── pack_decl.hpp │ │ │ ├── parse_return.hpp │ │ │ ├── preprocessor.hpp │ │ │ ├── sbuffer.hpp │ │ │ ├── sbuffer_decl.hpp │ │ │ ├── unpack.hpp │ │ │ ├── unpack_decl.hpp │ │ │ ├── unpack_exception.hpp │ │ │ ├── version.hpp │ │ │ ├── versioning.hpp │ │ │ ├── vrefbuffer.hpp │ │ │ ├── vrefbuffer_decl.hpp │ │ │ ├── zbuffer.hpp │ │ │ ├── zbuffer_decl.hpp │ │ │ ├── zone.hpp │ │ │ └── zone_decl.hpp │ │ ├── v2 │ │ │ ├── adaptor │ │ │ │ ├── adaptor_base.hpp │ │ │ │ ├── adaptor_base_decl.hpp │ │ │ │ ├── array_ref_decl.hpp │ │ │ │ ├── boost │ │ │ │ │ └── msgpack_variant_decl.hpp │ │ │ │ ├── check_container_size_decl.hpp │ │ │ │ ├── define_decl.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── cpp03_define_array_decl.hpp │ │ │ │ │ ├── cpp03_define_map_decl.hpp │ │ │ │ │ ├── cpp03_msgpack_tuple_decl.hpp │ │ │ │ │ ├── cpp11_define_array_decl.hpp │ │ │ │ │ ├── cpp11_define_map_decl.hpp │ │ │ │ │ └── cpp11_msgpack_tuple_decl.hpp │ │ │ │ ├── ext_decl.hpp │ │ │ │ ├── fixint_decl.hpp │ │ │ │ ├── int_decl.hpp │ │ │ │ ├── map_decl.hpp │ │ │ │ ├── msgpack_tuple_decl.hpp │ │ │ │ ├── nil_decl.hpp │ │ │ │ ├── raw_decl.hpp │ │ │ │ ├── size_equal_only_decl.hpp │ │ │ │ └── v4raw_decl.hpp │ │ │ ├── cpp_config_decl.hpp │ │ │ ├── create_object_visitor.hpp │ │ │ ├── detail │ │ │ │ ├── cpp03_zone_decl.hpp │ │ │ │ └── cpp11_zone_decl.hpp │ │ │ ├── fbuffer_decl.hpp │ │ │ ├── iterator_decl.hpp │ │ │ ├── meta_decl.hpp │ │ │ ├── null_visitor.hpp │ │ │ ├── object.hpp │ │ │ ├── object_decl.hpp │ │ │ ├── object_fwd.hpp │ │ │ ├── object_fwd_decl.hpp │ │ │ ├── pack_decl.hpp │ │ │ ├── parse.hpp │ │ │ ├── parse_return.hpp │ │ │ ├── sbuffer_decl.hpp │ │ │ ├── unpack.hpp │ │ │ ├── unpack_decl.hpp │ │ │ ├── vrefbuffer_decl.hpp │ │ │ ├── x3_parse.hpp │ │ │ ├── x3_unpack.hpp │ │ │ ├── zbuffer_decl.hpp │ │ │ └── zone_decl.hpp │ │ ├── version.h │ │ ├── version.hpp │ │ ├── version_master.h │ │ ├── versioning.hpp │ │ ├── vrefbuffer.h │ │ ├── vrefbuffer.hpp │ │ ├── vrefbuffer_decl.hpp │ │ ├── zbuffer.h │ │ ├── zbuffer.hpp │ │ ├── zbuffer_decl.hpp │ │ ├── zone.h │ │ ├── zone.hpp │ │ └── zone_decl.hpp │ │ ├── nonstd │ │ └── optional.hpp │ │ ├── rpc_error.h │ │ ├── server.h │ │ ├── this_handler.h │ │ ├── this_handler.inl │ │ ├── this_server.h │ │ ├── this_session.h │ │ ├── version.h │ │ └── version.h.in ├── lib │ ├── .DS_Store │ ├── libmysqlcppconn.so.7 │ └── librpc.a ├── local_sql.cpp ├── local_sql.h ├── main.cpp ├── metadata.cpp ├── metadata.h ├── parser.cpp ├── parser.h ├── query_tree_with_fragment.cpp ├── query_tree_with_fragment.h ├── rpc_client_test.cpp ├── rpc_server.cpp ├── rpc_server.h ├── rpc_sql.cpp ├── rpc_sql.h ├── sql_exec.cpp └── sql_exec.h ├── ddb2018-data.zip └── img ├── 1.png ├── 2.png ├── 3.png └── 4.png /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/.DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/README.md -------------------------------------------------------------------------------- /client/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/.DS_Store -------------------------------------------------------------------------------- /client/.idea/.name: -------------------------------------------------------------------------------- 1 | demo -------------------------------------------------------------------------------- /client/.idea/client.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/.idea/client.iml -------------------------------------------------------------------------------- /client/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/.idea/encodings.xml -------------------------------------------------------------------------------- /client/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/.idea/misc.xml -------------------------------------------------------------------------------- /client/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/.idea/modules.xml -------------------------------------------------------------------------------- /client/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/.idea/workspace.xml -------------------------------------------------------------------------------- /client/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/.vscode/settings.json -------------------------------------------------------------------------------- /client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/CMakeLists.txt -------------------------------------------------------------------------------- /client/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/global.h -------------------------------------------------------------------------------- /client/include/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/.DS_Store -------------------------------------------------------------------------------- /client/include/jdbc/cppconn/build_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/jdbc/cppconn/build_config.h -------------------------------------------------------------------------------- /client/include/jdbc/cppconn/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/jdbc/cppconn/config.h -------------------------------------------------------------------------------- /client/include/jdbc/cppconn/connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/jdbc/cppconn/connection.h -------------------------------------------------------------------------------- /client/include/jdbc/cppconn/datatype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/jdbc/cppconn/datatype.h -------------------------------------------------------------------------------- /client/include/jdbc/cppconn/driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/jdbc/cppconn/driver.h -------------------------------------------------------------------------------- /client/include/jdbc/cppconn/exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/jdbc/cppconn/exception.h -------------------------------------------------------------------------------- /client/include/jdbc/cppconn/metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/jdbc/cppconn/metadata.h -------------------------------------------------------------------------------- /client/include/jdbc/cppconn/parameter_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/jdbc/cppconn/parameter_metadata.h -------------------------------------------------------------------------------- /client/include/jdbc/cppconn/prepared_statement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/jdbc/cppconn/prepared_statement.h -------------------------------------------------------------------------------- /client/include/jdbc/cppconn/resultset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/jdbc/cppconn/resultset.h -------------------------------------------------------------------------------- /client/include/jdbc/cppconn/resultset_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/jdbc/cppconn/resultset_metadata.h -------------------------------------------------------------------------------- /client/include/jdbc/cppconn/sqlstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/jdbc/cppconn/sqlstring.h -------------------------------------------------------------------------------- /client/include/jdbc/cppconn/statement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/jdbc/cppconn/statement.h -------------------------------------------------------------------------------- /client/include/jdbc/cppconn/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/jdbc/cppconn/variant.h -------------------------------------------------------------------------------- /client/include/jdbc/cppconn/version_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/jdbc/cppconn/version_info.h -------------------------------------------------------------------------------- /client/include/jdbc/cppconn/warning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/jdbc/cppconn/warning.h -------------------------------------------------------------------------------- /client/include/jdbc/mysql_connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/jdbc/mysql_connection.h -------------------------------------------------------------------------------- /client/include/jdbc/mysql_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/jdbc/mysql_driver.h -------------------------------------------------------------------------------- /client/include/jdbc/mysql_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/jdbc/mysql_error.h -------------------------------------------------------------------------------- /client/include/mysqlx/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/mysqlx/common.h -------------------------------------------------------------------------------- /client/include/mysqlx/common/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/mysqlx/common/api.h -------------------------------------------------------------------------------- /client/include/mysqlx/common/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/mysqlx/common/error.h -------------------------------------------------------------------------------- /client/include/mysqlx/common/op_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/mysqlx/common/op_if.h -------------------------------------------------------------------------------- /client/include/mysqlx/common/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/mysqlx/common/settings.h -------------------------------------------------------------------------------- /client/include/mysqlx/common/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/mysqlx/common/util.h -------------------------------------------------------------------------------- /client/include/mysqlx/common/value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/mysqlx/common/value.h -------------------------------------------------------------------------------- /client/include/mysqlx/common_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/mysqlx/common_constants.h -------------------------------------------------------------------------------- /client/include/mysqlx/devapi/collations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/mysqlx/devapi/collations.h -------------------------------------------------------------------------------- /client/include/mysqlx/devapi/collection_crud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/mysqlx/devapi/collection_crud.h -------------------------------------------------------------------------------- /client/include/mysqlx/devapi/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/mysqlx/devapi/common.h -------------------------------------------------------------------------------- /client/include/mysqlx/devapi/crud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/mysqlx/devapi/crud.h -------------------------------------------------------------------------------- /client/include/mysqlx/devapi/detail/crud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/mysqlx/devapi/detail/crud.h -------------------------------------------------------------------------------- /client/include/mysqlx/devapi/detail/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/mysqlx/devapi/detail/error.h -------------------------------------------------------------------------------- /client/include/mysqlx/devapi/detail/result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/mysqlx/devapi/detail/result.h -------------------------------------------------------------------------------- /client/include/mysqlx/devapi/detail/row.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/mysqlx/devapi/detail/row.h -------------------------------------------------------------------------------- /client/include/mysqlx/devapi/detail/session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/mysqlx/devapi/detail/session.h -------------------------------------------------------------------------------- /client/include/mysqlx/devapi/detail/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/mysqlx/devapi/detail/settings.h -------------------------------------------------------------------------------- /client/include/mysqlx/devapi/document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/mysqlx/devapi/document.h -------------------------------------------------------------------------------- /client/include/mysqlx/devapi/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/mysqlx/devapi/error.h -------------------------------------------------------------------------------- /client/include/mysqlx/devapi/executable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/mysqlx/devapi/executable.h -------------------------------------------------------------------------------- /client/include/mysqlx/devapi/mysql_charsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/mysqlx/devapi/mysql_charsets.h -------------------------------------------------------------------------------- /client/include/mysqlx/devapi/mysql_collations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/mysqlx/devapi/mysql_collations.h -------------------------------------------------------------------------------- /client/include/mysqlx/devapi/result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/mysqlx/devapi/result.h -------------------------------------------------------------------------------- /client/include/mysqlx/devapi/row.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/mysqlx/devapi/row.h -------------------------------------------------------------------------------- /client/include/mysqlx/devapi/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/mysqlx/devapi/settings.h -------------------------------------------------------------------------------- /client/include/mysqlx/devapi/table_crud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/mysqlx/devapi/table_crud.h -------------------------------------------------------------------------------- /client/include/mysqlx/xapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/mysqlx/xapi.h -------------------------------------------------------------------------------- /client/include/mysqlx/xdevapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/mysqlx/xdevapi.h -------------------------------------------------------------------------------- /client/include/rpc/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/client.h -------------------------------------------------------------------------------- /client/include/rpc/client.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/client.inl -------------------------------------------------------------------------------- /client/include/rpc/compatibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/compatibility.h -------------------------------------------------------------------------------- /client/include/rpc/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/config.h -------------------------------------------------------------------------------- /client/include/rpc/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/config.h.in -------------------------------------------------------------------------------- /client/include/rpc/detail/all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/detail/all.h -------------------------------------------------------------------------------- /client/include/rpc/detail/any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/detail/any.h -------------------------------------------------------------------------------- /client/include/rpc/detail/async_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/detail/async_writer.h -------------------------------------------------------------------------------- /client/include/rpc/detail/bool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/detail/bool.h -------------------------------------------------------------------------------- /client/include/rpc/detail/call.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/detail/call.h -------------------------------------------------------------------------------- /client/include/rpc/detail/client_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/detail/client_error.h -------------------------------------------------------------------------------- /client/include/rpc/detail/constant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/detail/constant.h -------------------------------------------------------------------------------- /client/include/rpc/detail/dev_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/detail/dev_utils.h -------------------------------------------------------------------------------- /client/include/rpc/detail/func_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/detail/func_tools.h -------------------------------------------------------------------------------- /client/include/rpc/detail/func_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/detail/func_traits.h -------------------------------------------------------------------------------- /client/include/rpc/detail/if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/detail/if.h -------------------------------------------------------------------------------- /client/include/rpc/detail/invoke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/detail/invoke.h -------------------------------------------------------------------------------- /client/include/rpc/detail/is_specialization_of.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/detail/is_specialization_of.h -------------------------------------------------------------------------------- /client/include/rpc/detail/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/detail/log.h -------------------------------------------------------------------------------- /client/include/rpc/detail/make_unique.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/detail/make_unique.h -------------------------------------------------------------------------------- /client/include/rpc/detail/not.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/detail/not.h -------------------------------------------------------------------------------- /client/include/rpc/detail/pimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/detail/pimpl.h -------------------------------------------------------------------------------- /client/include/rpc/detail/response.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/detail/response.h -------------------------------------------------------------------------------- /client/include/rpc/detail/server_session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/detail/server_session.h -------------------------------------------------------------------------------- /client/include/rpc/detail/thread_group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/detail/thread_group.h -------------------------------------------------------------------------------- /client/include/rpc/detail/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/detail/util.h -------------------------------------------------------------------------------- /client/include/rpc/dispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/dispatcher.h -------------------------------------------------------------------------------- /client/include/rpc/dispatcher.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/dispatcher.inl -------------------------------------------------------------------------------- /client/include/rpc/msgpack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/adaptor/adaptor_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/adaptor/adaptor_base.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/adaptor/adaptor_base_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/adaptor/adaptor_base_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/adaptor/array_ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/adaptor/array_ref.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/adaptor/array_ref_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/adaptor/array_ref_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/adaptor/bool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/adaptor/bool.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/adaptor/boost/fusion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/adaptor/boost/fusion.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/adaptor/boost/msgpack_variant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/adaptor/boost/msgpack_variant.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/adaptor/boost/msgpack_variant_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/adaptor/boost/msgpack_variant_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/adaptor/boost/optional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/adaptor/boost/optional.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/adaptor/boost/string_ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/adaptor/boost/string_ref.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/adaptor/boost/string_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/adaptor/boost/string_view.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/adaptor/carray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/adaptor/carray.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/adaptor/char_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/adaptor/char_ptr.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/adaptor/check_container_size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/adaptor/check_container_size.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/adaptor/check_container_size_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/adaptor/check_container_size_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/adaptor/cpp11/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/adaptor/cpp11/array.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/adaptor/cpp11/array_char.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/adaptor/cpp11/array_char.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/adaptor/cpp11/array_unsigned_char.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/adaptor/cpp11/array_unsigned_char.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/adaptor/cpp11/forward_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/adaptor/cpp11/forward_list.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/adaptor/cpp11/reference_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/adaptor/cpp11/reference_wrapper.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/adaptor/cpp11/shared_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/adaptor/cpp11/shared_ptr.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/adaptor/cpp11/tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/adaptor/cpp11/tuple.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/adaptor/cpp11/unique_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/adaptor/cpp11/unique_ptr.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/adaptor/cpp11/unordered_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/adaptor/cpp11/unordered_map.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/adaptor/cpp11/unordered_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/adaptor/cpp11/unordered_set.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/adaptor/cpp17/optional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/adaptor/cpp17/optional.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/adaptor/cpp17/string_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/adaptor/cpp17/string_view.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/adaptor/define.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/adaptor/define.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/adaptor/define_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/adaptor/define_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/adaptor/deque.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/adaptor/deque.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/adaptor/ext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/adaptor/ext.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/adaptor/ext_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/adaptor/ext_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/adaptor/fixint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/adaptor/fixint.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/adaptor/fixint_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/adaptor/fixint_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/adaptor/float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/adaptor/float.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/adaptor/int.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/adaptor/int.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/adaptor/int_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/adaptor/int_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/adaptor/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/adaptor/list.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/adaptor/map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/adaptor/map.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/adaptor/map_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/adaptor/map_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/adaptor/msgpack_tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/adaptor/msgpack_tuple.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/adaptor/msgpack_tuple_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/adaptor/msgpack_tuple_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/adaptor/nil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/adaptor/nil.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/adaptor/nil_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/adaptor/nil_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/adaptor/pair.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/adaptor/pair.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/adaptor/raw.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/adaptor/raw.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/adaptor/raw_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/adaptor/raw_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/adaptor/set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/adaptor/set.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/adaptor/size_equal_only.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/adaptor/size_equal_only.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/adaptor/size_equal_only_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/adaptor/size_equal_only_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/adaptor/string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/adaptor/string.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/adaptor/tr1/unordered_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/adaptor/tr1/unordered_map.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/adaptor/tr1/unordered_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/adaptor/tr1/unordered_set.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/adaptor/v4raw.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/adaptor/v4raw.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/adaptor/v4raw_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/adaptor/v4raw_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/adaptor/vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/adaptor/vector.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/adaptor/vector_bool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/adaptor/vector_bool.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/adaptor/vector_char.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/adaptor/vector_char.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/adaptor/vector_unsigned_char.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/adaptor/vector_unsigned_char.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/cpp_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/cpp_config.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/cpp_config_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/cpp_config_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/fbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/fbuffer.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/fbuffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/fbuffer.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/fbuffer_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/fbuffer_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/gcc_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/gcc_atomic.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/gcc_atomic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/gcc_atomic.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/iterator.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/iterator_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/iterator_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/meta.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/meta.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/meta_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/meta_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/object.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/object.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/object_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/object_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/object_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/object_fwd.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/object_fwd_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/object_fwd_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/pack.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/pack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/pack.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/pack_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/pack_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/pack_define.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/pack_define.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/pack_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/pack_template.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/parse_return.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/parse_return.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/architecture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/architecture.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/architecture/alpha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/architecture/alpha.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/architecture/arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/architecture/arm.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/architecture/blackfin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/architecture/blackfin.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/architecture/convex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/architecture/convex.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/architecture/ia64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/architecture/ia64.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/architecture/m68k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/architecture/m68k.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/architecture/mips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/architecture/mips.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/architecture/parisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/architecture/parisc.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/architecture/ppc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/architecture/ppc.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/architecture/pyramid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/architecture/pyramid.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/architecture/rs6k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/architecture/rs6k.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/architecture/sparc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/architecture/sparc.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/architecture/superh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/architecture/superh.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/architecture/sys370.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/architecture/sys370.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/architecture/sys390.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/architecture/sys390.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/architecture/x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/architecture/x86.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/architecture/x86/32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/architecture/x86/32.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/architecture/x86/64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/architecture/x86/64.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/architecture/z.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/architecture/z.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/compiler.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/compiler/borland.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/compiler/borland.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/compiler/clang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/compiler/clang.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/compiler/comeau.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/compiler/comeau.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/compiler/compaq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/compiler/compaq.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/compiler/diab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/compiler/diab.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/compiler/digitalmars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/compiler/digitalmars.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/compiler/dignus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/compiler/dignus.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/compiler/edg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/compiler/edg.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/compiler/ekopath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/compiler/ekopath.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/compiler/gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/compiler/gcc.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/compiler/gcc_xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/compiler/gcc_xml.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/compiler/greenhills.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/compiler/greenhills.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/compiler/hp_acc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/compiler/hp_acc.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/compiler/iar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/compiler/iar.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/compiler/ibm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/compiler/ibm.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/compiler/intel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/compiler/intel.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/compiler/kai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/compiler/kai.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/compiler/llvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/compiler/llvm.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/compiler/metaware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/compiler/metaware.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/compiler/metrowerks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/compiler/metrowerks.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/compiler/microtec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/compiler/microtec.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/compiler/mpw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/compiler/mpw.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/compiler/palm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/compiler/palm.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/compiler/pgi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/compiler/pgi.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/compiler/sgi_mipspro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/compiler/sgi_mipspro.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/compiler/sunpro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/compiler/sunpro.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/compiler/tendra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/compiler/tendra.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/compiler/visualc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/compiler/visualc.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/compiler/watcom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/compiler/watcom.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/detail/_cassert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/detail/_cassert.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/detail/_exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/detail/_exception.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/detail/comp_detected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/detail/comp_detected.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/detail/endian_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/detail/endian_compat.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/detail/os_detected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/detail/os_detected.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/detail/platform_detected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/detail/platform_detected.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/detail/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/detail/test.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/detail/test_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/detail/test_def.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/hardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/hardware.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/hardware/simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/hardware/simd.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/hardware/simd/arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/hardware/simd/arm.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/hardware/simd/arm/versions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/hardware/simd/arm/versions.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/hardware/simd/ppc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/hardware/simd/ppc.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/hardware/simd/ppc/versions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/hardware/simd/ppc/versions.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/hardware/simd/x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/hardware/simd/x86.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/hardware/simd/x86/versions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/hardware/simd/x86/versions.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/hardware/simd/x86_amd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/hardware/simd/x86_amd.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/hardware/simd/x86_amd/versions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/hardware/simd/x86_amd/versions.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/language.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/language.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/language/objc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/language/objc.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/language/stdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/language/stdc.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/language/stdcpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/language/stdcpp.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/library.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/library/c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/library/c.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/library/c/_prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/library/c/_prefix.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/library/c/gnu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/library/c/gnu.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/library/c/uc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/library/c/uc.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/library/c/vms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/library/c/vms.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/library/c/zos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/library/c/zos.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/library/std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/library/std.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/library/std/_prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/library/std/_prefix.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/library/std/cxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/library/std/cxx.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/library/std/dinkumware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/library/std/dinkumware.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/library/std/libcomo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/library/std/libcomo.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/library/std/modena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/library/std/modena.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/library/std/msl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/library/std/msl.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/library/std/roguewave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/library/std/roguewave.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/library/std/sgi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/library/std/sgi.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/library/std/stdcpp3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/library/std/stdcpp3.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/library/std/stlport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/library/std/stlport.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/library/std/vacpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/library/std/vacpp.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/make.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/make.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/os.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/os/aix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/os/aix.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/os/amigaos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/os/amigaos.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/os/android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/os/android.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/os/beos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/os/beos.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/os/bsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/os/bsd.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/os/bsd/bsdi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/os/bsd/bsdi.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/os/bsd/dragonfly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/os/bsd/dragonfly.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/os/bsd/free.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/os/bsd/free.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/os/bsd/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/os/bsd/net.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/os/bsd/open.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/os/bsd/open.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/os/cygwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/os/cygwin.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/os/haiku.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/os/haiku.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/os/hpux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/os/hpux.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/os/ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/os/ios.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/os/irix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/os/irix.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/os/linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/os/linux.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/os/macos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/os/macos.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/os/os400.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/os/os400.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/os/qnxnto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/os/qnxnto.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/os/solaris.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/os/solaris.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/os/unix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/os/unix.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/os/vms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/os/vms.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/os/windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/os/windows.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/other.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/other.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/other/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/other/endian.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/platform.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/platform/mingw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/platform/mingw.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/platform/windows_desktop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/platform/windows_desktop.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/platform/windows_phone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/platform/windows_phone.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/platform/windows_runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/platform/windows_runtime.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/platform/windows_store.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/platform/windows_store.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/version.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/predef/version_number.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/predef/version_number.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/arithmetic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/arithmetic.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/arithmetic/add.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/arithmetic/add.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/arithmetic/dec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/arithmetic/dec.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/arithmetic/detail/div_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/arithmetic/detail/div_base.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/arithmetic/div.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/arithmetic/div.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/arithmetic/inc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/arithmetic/inc.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/arithmetic/mod.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/arithmetic/mod.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/arithmetic/mul.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/arithmetic/mul.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/arithmetic/sub.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/arithmetic/sub.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/array.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/array/data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/array/data.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/array/detail/get_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/array/detail/get_data.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/array/elem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/array/elem.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/array/enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/array/enum.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/array/insert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/array/insert.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/array/pop_back.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/array/pop_back.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/array/pop_front.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/array/pop_front.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/array/push_back.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/array/push_back.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/array/push_front.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/array/push_front.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/array/remove.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/array/remove.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/array/replace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/array/replace.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/array/reverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/array/reverse.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/array/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/array/size.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/array/to_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/array/to_list.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/array/to_seq.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/array/to_seq.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/array/to_tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/array/to_tuple.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/assert_msg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/assert_msg.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/cat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/cat.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/comma.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/comma.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/comma_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/comma_if.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/comparison.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/comparison.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/comparison/equal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/comparison/equal.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/comparison/greater.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/comparison/greater.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/comparison/greater_equal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/comparison/greater_equal.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/comparison/less.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/comparison/less.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/comparison/less_equal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/comparison/less_equal.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/comparison/not_equal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/comparison/not_equal.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/config/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/config/config.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/config/limits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/config/limits.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/control.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/control.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/control/deduce_d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/control/deduce_d.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/control/detail/dmc/while.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/control/detail/dmc/while.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/control/detail/edg/while.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/control/detail/edg/while.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/control/detail/msvc/while.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/control/detail/msvc/while.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/control/detail/while.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/control/detail/while.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/control/expr_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/control/expr_if.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/control/expr_iif.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/control/expr_iif.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/control/if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/control/if.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/control/iif.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/control/iif.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/control/while.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/control/while.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/debug.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/debug.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/debug/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/debug/assert.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/debug/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/debug/error.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/debug/line.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/debug/line.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/dec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/dec.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/detail/auto_rec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/detail/auto_rec.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/detail/check.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/detail/check.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/detail/dmc/auto_rec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/detail/dmc/auto_rec.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/detail/is_binary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/detail/is_binary.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/detail/is_nullary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/detail/is_nullary.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/detail/is_unary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/detail/is_unary.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/detail/null.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/detail/null.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/detail/split.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/detail/split.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/empty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/empty.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/enum.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/enum_params.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/enum_params.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/enum_params_with_a_default.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/enum_params_with_a_default.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/enum_params_with_defaults.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/enum_params_with_defaults.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/enum_shifted.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/enum_shifted.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/enum_shifted_params.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/enum_shifted_params.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/expand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/expand.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/expr_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/expr_if.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/facilities.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/facilities.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/facilities/apply.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/facilities/apply.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/facilities/detail/is_empty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/facilities/detail/is_empty.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/facilities/empty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/facilities/empty.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/facilities/expand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/facilities/expand.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/facilities/identity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/facilities/identity.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/facilities/intercept.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/facilities/intercept.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/facilities/is_1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/facilities/is_1.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/facilities/is_empty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/facilities/is_empty.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/facilities/is_empty_or_1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/facilities/is_empty_or_1.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/facilities/is_empty_variadic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/facilities/is_empty_variadic.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/facilities/overload.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/facilities/overload.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/for.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/for.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/identity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/identity.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/if.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/inc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/inc.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/iterate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/iterate.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/iteration.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/iteration.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/iteration/detail/bounds/lower1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/iteration/detail/bounds/lower1.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/iteration/detail/bounds/lower2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/iteration/detail/bounds/lower2.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/iteration/detail/bounds/lower3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/iteration/detail/bounds/lower3.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/iteration/detail/bounds/lower4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/iteration/detail/bounds/lower4.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/iteration/detail/bounds/lower5.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/iteration/detail/bounds/lower5.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/iteration/detail/bounds/upper1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/iteration/detail/bounds/upper1.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/iteration/detail/bounds/upper2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/iteration/detail/bounds/upper2.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/iteration/detail/bounds/upper3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/iteration/detail/bounds/upper3.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/iteration/detail/bounds/upper4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/iteration/detail/bounds/upper4.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/iteration/detail/bounds/upper5.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/iteration/detail/bounds/upper5.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/iteration/detail/finish.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/iteration/detail/finish.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/iteration/detail/iter/forward1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/iteration/detail/iter/forward1.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/iteration/detail/iter/forward2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/iteration/detail/iter/forward2.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/iteration/detail/iter/forward3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/iteration/detail/iter/forward3.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/iteration/detail/iter/forward4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/iteration/detail/iter/forward4.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/iteration/detail/iter/forward5.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/iteration/detail/iter/forward5.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/iteration/detail/iter/reverse1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/iteration/detail/iter/reverse1.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/iteration/detail/iter/reverse2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/iteration/detail/iter/reverse2.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/iteration/detail/iter/reverse3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/iteration/detail/iter/reverse3.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/iteration/detail/iter/reverse4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/iteration/detail/iter/reverse4.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/iteration/detail/iter/reverse5.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/iteration/detail/iter/reverse5.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/iteration/detail/local.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/iteration/detail/local.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/iteration/detail/rlocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/iteration/detail/rlocal.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/iteration/detail/self.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/iteration/detail/self.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/iteration/detail/start.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/iteration/detail/start.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/iteration/iterate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/iteration/iterate.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/iteration/local.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/iteration/local.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/iteration/self.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/iteration/self.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/library.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/library.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/limits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/limits.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/list.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/list/adt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/list/adt.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/list/append.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/list/append.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/list/at.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/list/at.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/list/cat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/list/cat.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/list/detail/dmc/fold_left.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/list/detail/dmc/fold_left.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/list/detail/edg/fold_left.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/list/detail/edg/fold_left.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/list/detail/edg/fold_right.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/list/detail/edg/fold_right.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/list/detail/fold_left.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/list/detail/fold_left.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/list/detail/fold_right.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/list/detail/fold_right.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/list/enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/list/enum.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/list/filter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/list/filter.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/list/first_n.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/list/first_n.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/list/fold_left.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/list/fold_left.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/list/fold_right.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/list/fold_right.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/list/for_each.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/list/for_each.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/list/for_each_i.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/list/for_each_i.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/list/for_each_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/list/for_each_product.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/list/rest_n.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/list/rest_n.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/list/reverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/list/reverse.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/list/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/list/size.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/list/to_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/list/to_array.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/list/to_seq.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/list/to_seq.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/list/to_tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/list/to_tuple.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/list/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/list/transform.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/logical.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/logical.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/logical/and.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/logical/and.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/logical/bitand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/logical/bitand.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/logical/bitnor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/logical/bitnor.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/logical/bitor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/logical/bitor.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/logical/bitxor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/logical/bitxor.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/logical/bool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/logical/bool.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/logical/compl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/logical/compl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/logical/nor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/logical/nor.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/logical/not.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/logical/not.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/logical/or.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/logical/or.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/logical/xor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/logical/xor.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/max.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/min.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/min.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/punctuation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/punctuation.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/punctuation/comma.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/punctuation/comma.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/punctuation/comma_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/punctuation/comma_if.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/punctuation/detail/is_begin_parens.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/punctuation/detail/is_begin_parens.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/punctuation/is_begin_parens.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/punctuation/is_begin_parens.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/punctuation/paren.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/punctuation/paren.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/punctuation/paren_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/punctuation/paren_if.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/punctuation/remove_parens.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/punctuation/remove_parens.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/repeat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/repeat.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/repeat_2nd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/repeat_2nd.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/repeat_3rd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/repeat_3rd.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/repeat_from_to.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/repeat_from_to.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/repeat_from_to_2nd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/repeat_from_to_2nd.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/repeat_from_to_3rd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/repeat_from_to_3rd.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/repetition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/repetition.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/repetition/deduce_r.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/repetition/deduce_r.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/repetition/deduce_z.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/repetition/deduce_z.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/repetition/detail/dmc/for.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/repetition/detail/dmc/for.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/repetition/detail/edg/for.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/repetition/detail/edg/for.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/repetition/detail/for.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/repetition/detail/for.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/repetition/detail/msvc/for.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/repetition/detail/msvc/for.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/repetition/enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/repetition/enum.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/repetition/enum_binary_params.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/repetition/enum_binary_params.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/repetition/enum_params.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/repetition/enum_params.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/repetition/enum_params_with_a_default.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/repetition/enum_params_with_a_default.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/repetition/enum_params_with_defaults.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/repetition/enum_params_with_defaults.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/repetition/enum_shifted.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/repetition/enum_shifted.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/repetition/enum_shifted_binary_params.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/repetition/enum_shifted_binary_params.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/repetition/enum_shifted_params.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/repetition/enum_shifted_params.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/repetition/enum_trailing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/repetition/enum_trailing.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/repetition/enum_trailing_binary_params.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/repetition/enum_trailing_binary_params.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/repetition/enum_trailing_params.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/repetition/enum_trailing_params.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/repetition/for.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/repetition/for.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/repetition/repeat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/repetition/repeat.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/repetition/repeat_from_to.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/repetition/repeat_from_to.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/selection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/selection.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/selection/max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/selection/max.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/selection/min.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/selection/min.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/seq.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/seq.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/seq/cat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/seq/cat.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/seq/detail/binary_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/seq/detail/binary_transform.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/seq/detail/is_empty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/seq/detail/is_empty.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/seq/detail/split.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/seq/detail/split.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/seq/elem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/seq/elem.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/seq/enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/seq/enum.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/seq/filter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/seq/filter.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/seq/first_n.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/seq/first_n.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/seq/fold_left.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/seq/fold_left.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/seq/fold_right.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/seq/fold_right.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/seq/for_each.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/seq/for_each.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/seq/for_each_i.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/seq/for_each_i.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/seq/for_each_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/seq/for_each_product.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/seq/insert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/seq/insert.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/seq/pop_back.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/seq/pop_back.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/seq/pop_front.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/seq/pop_front.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/seq/push_back.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/seq/push_back.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/seq/push_front.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/seq/push_front.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/seq/remove.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/seq/remove.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/seq/replace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/seq/replace.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/seq/rest_n.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/seq/rest_n.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/seq/reverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/seq/reverse.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/seq/seq.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/seq/seq.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/seq/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/seq/size.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/seq/subseq.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/seq/subseq.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/seq/to_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/seq/to_array.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/seq/to_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/seq/to_list.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/seq/to_tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/seq/to_tuple.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/seq/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/seq/transform.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/seq/variadic_seq_to_seq.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/seq/variadic_seq_to_seq.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/slot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/slot.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/slot/counter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/slot/counter.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/slot/detail/counter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/slot/detail/counter.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/slot/detail/def.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/slot/detail/def.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/slot/detail/shared.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/slot/detail/shared.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/slot/detail/slot1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/slot/detail/slot1.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/slot/detail/slot2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/slot/detail/slot2.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/slot/detail/slot3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/slot/detail/slot3.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/slot/detail/slot4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/slot/detail/slot4.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/slot/detail/slot5.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/slot/detail/slot5.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/slot/slot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/slot/slot.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/stringize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/stringize.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/tuple.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/tuple/detail/is_single_return.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/tuple/detail/is_single_return.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/tuple/eat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/tuple/eat.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/tuple/elem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/tuple/elem.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/tuple/enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/tuple/enum.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/tuple/insert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/tuple/insert.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/tuple/pop_back.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/tuple/pop_back.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/tuple/pop_front.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/tuple/pop_front.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/tuple/push_back.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/tuple/push_back.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/tuple/push_front.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/tuple/push_front.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/tuple/rem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/tuple/rem.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/tuple/remove.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/tuple/remove.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/tuple/replace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/tuple/replace.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/tuple/reverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/tuple/reverse.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/tuple/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/tuple/size.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/tuple/to_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/tuple/to_array.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/tuple/to_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/tuple/to_list.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/tuple/to_seq.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/tuple/to_seq.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/variadic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/variadic.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/variadic/detail/is_single_return.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/variadic/detail/is_single_return.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/variadic/elem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/variadic/elem.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/variadic/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/variadic/size.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/variadic/to_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/variadic/to_array.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/variadic/to_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/variadic/to_list.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/variadic/to_seq.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/variadic/to_seq.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/variadic/to_tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/variadic/to_tuple.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/while.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/while.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/preprocessor/wstringize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/preprocessor/wstringize.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/sbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/sbuffer.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/sbuffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/sbuffer.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/sbuffer_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/sbuffer_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/sysdep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/sysdep.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/type.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/unpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/unpack.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/unpack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/unpack.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/unpack_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/unpack_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/unpack_define.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/unpack_define.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/unpack_exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/unpack_exception.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/unpack_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/unpack_template.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/util.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/adaptor_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/adaptor_base.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/adaptor_base_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/adaptor_base_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/array_ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/array_ref.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/array_ref_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/array_ref_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/bool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/bool.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/boost/fusion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/boost/fusion.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/boost/msgpack_variant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/boost/msgpack_variant.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/boost/msgpack_variant_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/boost/msgpack_variant_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/boost/optional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/boost/optional.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/boost/string_ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/boost/string_ref.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/boost/string_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/boost/string_view.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/carray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/carray.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/char_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/char_ptr.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/check_container_size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/check_container_size.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/check_container_size_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/check_container_size_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/cpp11/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/cpp11/array.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/cpp11/array_char.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/cpp11/array_char.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/cpp11/array_unsigned_char.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/cpp11/array_unsigned_char.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/cpp11/forward_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/cpp11/forward_list.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/cpp11/reference_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/cpp11/reference_wrapper.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/cpp11/shared_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/cpp11/shared_ptr.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/cpp11/tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/cpp11/tuple.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/cpp11/unique_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/cpp11/unique_ptr.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/cpp11/unordered_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/cpp11/unordered_map.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/cpp11/unordered_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/cpp11/unordered_set.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/cpp17/optional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/cpp17/optional.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/cpp17/string_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/cpp17/string_view.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/define.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/define.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/define_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/define_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/deque.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/deque.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/detail/cpp03_define_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/detail/cpp03_define_array.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/detail/cpp03_define_array_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/detail/cpp03_define_array_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/detail/cpp03_define_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/detail/cpp03_define_map.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/detail/cpp03_define_map_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/detail/cpp03_define_map_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/detail/cpp03_msgpack_tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/detail/cpp03_msgpack_tuple.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/detail/cpp03_msgpack_tuple_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/detail/cpp03_msgpack_tuple_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/detail/cpp11_define_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/detail/cpp11_define_array.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/detail/cpp11_define_array_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/detail/cpp11_define_array_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/detail/cpp11_define_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/detail/cpp11_define_map.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/detail/cpp11_define_map_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/detail/cpp11_define_map_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/detail/cpp11_msgpack_tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/detail/cpp11_msgpack_tuple.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/detail/cpp11_msgpack_tuple_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/detail/cpp11_msgpack_tuple_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/ext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/ext.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/ext_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/ext_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/fixint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/fixint.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/fixint_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/fixint_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/float.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/int.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/int.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/int_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/int_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/list.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/map.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/map_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/map_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/msgpack_tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/msgpack_tuple.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/msgpack_tuple_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/msgpack_tuple_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/nil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/nil.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/nil_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/nil_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/pair.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/pair.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/raw.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/raw.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/raw_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/raw_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/set.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/size_equal_only.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/size_equal_only.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/size_equal_only_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/size_equal_only_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/string.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/tr1/unordered_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/tr1/unordered_map.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/tr1/unordered_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/tr1/unordered_set.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/v4raw.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/v4raw.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/v4raw_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/v4raw_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/vector.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/vector_bool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/vector_bool.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/vector_char.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/vector_char.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/adaptor/vector_unsigned_char.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/adaptor/vector_unsigned_char.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/cpp_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/cpp_config.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/cpp_config_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/cpp_config_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/detail/cpp03_zone.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/detail/cpp03_zone.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/detail/cpp03_zone_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/detail/cpp03_zone_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/detail/cpp11_zone.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/detail/cpp11_zone.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/detail/cpp11_zone_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/detail/cpp11_zone_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/fbuffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/fbuffer.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/fbuffer_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/fbuffer_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/iterator.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/iterator_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/iterator_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/meta.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/meta.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/meta_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/meta_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/object.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/object_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/object_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/object_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/object_fwd.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/object_fwd_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/object_fwd_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/pack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/pack.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/pack_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/pack_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/parse_return.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/parse_return.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/preprocessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/preprocessor.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/sbuffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/sbuffer.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/sbuffer_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/sbuffer_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/unpack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/unpack.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/unpack_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/unpack_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/unpack_exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/unpack_exception.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/version.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/versioning.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/versioning.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/vrefbuffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/vrefbuffer.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/vrefbuffer_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/vrefbuffer_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/zbuffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/zbuffer.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/zbuffer_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/zbuffer_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/zone.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/zone.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v1/zone_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v1/zone_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v2/adaptor/adaptor_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v2/adaptor/adaptor_base.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v2/adaptor/adaptor_base_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v2/adaptor/adaptor_base_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v2/adaptor/array_ref_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v2/adaptor/array_ref_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v2/adaptor/boost/msgpack_variant_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v2/adaptor/boost/msgpack_variant_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v2/adaptor/check_container_size_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v2/adaptor/check_container_size_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v2/adaptor/define_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v2/adaptor/define_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v2/adaptor/detail/cpp03_define_array_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v2/adaptor/detail/cpp03_define_array_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v2/adaptor/detail/cpp03_define_map_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v2/adaptor/detail/cpp03_define_map_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v2/adaptor/detail/cpp03_msgpack_tuple_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v2/adaptor/detail/cpp03_msgpack_tuple_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v2/adaptor/detail/cpp11_define_array_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v2/adaptor/detail/cpp11_define_array_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v2/adaptor/detail/cpp11_define_map_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v2/adaptor/detail/cpp11_define_map_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v2/adaptor/detail/cpp11_msgpack_tuple_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v2/adaptor/detail/cpp11_msgpack_tuple_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v2/adaptor/ext_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v2/adaptor/ext_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v2/adaptor/fixint_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v2/adaptor/fixint_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v2/adaptor/int_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v2/adaptor/int_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v2/adaptor/map_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v2/adaptor/map_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v2/adaptor/msgpack_tuple_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v2/adaptor/msgpack_tuple_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v2/adaptor/nil_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v2/adaptor/nil_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v2/adaptor/raw_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v2/adaptor/raw_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v2/adaptor/size_equal_only_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v2/adaptor/size_equal_only_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v2/adaptor/v4raw_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v2/adaptor/v4raw_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v2/cpp_config_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v2/cpp_config_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v2/create_object_visitor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v2/create_object_visitor.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v2/detail/cpp03_zone_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v2/detail/cpp03_zone_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v2/detail/cpp11_zone_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v2/detail/cpp11_zone_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v2/fbuffer_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v2/fbuffer_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v2/iterator_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v2/iterator_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v2/meta_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v2/meta_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v2/null_visitor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v2/null_visitor.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v2/object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v2/object.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v2/object_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v2/object_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v2/object_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v2/object_fwd.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v2/object_fwd_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v2/object_fwd_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v2/pack_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v2/pack_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v2/parse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v2/parse.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v2/parse_return.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v2/parse_return.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v2/sbuffer_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v2/sbuffer_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v2/unpack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v2/unpack.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v2/unpack_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v2/unpack_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v2/vrefbuffer_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v2/vrefbuffer_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v2/x3_parse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v2/x3_parse.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v2/x3_unpack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v2/x3_unpack.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v2/zbuffer_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v2/zbuffer_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/v2/zone_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/v2/zone_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/version.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/version.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/version_master.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/version_master.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/versioning.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/versioning.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/vrefbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/vrefbuffer.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/vrefbuffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/vrefbuffer.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/vrefbuffer_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/vrefbuffer_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/zbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/zbuffer.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/zbuffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/zbuffer.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/zbuffer_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/zbuffer_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/zone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/zone.h -------------------------------------------------------------------------------- /client/include/rpc/msgpack/zone.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/zone.hpp -------------------------------------------------------------------------------- /client/include/rpc/msgpack/zone_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/msgpack/zone_decl.hpp -------------------------------------------------------------------------------- /client/include/rpc/nonstd/optional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/nonstd/optional.hpp -------------------------------------------------------------------------------- /client/include/rpc/rpc_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/rpc_error.h -------------------------------------------------------------------------------- /client/include/rpc/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/server.h -------------------------------------------------------------------------------- /client/include/rpc/this_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/this_handler.h -------------------------------------------------------------------------------- /client/include/rpc/this_handler.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/this_handler.inl -------------------------------------------------------------------------------- /client/include/rpc/this_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/this_server.h -------------------------------------------------------------------------------- /client/include/rpc/this_session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/this_session.h -------------------------------------------------------------------------------- /client/include/rpc/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/version.h -------------------------------------------------------------------------------- /client/include/rpc/version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/include/rpc/version.h.in -------------------------------------------------------------------------------- /client/lib/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/lib/.DS_Store -------------------------------------------------------------------------------- /client/lib/libmysqlcppconn.so.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/lib/libmysqlcppconn.so.7 -------------------------------------------------------------------------------- /client/lib/librpc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/lib/librpc.a -------------------------------------------------------------------------------- /client/local_sql.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/local_sql.cpp -------------------------------------------------------------------------------- /client/local_sql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/local_sql.h -------------------------------------------------------------------------------- /client/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/main.cpp -------------------------------------------------------------------------------- /client/metadata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/metadata.cpp -------------------------------------------------------------------------------- /client/metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/metadata.h -------------------------------------------------------------------------------- /client/parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/parser.cpp -------------------------------------------------------------------------------- /client/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/parser.h -------------------------------------------------------------------------------- /client/query_tree_with_fragment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/query_tree_with_fragment.cpp -------------------------------------------------------------------------------- /client/query_tree_with_fragment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/query_tree_with_fragment.h -------------------------------------------------------------------------------- /client/rpc_client_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/rpc_client_test.cpp -------------------------------------------------------------------------------- /client/rpc_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/rpc_server.cpp -------------------------------------------------------------------------------- /client/rpc_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/rpc_server.h -------------------------------------------------------------------------------- /client/rpc_sql.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/rpc_sql.cpp -------------------------------------------------------------------------------- /client/rpc_sql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/rpc_sql.h -------------------------------------------------------------------------------- /client/sql_exec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/sql_exec.cpp -------------------------------------------------------------------------------- /client/sql_exec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/client/sql_exec.h -------------------------------------------------------------------------------- /ddb2018-data.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/ddb2018-data.zip -------------------------------------------------------------------------------- /img/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/img/1.png -------------------------------------------------------------------------------- /img/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/img/2.png -------------------------------------------------------------------------------- /img/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/img/3.png -------------------------------------------------------------------------------- /img/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommenx/DDB/HEAD/img/4.png --------------------------------------------------------------------------------