├── .gitignore ├── .gitmodules ├── CHANGELOG.md ├── LICENSE ├── README.md ├── docs └── images │ └── EU_flag.png ├── include ├── BRTLibrary.h ├── Base │ ├── BRTManager.hpp │ ├── Listener.hpp │ ├── ListenerBase.hpp │ └── ModelBase.hpp ├── BilateralFilter │ ├── BilateralFilterBase.hpp │ └── SOSBilateralFilter.hpp ├── Common │ ├── AddDelayExpansionMethod.hpp │ ├── AudioMixer.hpp │ ├── BiquadFilter.hpp │ ├── Buffer.hpp │ ├── CascadeGraphicEq9OctaveBands.hpp │ ├── CommonDefinitions.hpp │ ├── Conventions.hpp │ ├── CranicalGeometry.hpp │ ├── EnvelopeDetector.hpp │ ├── ErrorHandler.hpp │ ├── FFTCalculator.hpp │ ├── FiltersChain.hpp │ ├── GlobalParameters.hpp │ ├── IRWindowing.hpp │ ├── Profiler.hpp │ ├── Quaternion.hpp │ ├── RMSCalculator.hpp │ ├── SourceListenerRelativePositionCalculation.hpp │ ├── Transform.hpp │ ├── Vector3.hpp │ ├── Waveguide.hpp │ └── fftsg.hpp ├── Connectivity │ ├── AdvancedEntryPointManager.hpp │ ├── BRTConnectivity.hpp │ ├── Command.hpp │ ├── CommandEntryPointManager.hpp │ ├── EntryPoint.hpp │ ├── EntryPointManager.hpp │ ├── ExitPoint.hpp │ ├── ExitPointManager.hpp │ └── ObserverBase.hpp ├── EnvironmentModels │ ├── EnvironmentModelBase.hpp │ ├── FreeFieldEnvironment │ │ ├── FreeFieldEnvironment.hpp │ │ └── FreeFieldEnvironmentProcessor.hpp │ ├── FreeFieldEnvironmentModel.hpp │ ├── ISMEnvironment │ │ ├── ISMEnvironment.hpp │ │ ├── ISMEnvironmentProcessor.hpp │ │ ├── ISMParameters.hpp │ │ └── ISMSourceImage.hpp │ ├── ISMEnvironmentModel.hpp │ ├── SDNEnvironment │ │ ├── SDNDelayLine.hpp │ │ ├── SDNEnvironment.hpp │ │ ├── SDNEnvironmentProcessor.hpp │ │ ├── SDNNode.hpp │ │ ├── SDNParameters.hpp │ │ ├── SDNUtils.hpp │ │ ├── ScatteringNode.hpp │ │ └── WaveGuide.hpp │ ├── SDNEnvironmentModel.hpp │ └── VirtualSourceList.hpp ├── ListenerModels │ ├── ListenerAmbisonicReverberantVirtualLoudspeakersModel.hpp │ ├── ListenerAmbisonicVirtualLoudspeakersModel.hpp │ ├── ListenerDirectBRIRConvolution.hpp │ ├── ListenerDirectHRTFConvolution.hpp │ └── ListenerModelBase.hpp ├── ProcessingModules │ ├── AmbisonicDomainConvolver.hpp │ ├── AmbisonicDomainConvolverProcessor.hpp │ ├── AmbisonicEncoder.hpp │ ├── BilateralAmbisonicEncoder.hpp │ ├── BilateralAmbisonicEncoderProcessor.hpp │ ├── BinauralFilter.hpp │ ├── DirectivityTFConvolver.hpp │ ├── DistanceAttenuator.hpp │ ├── DistanceAttenuatorProcessor.hpp │ ├── HRTFConvolver.hpp │ ├── HRTFConvolverProcessor.hpp │ ├── NearFieldEffectProcessor.hpp │ └── UniformPartitionedConvolution.hpp ├── Readers │ ├── LibMySofaLoader.hpp │ ├── OBJReader.hpp │ └── SofaReader.hpp ├── ServiceModules │ ├── AmbisonicBIR.hpp │ ├── DirectivityTF.hpp │ ├── DirectivityTFAuxiliarMethods.hpp │ ├── DirectivityTFDefinitions.hpp │ ├── Extrapolation.hpp │ ├── GridsManager.hpp │ ├── HRBRIR.hpp │ ├── HRTF.hpp │ ├── HRTFAuxiliarMethods.hpp │ ├── HRTFDefinitions.hpp │ ├── HRTFTester.hpp │ ├── InterpolationAuxiliarMethods.hpp │ ├── OfflineInterpolation.hpp │ ├── OfflineInterpolationAuxiliarMethods.hpp │ ├── OnlineInterpolation.hpp │ ├── Room.hpp │ ├── SOSFilters.hpp │ ├── ServicesBase.hpp │ ├── VirtualSpeakers.hpp │ └── Wall.hpp ├── SourceModels │ ├── SourceDirectivityModel.hpp │ ├── SourceModelBase.hpp │ ├── SourceOmnidirectionalModel.hpp │ └── VirtualSourceModel.hpp └── third_party_libraries │ ├── boost_circular_buffer │ ├── LICENSE_1_0.txt │ ├── boost │ │ ├── assert.hpp │ │ ├── call_traits.hpp │ │ ├── circular_buffer.hpp │ │ ├── circular_buffer │ │ │ ├── base.hpp │ │ │ ├── debug.hpp │ │ │ ├── details.hpp │ │ │ └── space_optimized.hpp │ │ ├── circular_buffer_fwd.hpp │ │ ├── concept │ │ │ ├── assert.hpp │ │ │ ├── detail │ │ │ │ ├── backward_compatibility.hpp │ │ │ │ ├── borland.hpp │ │ │ │ ├── concept_def.hpp │ │ │ │ ├── concept_undef.hpp │ │ │ │ ├── general.hpp │ │ │ │ ├── has_constraints.hpp │ │ │ │ └── msvc.hpp │ │ │ └── usage.hpp │ │ ├── concept_check.hpp │ │ ├── config.hpp │ │ ├── config │ │ │ ├── abi │ │ │ │ ├── borland_prefix.hpp │ │ │ │ ├── borland_suffix.hpp │ │ │ │ ├── msvc_prefix.hpp │ │ │ │ └── msvc_suffix.hpp │ │ │ ├── abi_prefix.hpp │ │ │ ├── abi_suffix.hpp │ │ │ ├── auto_link.hpp │ │ │ ├── compiler │ │ │ │ ├── borland.hpp │ │ │ │ ├── clang.hpp │ │ │ │ ├── codegear.hpp │ │ │ │ ├── comeau.hpp │ │ │ │ ├── common_edg.hpp │ │ │ │ ├── compaq_cxx.hpp │ │ │ │ ├── cray.hpp │ │ │ │ ├── diab.hpp │ │ │ │ ├── digitalmars.hpp │ │ │ │ ├── gcc.hpp │ │ │ │ ├── gcc_xml.hpp │ │ │ │ ├── greenhills.hpp │ │ │ │ ├── hp_acc.hpp │ │ │ │ ├── intel.hpp │ │ │ │ ├── kai.hpp │ │ │ │ ├── metrowerks.hpp │ │ │ │ ├── mpw.hpp │ │ │ │ ├── nvcc.hpp │ │ │ │ ├── pathscale.hpp │ │ │ │ ├── pgi.hpp │ │ │ │ ├── sgi_mipspro.hpp │ │ │ │ ├── sunpro_cc.hpp │ │ │ │ ├── vacpp.hpp │ │ │ │ ├── visualc.hpp │ │ │ │ ├── xlcpp.hpp │ │ │ │ └── xlcpp_zos.hpp │ │ │ ├── detail │ │ │ │ ├── posix_features.hpp │ │ │ │ ├── select_compiler_config.hpp │ │ │ │ ├── select_platform_config.hpp │ │ │ │ ├── select_stdlib_config.hpp │ │ │ │ └── suffix.hpp │ │ │ ├── no_tr1 │ │ │ │ ├── cmath.hpp │ │ │ │ ├── complex.hpp │ │ │ │ ├── functional.hpp │ │ │ │ ├── memory.hpp │ │ │ │ └── utility.hpp │ │ │ ├── platform │ │ │ │ ├── aix.hpp │ │ │ │ ├── amigaos.hpp │ │ │ │ ├── beos.hpp │ │ │ │ ├── bsd.hpp │ │ │ │ ├── cloudabi.hpp │ │ │ │ ├── cray.hpp │ │ │ │ ├── cygwin.hpp │ │ │ │ ├── haiku.hpp │ │ │ │ ├── hpux.hpp │ │ │ │ ├── irix.hpp │ │ │ │ ├── linux.hpp │ │ │ │ ├── macos.hpp │ │ │ │ ├── qnxnto.hpp │ │ │ │ ├── solaris.hpp │ │ │ │ ├── symbian.hpp │ │ │ │ ├── vms.hpp │ │ │ │ ├── vxworks.hpp │ │ │ │ ├── win32.hpp │ │ │ │ └── zos.hpp │ │ │ ├── requires_threads.hpp │ │ │ ├── stdlib │ │ │ │ ├── dinkumware.hpp │ │ │ │ ├── libcomo.hpp │ │ │ │ ├── libcpp.hpp │ │ │ │ ├── libstdcpp3.hpp │ │ │ │ ├── modena.hpp │ │ │ │ ├── msl.hpp │ │ │ │ ├── roguewave.hpp │ │ │ │ ├── sgi.hpp │ │ │ │ ├── stlport.hpp │ │ │ │ ├── vacpp.hpp │ │ │ │ └── xlcpp_zos.hpp │ │ │ ├── user.hpp │ │ │ ├── warning_disable.hpp │ │ │ └── workaround.hpp │ │ ├── container │ │ │ ├── allocator_traits.hpp │ │ │ ├── container_fwd.hpp │ │ │ └── detail │ │ │ │ ├── config_begin.hpp │ │ │ │ ├── config_end.hpp │ │ │ │ ├── mpl.hpp │ │ │ │ ├── placement_new.hpp │ │ │ │ ├── std_fwd.hpp │ │ │ │ ├── type_traits.hpp │ │ │ │ └── workaround.hpp │ │ ├── core │ │ │ ├── addressof.hpp │ │ │ ├── enable_if.hpp │ │ │ ├── no_exceptions_support.hpp │ │ │ ├── noncopyable.hpp │ │ │ └── pointer_traits.hpp │ │ ├── current_function.hpp │ │ ├── detail │ │ │ ├── call_traits.hpp │ │ │ ├── indirect_traits.hpp │ │ │ ├── iterator.hpp │ │ │ ├── no_exceptions_support.hpp │ │ │ └── workaround.hpp │ │ ├── exception │ │ │ └── exception.hpp │ │ ├── intrusive │ │ │ ├── detail │ │ │ │ ├── config_begin.hpp │ │ │ │ ├── config_end.hpp │ │ │ │ ├── has_member_function_callable_with.hpp │ │ │ │ ├── mpl.hpp │ │ │ │ └── workaround.hpp │ │ │ ├── pointer_rebind.hpp │ │ │ └── pointer_traits.hpp │ │ ├── iterator │ │ │ ├── detail │ │ │ │ ├── config_def.hpp │ │ │ │ ├── config_undef.hpp │ │ │ │ ├── enable_if.hpp │ │ │ │ └── facade_iterator_category.hpp │ │ │ ├── interoperable.hpp │ │ │ ├── iterator_adaptor.hpp │ │ │ ├── iterator_categories.hpp │ │ │ ├── iterator_facade.hpp │ │ │ ├── iterator_traits.hpp │ │ │ └── reverse_iterator.hpp │ │ ├── limits.hpp │ │ ├── move │ │ │ ├── adl_move_swap.hpp │ │ │ ├── algo │ │ │ │ └── move.hpp │ │ │ ├── algorithm.hpp │ │ │ ├── core.hpp │ │ │ ├── detail │ │ │ │ ├── config_begin.hpp │ │ │ │ ├── config_end.hpp │ │ │ │ ├── fwd_macros.hpp │ │ │ │ ├── iterator_to_raw_pointer.hpp │ │ │ │ ├── iterator_traits.hpp │ │ │ │ ├── meta_utils.hpp │ │ │ │ ├── meta_utils_core.hpp │ │ │ │ ├── pointer_element.hpp │ │ │ │ ├── std_ns_begin.hpp │ │ │ │ ├── std_ns_end.hpp │ │ │ │ ├── to_raw_pointer.hpp │ │ │ │ ├── type_traits.hpp │ │ │ │ └── workaround.hpp │ │ │ ├── iterator.hpp │ │ │ ├── move.hpp │ │ │ ├── traits.hpp │ │ │ ├── utility.hpp │ │ │ └── utility_core.hpp │ │ ├── mpl │ │ │ ├── always.hpp │ │ │ ├── and.hpp │ │ │ ├── apply.hpp │ │ │ ├── apply_fwd.hpp │ │ │ ├── apply_wrap.hpp │ │ │ ├── arg.hpp │ │ │ ├── arg_fwd.hpp │ │ │ ├── assert.hpp │ │ │ ├── aux_ │ │ │ │ ├── adl_barrier.hpp │ │ │ │ ├── arg_typedef.hpp │ │ │ │ ├── arity.hpp │ │ │ │ ├── arity_spec.hpp │ │ │ │ ├── common_name_wknd.hpp │ │ │ │ ├── config │ │ │ │ │ ├── adl.hpp │ │ │ │ │ ├── arrays.hpp │ │ │ │ │ ├── bcc.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── compiler.hpp │ │ │ │ │ ├── ctps.hpp │ │ │ │ │ ├── dmc_ambiguous_ctps.hpp │ │ │ │ │ ├── dtp.hpp │ │ │ │ │ ├── eti.hpp │ │ │ │ │ ├── gcc.hpp │ │ │ │ │ ├── gpu.hpp │ │ │ │ │ ├── has_apply.hpp │ │ │ │ │ ├── has_xxx.hpp │ │ │ │ │ ├── integral.hpp │ │ │ │ │ ├── intel.hpp │ │ │ │ │ ├── lambda.hpp │ │ │ │ │ ├── msvc.hpp │ │ │ │ │ ├── msvc_typename.hpp │ │ │ │ │ ├── nttp.hpp │ │ │ │ │ ├── overload_resolution.hpp │ │ │ │ │ ├── pp_counter.hpp │ │ │ │ │ ├── preprocessor.hpp │ │ │ │ │ ├── static_constant.hpp │ │ │ │ │ ├── ttp.hpp │ │ │ │ │ ├── use_preprocessed.hpp │ │ │ │ │ └── workaround.hpp │ │ │ │ ├── count_args.hpp │ │ │ │ ├── full_lambda.hpp │ │ │ │ ├── has_apply.hpp │ │ │ │ ├── has_rebind.hpp │ │ │ │ ├── has_type.hpp │ │ │ │ ├── include_preprocessed.hpp │ │ │ │ ├── integral_wrapper.hpp │ │ │ │ ├── lambda_arity_param.hpp │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ ├── lambda_support.hpp │ │ │ │ ├── logical_op.hpp │ │ │ │ ├── msvc_dtw.hpp │ │ │ │ ├── msvc_is_class.hpp │ │ │ │ ├── msvc_never_true.hpp │ │ │ │ ├── na.hpp │ │ │ │ ├── na_assert.hpp │ │ │ │ ├── na_fwd.hpp │ │ │ │ ├── na_spec.hpp │ │ │ │ ├── nested_type_wknd.hpp │ │ │ │ ├── nttp_decl.hpp │ │ │ │ ├── preprocessed │ │ │ │ │ ├── bcc │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ ├── bcc551 │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ ├── bcc_pre590 │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ ├── dmc │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ ├── gcc │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ ├── msvc60 │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ ├── msvc70 │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ ├── mwcw │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ ├── no_ctps │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ ├── no_ttp │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ └── plain │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ ├── preprocessor │ │ │ │ │ ├── add.hpp │ │ │ │ │ ├── def_params_tail.hpp │ │ │ │ │ ├── default_params.hpp │ │ │ │ │ ├── enum.hpp │ │ │ │ │ ├── ext_params.hpp │ │ │ │ │ ├── filter_params.hpp │ │ │ │ │ ├── params.hpp │ │ │ │ │ ├── partial_spec_params.hpp │ │ │ │ │ ├── range.hpp │ │ │ │ │ ├── repeat.hpp │ │ │ │ │ ├── sub.hpp │ │ │ │ │ └── tuple.hpp │ │ │ │ ├── static_cast.hpp │ │ │ │ ├── template_arity.hpp │ │ │ │ ├── template_arity_fwd.hpp │ │ │ │ ├── type_wrapper.hpp │ │ │ │ ├── value_wknd.hpp │ │ │ │ └── yes_no.hpp │ │ │ ├── bind.hpp │ │ │ ├── bind_fwd.hpp │ │ │ ├── bool.hpp │ │ │ ├── bool_fwd.hpp │ │ │ ├── eval_if.hpp │ │ │ ├── has_xxx.hpp │ │ │ ├── identity.hpp │ │ │ ├── if.hpp │ │ │ ├── int.hpp │ │ │ ├── int_fwd.hpp │ │ │ ├── integral_c_tag.hpp │ │ │ ├── is_placeholder.hpp │ │ │ ├── lambda.hpp │ │ │ ├── lambda_fwd.hpp │ │ │ ├── limits │ │ │ │ └── arity.hpp │ │ │ ├── next.hpp │ │ │ ├── next_prior.hpp │ │ │ ├── not.hpp │ │ │ ├── or.hpp │ │ │ ├── placeholders.hpp │ │ │ ├── protect.hpp │ │ │ ├── quote.hpp │ │ │ ├── void.hpp │ │ │ └── void_fwd.hpp │ │ ├── noncopyable.hpp │ │ ├── preprocessor │ │ │ ├── arithmetic │ │ │ │ ├── add.hpp │ │ │ │ ├── dec.hpp │ │ │ │ ├── inc.hpp │ │ │ │ └── sub.hpp │ │ │ ├── array │ │ │ │ ├── data.hpp │ │ │ │ ├── elem.hpp │ │ │ │ └── size.hpp │ │ │ ├── cat.hpp │ │ │ ├── comma_if.hpp │ │ │ ├── comparison │ │ │ │ └── not_equal.hpp │ │ │ ├── config │ │ │ │ └── config.hpp │ │ │ ├── control │ │ │ │ ├── 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 │ │ │ │ └── error.hpp │ │ │ ├── dec.hpp │ │ │ ├── detail │ │ │ │ ├── auto_rec.hpp │ │ │ │ ├── check.hpp │ │ │ │ ├── dmc │ │ │ │ │ └── auto_rec.hpp │ │ │ │ ├── is_binary.hpp │ │ │ │ └── split.hpp │ │ │ ├── empty.hpp │ │ │ ├── enum_shifted_params.hpp │ │ │ ├── expr_if.hpp │ │ │ ├── facilities │ │ │ │ ├── detail │ │ │ │ │ └── is_empty.hpp │ │ │ │ ├── empty.hpp │ │ │ │ ├── expand.hpp │ │ │ │ ├── identity.hpp │ │ │ │ ├── is_1.hpp │ │ │ │ ├── is_empty.hpp │ │ │ │ ├── is_empty_variadic.hpp │ │ │ │ └── overload.hpp │ │ │ ├── identity.hpp │ │ │ ├── inc.hpp │ │ │ ├── iterate.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 │ │ │ ├── list │ │ │ │ ├── adt.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── dmc │ │ │ │ │ │ └── fold_left.hpp │ │ │ │ │ ├── edg │ │ │ │ │ │ ├── fold_left.hpp │ │ │ │ │ │ └── fold_right.hpp │ │ │ │ │ ├── fold_left.hpp │ │ │ │ │ └── fold_right.hpp │ │ │ │ ├── fold_left.hpp │ │ │ │ ├── fold_right.hpp │ │ │ │ ├── for_each_i.hpp │ │ │ │ └── reverse.hpp │ │ │ ├── logical │ │ │ │ ├── and.hpp │ │ │ │ ├── bitand.hpp │ │ │ │ ├── bool.hpp │ │ │ │ └── compl.hpp │ │ │ ├── punctuation │ │ │ │ ├── comma.hpp │ │ │ │ ├── comma_if.hpp │ │ │ │ ├── detail │ │ │ │ │ └── is_begin_parens.hpp │ │ │ │ └── is_begin_parens.hpp │ │ │ ├── repeat.hpp │ │ │ ├── repetition │ │ │ │ ├── detail │ │ │ │ │ ├── dmc │ │ │ │ │ │ └── for.hpp │ │ │ │ │ ├── edg │ │ │ │ │ │ └── for.hpp │ │ │ │ │ ├── for.hpp │ │ │ │ │ └── msvc │ │ │ │ │ │ └── for.hpp │ │ │ │ ├── enum_params.hpp │ │ │ │ ├── enum_shifted_params.hpp │ │ │ │ ├── enum_trailing_params.hpp │ │ │ │ ├── for.hpp │ │ │ │ └── repeat.hpp │ │ │ ├── seq │ │ │ │ ├── detail │ │ │ │ │ ├── is_empty.hpp │ │ │ │ │ └── split.hpp │ │ │ │ ├── elem.hpp │ │ │ │ ├── enum.hpp │ │ │ │ ├── first_n.hpp │ │ │ │ ├── fold_left.hpp │ │ │ │ ├── for_each_i.hpp │ │ │ │ ├── rest_n.hpp │ │ │ │ ├── seq.hpp │ │ │ │ ├── size.hpp │ │ │ │ └── subseq.hpp │ │ │ ├── slot │ │ │ │ ├── detail │ │ │ │ │ ├── counter.hpp │ │ │ │ │ ├── def.hpp │ │ │ │ │ ├── shared.hpp │ │ │ │ │ ├── slot1.hpp │ │ │ │ │ ├── slot2.hpp │ │ │ │ │ ├── slot3.hpp │ │ │ │ │ ├── slot4.hpp │ │ │ │ │ └── slot5.hpp │ │ │ │ └── slot.hpp │ │ │ ├── stringize.hpp │ │ │ ├── tuple │ │ │ │ ├── detail │ │ │ │ │ └── is_single_return.hpp │ │ │ │ ├── eat.hpp │ │ │ │ ├── elem.hpp │ │ │ │ ├── rem.hpp │ │ │ │ ├── size.hpp │ │ │ │ └── to_list.hpp │ │ │ └── variadic │ │ │ │ ├── elem.hpp │ │ │ │ └── size.hpp │ │ ├── static_assert.hpp │ │ ├── throw_exception.hpp │ │ ├── type_traits │ │ │ ├── add_const.hpp │ │ │ ├── add_lvalue_reference.hpp │ │ │ ├── add_pointer.hpp │ │ │ ├── add_reference.hpp │ │ │ ├── add_rvalue_reference.hpp │ │ │ ├── conditional.hpp │ │ │ ├── conversion_traits.hpp │ │ │ ├── declval.hpp │ │ │ ├── detail │ │ │ │ ├── config.hpp │ │ │ │ ├── is_function_ptr_helper.hpp │ │ │ │ ├── is_function_ptr_tester.hpp │ │ │ │ ├── is_mem_fun_pointer_impl.hpp │ │ │ │ ├── is_mem_fun_pointer_tester.hpp │ │ │ │ └── yes_no_type.hpp │ │ │ ├── has_nothrow_assign.hpp │ │ │ ├── has_nothrow_copy.hpp │ │ │ ├── has_trivial_assign.hpp │ │ │ ├── has_trivial_constructor.hpp │ │ │ ├── has_trivial_copy.hpp │ │ │ ├── has_trivial_destructor.hpp │ │ │ ├── has_trivial_move_assign.hpp │ │ │ ├── has_trivial_move_constructor.hpp │ │ │ ├── integral_constant.hpp │ │ │ ├── intrinsics.hpp │ │ │ ├── is_abstract.hpp │ │ │ ├── is_arithmetic.hpp │ │ │ ├── is_array.hpp │ │ │ ├── is_assignable.hpp │ │ │ ├── is_base_and_derived.hpp │ │ │ ├── is_class.hpp │ │ │ ├── is_const.hpp │ │ │ ├── is_constructible.hpp │ │ │ ├── is_convertible.hpp │ │ │ ├── is_copy_constructible.hpp │ │ │ ├── is_default_constructible.hpp │ │ │ ├── is_destructible.hpp │ │ │ ├── is_empty.hpp │ │ │ ├── is_enum.hpp │ │ │ ├── is_floating_point.hpp │ │ │ ├── is_function.hpp │ │ │ ├── is_integral.hpp │ │ │ ├── is_lvalue_reference.hpp │ │ │ ├── is_member_function_pointer.hpp │ │ │ ├── is_member_pointer.hpp │ │ │ ├── is_nothrow_move_assignable.hpp │ │ │ ├── is_nothrow_move_constructible.hpp │ │ │ ├── is_pod.hpp │ │ │ ├── is_pointer.hpp │ │ │ ├── is_polymorphic.hpp │ │ │ ├── is_reference.hpp │ │ │ ├── is_rvalue_reference.hpp │ │ │ ├── is_same.hpp │ │ │ ├── is_scalar.hpp │ │ │ ├── is_stateless.hpp │ │ │ ├── is_union.hpp │ │ │ ├── is_void.hpp │ │ │ ├── is_volatile.hpp │ │ │ ├── remove_const.hpp │ │ │ ├── remove_cv.hpp │ │ │ ├── remove_pointer.hpp │ │ │ └── remove_reference.hpp │ │ ├── utility │ │ │ ├── addressof.hpp │ │ │ └── enable_if.hpp │ │ └── version.hpp │ └── index.html │ ├── libmysofa │ ├── README.md │ ├── include │ │ ├── mysofa.h │ │ └── mysofa_export.h │ └── lib │ │ ├── android │ │ └── ARM64 │ │ │ ├── Debug │ │ │ ├── libmysofa.a │ │ │ └── libzlib.a │ │ │ └── Release │ │ │ ├── libmysofa.a │ │ │ └── libzlib.a │ │ ├── linux64 │ │ └── libmysofa.a │ │ ├── osx │ │ └── universal │ │ │ ├── .gitkeep │ │ │ └── libmysofa.a │ │ └── vs │ │ └── x64 │ │ ├── Debug │ │ ├── mysofa.idb │ │ ├── mysofa.lib │ │ ├── mysofa.pdb │ │ └── zlibstaticd.lib │ │ └── Release │ │ ├── mysofa.lib │ │ ├── mysofa.pdb │ │ └── zlibstatic.lib │ └── nlohmann │ └── json.hpp └── test └── test.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | [Bb]uild 2 | .DS_Store 3 | /.vs 4 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/README.md -------------------------------------------------------------------------------- /docs/images/EU_flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/docs/images/EU_flag.png -------------------------------------------------------------------------------- /include/BRTLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/BRTLibrary.h -------------------------------------------------------------------------------- /include/Base/BRTManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/Base/BRTManager.hpp -------------------------------------------------------------------------------- /include/Base/Listener.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/Base/Listener.hpp -------------------------------------------------------------------------------- /include/Base/ListenerBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/Base/ListenerBase.hpp -------------------------------------------------------------------------------- /include/Base/ModelBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/Base/ModelBase.hpp -------------------------------------------------------------------------------- /include/BilateralFilter/BilateralFilterBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/BilateralFilter/BilateralFilterBase.hpp -------------------------------------------------------------------------------- /include/BilateralFilter/SOSBilateralFilter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/BilateralFilter/SOSBilateralFilter.hpp -------------------------------------------------------------------------------- /include/Common/AddDelayExpansionMethod.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/Common/AddDelayExpansionMethod.hpp -------------------------------------------------------------------------------- /include/Common/AudioMixer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/Common/AudioMixer.hpp -------------------------------------------------------------------------------- /include/Common/BiquadFilter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/Common/BiquadFilter.hpp -------------------------------------------------------------------------------- /include/Common/Buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/Common/Buffer.hpp -------------------------------------------------------------------------------- /include/Common/CascadeGraphicEq9OctaveBands.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/Common/CascadeGraphicEq9OctaveBands.hpp -------------------------------------------------------------------------------- /include/Common/CommonDefinitions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/Common/CommonDefinitions.hpp -------------------------------------------------------------------------------- /include/Common/Conventions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/Common/Conventions.hpp -------------------------------------------------------------------------------- /include/Common/CranicalGeometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/Common/CranicalGeometry.hpp -------------------------------------------------------------------------------- /include/Common/EnvelopeDetector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/Common/EnvelopeDetector.hpp -------------------------------------------------------------------------------- /include/Common/ErrorHandler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/Common/ErrorHandler.hpp -------------------------------------------------------------------------------- /include/Common/FFTCalculator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/Common/FFTCalculator.hpp -------------------------------------------------------------------------------- /include/Common/FiltersChain.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/Common/FiltersChain.hpp -------------------------------------------------------------------------------- /include/Common/GlobalParameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/Common/GlobalParameters.hpp -------------------------------------------------------------------------------- /include/Common/IRWindowing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/Common/IRWindowing.hpp -------------------------------------------------------------------------------- /include/Common/Profiler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/Common/Profiler.hpp -------------------------------------------------------------------------------- /include/Common/Quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/Common/Quaternion.hpp -------------------------------------------------------------------------------- /include/Common/RMSCalculator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/Common/RMSCalculator.hpp -------------------------------------------------------------------------------- /include/Common/SourceListenerRelativePositionCalculation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/Common/SourceListenerRelativePositionCalculation.hpp -------------------------------------------------------------------------------- /include/Common/Transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/Common/Transform.hpp -------------------------------------------------------------------------------- /include/Common/Vector3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/Common/Vector3.hpp -------------------------------------------------------------------------------- /include/Common/Waveguide.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/Common/Waveguide.hpp -------------------------------------------------------------------------------- /include/Common/fftsg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/Common/fftsg.hpp -------------------------------------------------------------------------------- /include/Connectivity/AdvancedEntryPointManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/Connectivity/AdvancedEntryPointManager.hpp -------------------------------------------------------------------------------- /include/Connectivity/BRTConnectivity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/Connectivity/BRTConnectivity.hpp -------------------------------------------------------------------------------- /include/Connectivity/Command.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/Connectivity/Command.hpp -------------------------------------------------------------------------------- /include/Connectivity/CommandEntryPointManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/Connectivity/CommandEntryPointManager.hpp -------------------------------------------------------------------------------- /include/Connectivity/EntryPoint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/Connectivity/EntryPoint.hpp -------------------------------------------------------------------------------- /include/Connectivity/EntryPointManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/Connectivity/EntryPointManager.hpp -------------------------------------------------------------------------------- /include/Connectivity/ExitPoint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/Connectivity/ExitPoint.hpp -------------------------------------------------------------------------------- /include/Connectivity/ExitPointManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/Connectivity/ExitPointManager.hpp -------------------------------------------------------------------------------- /include/Connectivity/ObserverBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/Connectivity/ObserverBase.hpp -------------------------------------------------------------------------------- /include/EnvironmentModels/EnvironmentModelBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/EnvironmentModels/EnvironmentModelBase.hpp -------------------------------------------------------------------------------- /include/EnvironmentModels/FreeFieldEnvironment/FreeFieldEnvironment.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/EnvironmentModels/FreeFieldEnvironment/FreeFieldEnvironment.hpp -------------------------------------------------------------------------------- /include/EnvironmentModels/FreeFieldEnvironment/FreeFieldEnvironmentProcessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/EnvironmentModels/FreeFieldEnvironment/FreeFieldEnvironmentProcessor.hpp -------------------------------------------------------------------------------- /include/EnvironmentModels/FreeFieldEnvironmentModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/EnvironmentModels/FreeFieldEnvironmentModel.hpp -------------------------------------------------------------------------------- /include/EnvironmentModels/ISMEnvironment/ISMEnvironment.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/EnvironmentModels/ISMEnvironment/ISMEnvironment.hpp -------------------------------------------------------------------------------- /include/EnvironmentModels/ISMEnvironment/ISMEnvironmentProcessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/EnvironmentModels/ISMEnvironment/ISMEnvironmentProcessor.hpp -------------------------------------------------------------------------------- /include/EnvironmentModels/ISMEnvironment/ISMParameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/EnvironmentModels/ISMEnvironment/ISMParameters.hpp -------------------------------------------------------------------------------- /include/EnvironmentModels/ISMEnvironment/ISMSourceImage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/EnvironmentModels/ISMEnvironment/ISMSourceImage.hpp -------------------------------------------------------------------------------- /include/EnvironmentModels/ISMEnvironmentModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/EnvironmentModels/ISMEnvironmentModel.hpp -------------------------------------------------------------------------------- /include/EnvironmentModels/SDNEnvironment/SDNDelayLine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/EnvironmentModels/SDNEnvironment/SDNDelayLine.hpp -------------------------------------------------------------------------------- /include/EnvironmentModels/SDNEnvironment/SDNEnvironment.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/EnvironmentModels/SDNEnvironment/SDNEnvironment.hpp -------------------------------------------------------------------------------- /include/EnvironmentModels/SDNEnvironment/SDNEnvironmentProcessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/EnvironmentModels/SDNEnvironment/SDNEnvironmentProcessor.hpp -------------------------------------------------------------------------------- /include/EnvironmentModels/SDNEnvironment/SDNNode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/EnvironmentModels/SDNEnvironment/SDNNode.hpp -------------------------------------------------------------------------------- /include/EnvironmentModels/SDNEnvironment/SDNParameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/EnvironmentModels/SDNEnvironment/SDNParameters.hpp -------------------------------------------------------------------------------- /include/EnvironmentModels/SDNEnvironment/SDNUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/EnvironmentModels/SDNEnvironment/SDNUtils.hpp -------------------------------------------------------------------------------- /include/EnvironmentModels/SDNEnvironment/ScatteringNode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/EnvironmentModels/SDNEnvironment/ScatteringNode.hpp -------------------------------------------------------------------------------- /include/EnvironmentModels/SDNEnvironment/WaveGuide.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/EnvironmentModels/SDNEnvironment/WaveGuide.hpp -------------------------------------------------------------------------------- /include/EnvironmentModels/SDNEnvironmentModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/EnvironmentModels/SDNEnvironmentModel.hpp -------------------------------------------------------------------------------- /include/EnvironmentModels/VirtualSourceList.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/EnvironmentModels/VirtualSourceList.hpp -------------------------------------------------------------------------------- /include/ListenerModels/ListenerAmbisonicReverberantVirtualLoudspeakersModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/ListenerModels/ListenerAmbisonicReverberantVirtualLoudspeakersModel.hpp -------------------------------------------------------------------------------- /include/ListenerModels/ListenerAmbisonicVirtualLoudspeakersModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/ListenerModels/ListenerAmbisonicVirtualLoudspeakersModel.hpp -------------------------------------------------------------------------------- /include/ListenerModels/ListenerDirectBRIRConvolution.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/ListenerModels/ListenerDirectBRIRConvolution.hpp -------------------------------------------------------------------------------- /include/ListenerModels/ListenerDirectHRTFConvolution.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/ListenerModels/ListenerDirectHRTFConvolution.hpp -------------------------------------------------------------------------------- /include/ListenerModels/ListenerModelBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/ListenerModels/ListenerModelBase.hpp -------------------------------------------------------------------------------- /include/ProcessingModules/AmbisonicDomainConvolver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/ProcessingModules/AmbisonicDomainConvolver.hpp -------------------------------------------------------------------------------- /include/ProcessingModules/AmbisonicDomainConvolverProcessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/ProcessingModules/AmbisonicDomainConvolverProcessor.hpp -------------------------------------------------------------------------------- /include/ProcessingModules/AmbisonicEncoder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/ProcessingModules/AmbisonicEncoder.hpp -------------------------------------------------------------------------------- /include/ProcessingModules/BilateralAmbisonicEncoder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/ProcessingModules/BilateralAmbisonicEncoder.hpp -------------------------------------------------------------------------------- /include/ProcessingModules/BilateralAmbisonicEncoderProcessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/ProcessingModules/BilateralAmbisonicEncoderProcessor.hpp -------------------------------------------------------------------------------- /include/ProcessingModules/BinauralFilter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/ProcessingModules/BinauralFilter.hpp -------------------------------------------------------------------------------- /include/ProcessingModules/DirectivityTFConvolver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/ProcessingModules/DirectivityTFConvolver.hpp -------------------------------------------------------------------------------- /include/ProcessingModules/DistanceAttenuator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/ProcessingModules/DistanceAttenuator.hpp -------------------------------------------------------------------------------- /include/ProcessingModules/DistanceAttenuatorProcessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/ProcessingModules/DistanceAttenuatorProcessor.hpp -------------------------------------------------------------------------------- /include/ProcessingModules/HRTFConvolver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/ProcessingModules/HRTFConvolver.hpp -------------------------------------------------------------------------------- /include/ProcessingModules/HRTFConvolverProcessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/ProcessingModules/HRTFConvolverProcessor.hpp -------------------------------------------------------------------------------- /include/ProcessingModules/NearFieldEffectProcessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/ProcessingModules/NearFieldEffectProcessor.hpp -------------------------------------------------------------------------------- /include/ProcessingModules/UniformPartitionedConvolution.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/ProcessingModules/UniformPartitionedConvolution.hpp -------------------------------------------------------------------------------- /include/Readers/LibMySofaLoader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/Readers/LibMySofaLoader.hpp -------------------------------------------------------------------------------- /include/Readers/OBJReader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/Readers/OBJReader.hpp -------------------------------------------------------------------------------- /include/Readers/SofaReader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/Readers/SofaReader.hpp -------------------------------------------------------------------------------- /include/ServiceModules/AmbisonicBIR.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/ServiceModules/AmbisonicBIR.hpp -------------------------------------------------------------------------------- /include/ServiceModules/DirectivityTF.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/ServiceModules/DirectivityTF.hpp -------------------------------------------------------------------------------- /include/ServiceModules/DirectivityTFAuxiliarMethods.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/ServiceModules/DirectivityTFAuxiliarMethods.hpp -------------------------------------------------------------------------------- /include/ServiceModules/DirectivityTFDefinitions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/ServiceModules/DirectivityTFDefinitions.hpp -------------------------------------------------------------------------------- /include/ServiceModules/Extrapolation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/ServiceModules/Extrapolation.hpp -------------------------------------------------------------------------------- /include/ServiceModules/GridsManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/ServiceModules/GridsManager.hpp -------------------------------------------------------------------------------- /include/ServiceModules/HRBRIR.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/ServiceModules/HRBRIR.hpp -------------------------------------------------------------------------------- /include/ServiceModules/HRTF.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/ServiceModules/HRTF.hpp -------------------------------------------------------------------------------- /include/ServiceModules/HRTFAuxiliarMethods.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/ServiceModules/HRTFAuxiliarMethods.hpp -------------------------------------------------------------------------------- /include/ServiceModules/HRTFDefinitions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/ServiceModules/HRTFDefinitions.hpp -------------------------------------------------------------------------------- /include/ServiceModules/HRTFTester.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/ServiceModules/HRTFTester.hpp -------------------------------------------------------------------------------- /include/ServiceModules/InterpolationAuxiliarMethods.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/ServiceModules/InterpolationAuxiliarMethods.hpp -------------------------------------------------------------------------------- /include/ServiceModules/OfflineInterpolation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/ServiceModules/OfflineInterpolation.hpp -------------------------------------------------------------------------------- /include/ServiceModules/OfflineInterpolationAuxiliarMethods.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/ServiceModules/OfflineInterpolationAuxiliarMethods.hpp -------------------------------------------------------------------------------- /include/ServiceModules/OnlineInterpolation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/ServiceModules/OnlineInterpolation.hpp -------------------------------------------------------------------------------- /include/ServiceModules/Room.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/ServiceModules/Room.hpp -------------------------------------------------------------------------------- /include/ServiceModules/SOSFilters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/ServiceModules/SOSFilters.hpp -------------------------------------------------------------------------------- /include/ServiceModules/ServicesBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/ServiceModules/ServicesBase.hpp -------------------------------------------------------------------------------- /include/ServiceModules/VirtualSpeakers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/ServiceModules/VirtualSpeakers.hpp -------------------------------------------------------------------------------- /include/ServiceModules/Wall.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/ServiceModules/Wall.hpp -------------------------------------------------------------------------------- /include/SourceModels/SourceDirectivityModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/SourceModels/SourceDirectivityModel.hpp -------------------------------------------------------------------------------- /include/SourceModels/SourceModelBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/SourceModels/SourceModelBase.hpp -------------------------------------------------------------------------------- /include/SourceModels/SourceOmnidirectionalModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/SourceModels/SourceOmnidirectionalModel.hpp -------------------------------------------------------------------------------- /include/SourceModels/VirtualSourceModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/SourceModels/VirtualSourceModel.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/LICENSE_1_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/LICENSE_1_0.txt -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/assert.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/call_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/call_traits.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/circular_buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/circular_buffer.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/circular_buffer/base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/circular_buffer/base.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/circular_buffer/debug.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/circular_buffer/debug.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/circular_buffer/details.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/circular_buffer/details.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/circular_buffer/space_optimized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/circular_buffer/space_optimized.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/circular_buffer_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/circular_buffer_fwd.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/concept/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/concept/assert.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/concept/detail/borland.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/concept/detail/borland.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/concept/detail/concept_def.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/concept/detail/concept_def.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/concept/detail/concept_undef.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/concept/detail/concept_undef.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/concept/detail/general.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/concept/detail/general.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/concept/detail/has_constraints.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/concept/detail/has_constraints.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/concept/detail/msvc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/concept/detail/msvc.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/concept/usage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/concept/usage.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/concept_check.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/concept_check.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/abi/borland_prefix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/abi/borland_prefix.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/abi/borland_suffix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/abi/borland_suffix.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/abi/msvc_prefix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/abi/msvc_prefix.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/abi/msvc_suffix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/abi/msvc_suffix.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/abi_prefix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/abi_prefix.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/abi_suffix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/abi_suffix.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/auto_link.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/auto_link.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/compiler/borland.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/compiler/borland.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/compiler/clang.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/compiler/clang.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/compiler/codegear.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/compiler/codegear.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/compiler/comeau.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/compiler/comeau.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/compiler/common_edg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/compiler/common_edg.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/compiler/compaq_cxx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/compiler/compaq_cxx.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/compiler/cray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/compiler/cray.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/compiler/diab.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/compiler/diab.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/compiler/digitalmars.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/compiler/digitalmars.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/compiler/gcc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/compiler/gcc.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/compiler/gcc_xml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/compiler/gcc_xml.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/compiler/greenhills.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/compiler/greenhills.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/compiler/hp_acc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/compiler/hp_acc.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/compiler/intel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/compiler/intel.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/compiler/kai.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/compiler/kai.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/compiler/metrowerks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/compiler/metrowerks.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/compiler/mpw.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/compiler/mpw.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/compiler/nvcc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/compiler/nvcc.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/compiler/pathscale.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/compiler/pathscale.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/compiler/pgi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/compiler/pgi.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/compiler/sgi_mipspro.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/compiler/sgi_mipspro.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/compiler/sunpro_cc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/compiler/sunpro_cc.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/compiler/vacpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/compiler/vacpp.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/compiler/visualc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/compiler/visualc.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/compiler/xlcpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/compiler/xlcpp.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/compiler/xlcpp_zos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/compiler/xlcpp_zos.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/detail/posix_features.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/detail/posix_features.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/detail/suffix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/detail/suffix.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/no_tr1/cmath.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/no_tr1/cmath.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/no_tr1/complex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/no_tr1/complex.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/no_tr1/functional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/no_tr1/functional.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/no_tr1/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/no_tr1/memory.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/no_tr1/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/no_tr1/utility.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/platform/aix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/platform/aix.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/platform/amigaos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/platform/amigaos.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/platform/beos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/platform/beos.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/platform/bsd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/platform/bsd.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/platform/cloudabi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/platform/cloudabi.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/platform/cray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/platform/cray.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/platform/cygwin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/platform/cygwin.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/platform/haiku.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/platform/haiku.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/platform/hpux.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/platform/hpux.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/platform/irix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/platform/irix.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/platform/linux.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/platform/linux.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/platform/macos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/platform/macos.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/platform/qnxnto.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/platform/qnxnto.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/platform/solaris.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/platform/solaris.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/platform/symbian.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/platform/symbian.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/platform/vms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/platform/vms.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/platform/vxworks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/platform/vxworks.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/platform/win32.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/platform/win32.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/platform/zos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/platform/zos.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/requires_threads.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/requires_threads.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/stdlib/dinkumware.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/stdlib/dinkumware.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/stdlib/libcomo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/stdlib/libcomo.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/stdlib/libcpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/stdlib/libcpp.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/stdlib/libstdcpp3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/stdlib/libstdcpp3.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/stdlib/modena.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/stdlib/modena.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/stdlib/msl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/stdlib/msl.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/stdlib/roguewave.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/stdlib/roguewave.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/stdlib/sgi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/stdlib/sgi.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/stdlib/stlport.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/stdlib/stlport.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/stdlib/vacpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/stdlib/vacpp.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/stdlib/xlcpp_zos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/stdlib/xlcpp_zos.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/user.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/user.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/warning_disable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/warning_disable.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/config/workaround.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/config/workaround.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/container/allocator_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/container/allocator_traits.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/container/container_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/container/container_fwd.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/container/detail/config_begin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/container/detail/config_begin.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/container/detail/config_end.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/container/detail/config_end.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/container/detail/mpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/container/detail/mpl.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/container/detail/placement_new.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/container/detail/placement_new.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/container/detail/std_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/container/detail/std_fwd.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/container/detail/type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/container/detail/type_traits.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/container/detail/workaround.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/container/detail/workaround.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/core/addressof.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/core/addressof.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/core/enable_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/core/enable_if.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/core/no_exceptions_support.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/core/no_exceptions_support.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/core/noncopyable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/core/noncopyable.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/core/pointer_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/core/pointer_traits.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/current_function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/current_function.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/detail/call_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/detail/call_traits.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/detail/indirect_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/detail/indirect_traits.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/detail/iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/detail/iterator.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/detail/no_exceptions_support.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/detail/no_exceptions_support.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/detail/workaround.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/detail/workaround.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/exception/exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/exception/exception.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/intrusive/detail/config_begin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/intrusive/detail/config_begin.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/intrusive/detail/config_end.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/intrusive/detail/config_end.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/intrusive/detail/mpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/intrusive/detail/mpl.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/intrusive/detail/workaround.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/intrusive/detail/workaround.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/intrusive/pointer_rebind.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/intrusive/pointer_rebind.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/intrusive/pointer_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/intrusive/pointer_traits.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/iterator/detail/config_def.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/iterator/detail/config_def.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/iterator/detail/config_undef.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/iterator/detail/config_undef.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/iterator/detail/enable_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/iterator/detail/enable_if.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/iterator/interoperable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/iterator/interoperable.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/iterator/iterator_adaptor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/iterator/iterator_adaptor.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/iterator/iterator_categories.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/iterator/iterator_categories.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/iterator/iterator_facade.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/iterator/iterator_facade.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/iterator/iterator_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/iterator/iterator_traits.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/iterator/reverse_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/iterator/reverse_iterator.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/limits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/limits.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/move/adl_move_swap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/move/adl_move_swap.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/move/algo/move.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/move/algo/move.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/move/algorithm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/move/algorithm.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/move/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/move/core.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/move/detail/config_begin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/move/detail/config_begin.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/move/detail/config_end.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/move/detail/config_end.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/move/detail/fwd_macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/move/detail/fwd_macros.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/move/detail/iterator_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/move/detail/iterator_traits.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/move/detail/meta_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/move/detail/meta_utils.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/move/detail/meta_utils_core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/move/detail/meta_utils_core.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/move/detail/pointer_element.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/move/detail/pointer_element.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/move/detail/std_ns_begin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/move/detail/std_ns_begin.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/move/detail/std_ns_end.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/move/detail/std_ns_end.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/move/detail/to_raw_pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/move/detail/to_raw_pointer.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/move/detail/type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/move/detail/type_traits.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/move/detail/workaround.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/move/detail/workaround.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/move/iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/move/iterator.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/move/move.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/move/move.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/move/traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/move/traits.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/move/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/move/utility.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/move/utility_core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/move/utility_core.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/always.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/always.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/and.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/and.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/apply.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/apply.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/apply_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/apply_fwd.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/apply_wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/apply_wrap.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/arg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/arg.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/arg_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/arg_fwd.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/assert.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/adl_barrier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/adl_barrier.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/arg_typedef.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/arg_typedef.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/arity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/arity.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/arity_spec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/arity_spec.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/common_name_wknd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/common_name_wknd.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/config/adl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/config/adl.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/config/arrays.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/config/arrays.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/config/bcc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/config/bcc.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/config/bind.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/config/bind.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/config/compiler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/config/compiler.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/config/ctps.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/config/ctps.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/config/dtp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/config/dtp.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/config/eti.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/config/eti.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/config/gcc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/config/gcc.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/config/gpu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/config/gpu.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/config/has_apply.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/config/has_apply.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/config/has_xxx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/config/has_xxx.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/config/integral.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/config/integral.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/config/intel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/config/intel.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/config/lambda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/config/lambda.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/config/msvc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/config/msvc.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/config/msvc_typename.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/config/msvc_typename.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/config/nttp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/config/nttp.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/config/pp_counter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/config/pp_counter.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/config/preprocessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/config/preprocessor.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/config/static_constant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/config/static_constant.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/config/ttp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/config/ttp.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/config/use_preprocessed.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/config/use_preprocessed.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/config/workaround.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/config/workaround.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/count_args.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/count_args.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/full_lambda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/full_lambda.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/has_apply.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/has_apply.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/has_rebind.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/has_rebind.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/has_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/has_type.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/include_preprocessed.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/include_preprocessed.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/integral_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/integral_wrapper.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/lambda_arity_param.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/lambda_arity_param.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/lambda_no_ctps.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/lambda_no_ctps.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/lambda_support.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/lambda_support.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/logical_op.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/logical_op.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/msvc_dtw.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/msvc_dtw.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/msvc_is_class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/msvc_is_class.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/msvc_never_true.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/msvc_never_true.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/na.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/na.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/na_assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/na_assert.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/na_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/na_fwd.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/na_spec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/na_spec.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/nested_type_wknd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/nested_type_wknd.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/nttp_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/nttp_decl.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/bcc/and.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/bcc/and.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/bcc/apply.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/bcc/apply.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/bcc/arg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/bcc/arg.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/bcc/bind.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/bcc/bind.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/bcc/bitand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/bcc/bitand.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/bcc/bitor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/bcc/bitor.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/bcc/bitxor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/bcc/bitxor.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/bcc/deque.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/bcc/deque.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/bcc/divides.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/bcc/divides.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/bcc/greater.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/bcc/greater.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/bcc/inherit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/bcc/inherit.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/bcc/less.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/bcc/less.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/bcc/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/bcc/list.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/bcc/list_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/bcc/list_c.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/bcc/map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/bcc/map.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/bcc/minus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/bcc/minus.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/bcc/modulus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/bcc/modulus.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/bcc/or.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/bcc/or.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/bcc/plus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/bcc/plus.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/bcc/quote.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/bcc/quote.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/bcc/set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/bcc/set.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/bcc/set_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/bcc/set_c.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/bcc/times.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/bcc/times.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/bcc/vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/bcc/vector.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/bcc551/and.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/bcc551/and.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/bcc551/arg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/bcc551/arg.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/bcc551/bind.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/bcc551/bind.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/bcc551/less.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/bcc551/less.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/bcc551/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/bcc551/list.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/bcc551/map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/bcc551/map.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/bcc551/or.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/bcc551/or.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/bcc551/plus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/bcc551/plus.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/bcc551/set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/bcc551/set.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/dmc/and.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/dmc/and.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/dmc/apply.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/dmc/apply.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/dmc/arg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/dmc/arg.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/dmc/bind.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/dmc/bind.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/dmc/bitand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/dmc/bitand.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/dmc/bitor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/dmc/bitor.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/dmc/bitxor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/dmc/bitxor.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/dmc/deque.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/dmc/deque.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/dmc/divides.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/dmc/divides.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/dmc/greater.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/dmc/greater.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/dmc/inherit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/dmc/inherit.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/dmc/less.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/dmc/less.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/dmc/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/dmc/list.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/dmc/list_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/dmc/list_c.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/dmc/map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/dmc/map.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/dmc/minus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/dmc/minus.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/dmc/modulus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/dmc/modulus.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/dmc/or.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/dmc/or.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/dmc/plus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/dmc/plus.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/dmc/quote.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/dmc/quote.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/dmc/set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/dmc/set.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/dmc/set_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/dmc/set_c.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/dmc/times.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/dmc/times.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/dmc/vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/dmc/vector.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/gcc/and.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/gcc/and.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/gcc/apply.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/gcc/apply.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/gcc/arg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/gcc/arg.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/gcc/bind.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/gcc/bind.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/gcc/bitand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/gcc/bitand.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/gcc/bitor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/gcc/bitor.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/gcc/bitxor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/gcc/bitxor.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/gcc/deque.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/gcc/deque.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/gcc/divides.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/gcc/divides.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/gcc/greater.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/gcc/greater.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/gcc/inherit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/gcc/inherit.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/gcc/less.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/gcc/less.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/gcc/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/gcc/list.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/gcc/list_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/gcc/list_c.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/gcc/map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/gcc/map.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/gcc/minus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/gcc/minus.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/gcc/modulus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/gcc/modulus.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/gcc/or.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/gcc/or.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/gcc/plus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/gcc/plus.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/gcc/quote.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/gcc/quote.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/gcc/set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/gcc/set.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/gcc/set_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/gcc/set_c.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/gcc/times.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/gcc/times.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/gcc/vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/gcc/vector.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/msvc60/and.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/msvc60/and.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/msvc60/arg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/msvc60/arg.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/msvc60/bind.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/msvc60/bind.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/msvc60/less.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/msvc60/less.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/msvc60/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/msvc60/list.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/msvc60/map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/msvc60/map.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/msvc60/or.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/msvc60/or.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/msvc60/plus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/msvc60/plus.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/msvc60/set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/msvc60/set.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/msvc70/and.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/msvc70/and.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/msvc70/arg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/msvc70/arg.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/msvc70/bind.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/msvc70/bind.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/msvc70/less.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/msvc70/less.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/msvc70/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/msvc70/list.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/msvc70/map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/msvc70/map.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/msvc70/or.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/msvc70/or.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/msvc70/plus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/msvc70/plus.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/msvc70/set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/msvc70/set.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/mwcw/and.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/mwcw/and.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/mwcw/apply.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/mwcw/apply.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/mwcw/arg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/mwcw/arg.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/mwcw/bind.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/mwcw/bind.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/mwcw/bitand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/mwcw/bitand.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/mwcw/bitor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/mwcw/bitor.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/mwcw/bitxor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/mwcw/bitxor.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/mwcw/deque.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/mwcw/deque.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/mwcw/less.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/mwcw/less.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/mwcw/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/mwcw/list.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/mwcw/list_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/mwcw/list_c.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/mwcw/map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/mwcw/map.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/mwcw/minus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/mwcw/minus.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/mwcw/or.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/mwcw/or.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/mwcw/plus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/mwcw/plus.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/mwcw/quote.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/mwcw/quote.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/mwcw/set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/mwcw/set.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/mwcw/set_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/mwcw/set_c.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/mwcw/times.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/mwcw/times.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/mwcw/vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/mwcw/vector.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/no_ctps/and.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/no_ctps/and.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/no_ctps/arg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/no_ctps/arg.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/no_ctps/map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/no_ctps/map.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/no_ctps/or.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/no_ctps/or.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/no_ctps/set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/no_ctps/set.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/no_ttp/and.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/no_ttp/and.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/no_ttp/arg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/no_ttp/arg.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/no_ttp/bind.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/no_ttp/bind.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/no_ttp/less.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/no_ttp/less.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/no_ttp/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/no_ttp/list.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/no_ttp/map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/no_ttp/map.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/no_ttp/or.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/no_ttp/or.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/no_ttp/plus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/no_ttp/plus.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/no_ttp/set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/no_ttp/set.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/plain/and.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/plain/and.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/plain/apply.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/plain/apply.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/plain/arg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/plain/arg.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/plain/bind.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/plain/bind.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/plain/bitor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/plain/bitor.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/plain/deque.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/plain/deque.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/plain/less.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/plain/less.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/plain/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/plain/list.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/plain/map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/plain/map.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/plain/minus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/plain/minus.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/plain/or.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/plain/or.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/plain/plus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/plain/plus.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/plain/quote.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/plain/quote.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/plain/set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/plain/set.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/plain/set_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/plain/set_c.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/plain/times.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessed/plain/times.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessor/add.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessor/add.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessor/enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessor/enum.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessor/params.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessor/params.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessor/range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessor/range.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessor/repeat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessor/repeat.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessor/sub.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessor/sub.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessor/tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/preprocessor/tuple.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/static_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/static_cast.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/template_arity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/template_arity.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/template_arity_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/template_arity_fwd.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/type_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/type_wrapper.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/value_wknd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/value_wknd.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/yes_no.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/aux_/yes_no.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/bind.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/bind.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/bind_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/bind_fwd.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/bool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/bool.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/bool_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/bool_fwd.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/eval_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/eval_if.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/has_xxx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/has_xxx.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/identity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/identity.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/if.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/int.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/int.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/int_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/int_fwd.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/integral_c_tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/integral_c_tag.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/is_placeholder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/is_placeholder.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/lambda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/lambda.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/lambda_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/lambda_fwd.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/limits/arity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/limits/arity.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/next.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/next.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/next_prior.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/next_prior.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/not.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/not.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/or.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/or.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/placeholders.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/placeholders.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/protect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/protect.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/quote.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/quote.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/void.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/void.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/mpl/void_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/mpl/void_fwd.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/noncopyable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/noncopyable.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/arithmetic/add.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/arithmetic/add.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/arithmetic/dec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/arithmetic/dec.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/arithmetic/inc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/arithmetic/inc.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/arithmetic/sub.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/arithmetic/sub.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/array/data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/array/data.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/array/elem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/array/elem.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/array/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/array/size.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/cat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/cat.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/comma_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/comma_if.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/config/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/config/config.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/control/expr_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/control/expr_if.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/control/expr_iif.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/control/expr_iif.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/control/if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/control/if.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/control/iif.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/control/iif.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/control/while.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/control/while.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/debug/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/debug/error.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/dec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/dec.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/detail/auto_rec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/detail/auto_rec.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/detail/check.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/detail/check.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/detail/is_binary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/detail/is_binary.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/detail/split.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/detail/split.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/empty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/empty.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/expr_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/expr_if.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/facilities/empty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/facilities/empty.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/facilities/expand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/facilities/expand.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/facilities/is_1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/facilities/is_1.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/identity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/identity.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/inc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/inc.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/iterate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/iterate.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/iteration/iterate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/iteration/iterate.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/iteration/local.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/iteration/local.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/iteration/self.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/iteration/self.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/list/adt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/list/adt.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/list/fold_left.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/list/fold_left.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/list/fold_right.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/list/fold_right.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/list/for_each_i.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/list/for_each_i.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/list/reverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/list/reverse.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/logical/and.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/logical/and.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/logical/bitand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/logical/bitand.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/logical/bool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/logical/bool.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/logical/compl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/logical/compl.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/punctuation/comma.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/punctuation/comma.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/repeat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/repeat.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/repetition/for.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/repetition/for.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/repetition/repeat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/repetition/repeat.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/seq/detail/split.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/seq/detail/split.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/seq/elem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/seq/elem.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/seq/enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/seq/enum.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/seq/first_n.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/seq/first_n.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/seq/fold_left.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/seq/fold_left.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/seq/for_each_i.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/seq/for_each_i.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/seq/rest_n.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/seq/rest_n.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/seq/seq.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/seq/seq.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/seq/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/seq/size.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/seq/subseq.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/seq/subseq.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/slot/detail/def.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/slot/detail/def.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/slot/detail/shared.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/slot/detail/shared.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/slot/detail/slot1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/slot/detail/slot1.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/slot/detail/slot2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/slot/detail/slot2.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/slot/detail/slot3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/slot/detail/slot3.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/slot/detail/slot4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/slot/detail/slot4.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/slot/detail/slot5.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/slot/detail/slot5.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/slot/slot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/slot/slot.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/stringize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/stringize.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/tuple/eat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/tuple/eat.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/tuple/elem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/tuple/elem.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/tuple/rem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/tuple/rem.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/tuple/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/tuple/size.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/tuple/to_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/tuple/to_list.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/variadic/elem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/variadic/elem.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/preprocessor/variadic/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/preprocessor/variadic/size.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/static_assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/static_assert.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/throw_exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/throw_exception.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/type_traits/add_const.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/type_traits/add_const.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/type_traits/add_pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/type_traits/add_pointer.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/type_traits/add_reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/type_traits/add_reference.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/type_traits/conditional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/type_traits/conditional.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/type_traits/conversion_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/type_traits/conversion_traits.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/type_traits/declval.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/type_traits/declval.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/type_traits/detail/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/type_traits/detail/config.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/type_traits/detail/yes_no_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/type_traits/detail/yes_no_type.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/type_traits/has_nothrow_assign.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/type_traits/has_nothrow_assign.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/type_traits/has_nothrow_copy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/type_traits/has_nothrow_copy.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/type_traits/has_trivial_assign.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/type_traits/has_trivial_assign.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/type_traits/has_trivial_copy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/type_traits/has_trivial_copy.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/type_traits/integral_constant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/type_traits/integral_constant.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/type_traits/intrinsics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/type_traits/intrinsics.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/type_traits/is_abstract.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/type_traits/is_abstract.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/type_traits/is_arithmetic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/type_traits/is_arithmetic.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/type_traits/is_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/type_traits/is_array.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/type_traits/is_assignable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/type_traits/is_assignable.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/type_traits/is_base_and_derived.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/type_traits/is_base_and_derived.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/type_traits/is_class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/type_traits/is_class.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/type_traits/is_const.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/type_traits/is_const.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/type_traits/is_constructible.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/type_traits/is_constructible.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/type_traits/is_convertible.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/type_traits/is_convertible.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/type_traits/is_destructible.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/type_traits/is_destructible.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/type_traits/is_empty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/type_traits/is_empty.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/type_traits/is_enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/type_traits/is_enum.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/type_traits/is_floating_point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/type_traits/is_floating_point.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/type_traits/is_function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/type_traits/is_function.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/type_traits/is_integral.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/type_traits/is_integral.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/type_traits/is_lvalue_reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/type_traits/is_lvalue_reference.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/type_traits/is_member_pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/type_traits/is_member_pointer.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/type_traits/is_pod.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/type_traits/is_pod.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/type_traits/is_pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/type_traits/is_pointer.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/type_traits/is_polymorphic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/type_traits/is_polymorphic.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/type_traits/is_reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/type_traits/is_reference.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/type_traits/is_rvalue_reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/type_traits/is_rvalue_reference.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/type_traits/is_same.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/type_traits/is_same.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/type_traits/is_scalar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/type_traits/is_scalar.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/type_traits/is_stateless.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/type_traits/is_stateless.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/type_traits/is_union.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/type_traits/is_union.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/type_traits/is_void.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/type_traits/is_void.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/type_traits/is_volatile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/type_traits/is_volatile.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/type_traits/remove_const.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/type_traits/remove_const.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/type_traits/remove_cv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/type_traits/remove_cv.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/type_traits/remove_pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/type_traits/remove_pointer.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/type_traits/remove_reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/type_traits/remove_reference.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/utility/addressof.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/utility/addressof.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/utility/enable_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/utility/enable_if.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/boost/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/boost/version.hpp -------------------------------------------------------------------------------- /include/third_party_libraries/boost_circular_buffer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/boost_circular_buffer/index.html -------------------------------------------------------------------------------- /include/third_party_libraries/libmysofa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/libmysofa/README.md -------------------------------------------------------------------------------- /include/third_party_libraries/libmysofa/include/mysofa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/libmysofa/include/mysofa.h -------------------------------------------------------------------------------- /include/third_party_libraries/libmysofa/include/mysofa_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/libmysofa/include/mysofa_export.h -------------------------------------------------------------------------------- /include/third_party_libraries/libmysofa/lib/android/ARM64/Debug/libmysofa.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/libmysofa/lib/android/ARM64/Debug/libmysofa.a -------------------------------------------------------------------------------- /include/third_party_libraries/libmysofa/lib/android/ARM64/Debug/libzlib.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/libmysofa/lib/android/ARM64/Debug/libzlib.a -------------------------------------------------------------------------------- /include/third_party_libraries/libmysofa/lib/android/ARM64/Release/libmysofa.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/libmysofa/lib/android/ARM64/Release/libmysofa.a -------------------------------------------------------------------------------- /include/third_party_libraries/libmysofa/lib/android/ARM64/Release/libzlib.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/libmysofa/lib/android/ARM64/Release/libzlib.a -------------------------------------------------------------------------------- /include/third_party_libraries/libmysofa/lib/linux64/libmysofa.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/libmysofa/lib/linux64/libmysofa.a -------------------------------------------------------------------------------- /include/third_party_libraries/libmysofa/lib/osx/universal/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /include/third_party_libraries/libmysofa/lib/osx/universal/libmysofa.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/libmysofa/lib/osx/universal/libmysofa.a -------------------------------------------------------------------------------- /include/third_party_libraries/libmysofa/lib/vs/x64/Debug/mysofa.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/libmysofa/lib/vs/x64/Debug/mysofa.idb -------------------------------------------------------------------------------- /include/third_party_libraries/libmysofa/lib/vs/x64/Debug/mysofa.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/libmysofa/lib/vs/x64/Debug/mysofa.lib -------------------------------------------------------------------------------- /include/third_party_libraries/libmysofa/lib/vs/x64/Debug/mysofa.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/libmysofa/lib/vs/x64/Debug/mysofa.pdb -------------------------------------------------------------------------------- /include/third_party_libraries/libmysofa/lib/vs/x64/Debug/zlibstaticd.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/libmysofa/lib/vs/x64/Debug/zlibstaticd.lib -------------------------------------------------------------------------------- /include/third_party_libraries/libmysofa/lib/vs/x64/Release/mysofa.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/libmysofa/lib/vs/x64/Release/mysofa.lib -------------------------------------------------------------------------------- /include/third_party_libraries/libmysofa/lib/vs/x64/Release/mysofa.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/libmysofa/lib/vs/x64/Release/mysofa.pdb -------------------------------------------------------------------------------- /include/third_party_libraries/libmysofa/lib/vs/x64/Release/zlibstatic.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/libmysofa/lib/vs/x64/Release/zlibstatic.lib -------------------------------------------------------------------------------- /include/third_party_libraries/nlohmann/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/include/third_party_libraries/nlohmann/json.hpp -------------------------------------------------------------------------------- /test/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrupoDiana/BRTLibrary/HEAD/test/test.cpp --------------------------------------------------------------------------------