├── .gitignore ├── Binaries └── Win64 │ ├── AU_predictors │ ├── AU_all_best.txt │ ├── AU_all_static.txt │ ├── In-the-wild_aligned_PDM_68.txt │ ├── main_dynamic_svms.txt │ ├── main_static_svms.txt │ ├── svm_combined │ │ ├── AU_10_dynamic.dat │ │ ├── AU_10_static.dat │ │ ├── AU_12_dynamic.dat │ │ ├── AU_12_static.dat │ │ ├── AU_14_dynamic.dat │ │ ├── AU_14_static.dat │ │ ├── AU_15_dynamic.dat │ │ ├── AU_15_static.dat │ │ ├── AU_17_dynamic.dat │ │ ├── AU_17_static.dat │ │ ├── AU_1_dynamic.dat │ │ ├── AU_1_static.dat │ │ ├── AU_20_dynamic.dat │ │ ├── AU_20_static.dat │ │ ├── AU_23_dynamic.dat │ │ ├── AU_23_static.dat │ │ ├── AU_25_dynamic.dat │ │ ├── AU_25_static.dat │ │ ├── AU_26_dynamic.dat │ │ ├── AU_26_static.dat │ │ ├── AU_28_dynamic.dat │ │ ├── AU_28_static.dat │ │ ├── AU_2_dynamic.dat │ │ ├── AU_2_static.dat │ │ ├── AU_45_dynamic.dat │ │ ├── AU_45_static.dat │ │ ├── AU_4_dynamic.dat │ │ ├── AU_4_static.dat │ │ ├── AU_5_dynamic.dat │ │ ├── AU_5_static.dat │ │ ├── AU_6_dynamic.dat │ │ ├── AU_6_static.dat │ │ ├── AU_7_dynamic.dat │ │ ├── AU_7_static.dat │ │ ├── AU_9_dynamic.dat │ │ └── AU_9_static.dat │ ├── svr_combined │ │ ├── AU_10_static_intensity_comb.dat │ │ ├── AU_12_static_intensity_comb.dat │ │ ├── AU_14_static_intensity.dat │ │ ├── AU_15_dynamic_intensity_comb.dat │ │ ├── AU_15_static_intensity_comb.dat │ │ ├── AU_17_dynamic_intensity_comb.dat │ │ ├── AU_17_static_intensity_comb.dat │ │ ├── AU_1_dynamic_intensity_comb.dat │ │ ├── AU_1_static_intensity.dat │ │ ├── AU_20_dynamic_intensity.dat │ │ ├── AU_20_static_intensity.dat │ │ ├── AU_23_dynamic_intensity_comb.dat │ │ ├── AU_23_static_intensity_comb.dat │ │ ├── AU_25_dynamic_intensity_comb.dat │ │ ├── AU_25_static_intensity.dat │ │ ├── AU_26_dynamic_intensity_comb.dat │ │ ├── AU_26_static_intensity_comb.dat │ │ ├── AU_2_dynamic_intensity_comb.dat │ │ ├── AU_2_static_intensity_comb.dat │ │ ├── AU_45_dynamic_intensity_comb.dat │ │ ├── AU_45_static_intensity_comb.dat │ │ ├── AU_4_static_intensity_comb.dat │ │ ├── AU_5_dynamic_intensity.dat │ │ ├── AU_5_static_intensity.dat │ │ ├── AU_6_static_intensity_comb.dat │ │ ├── AU_7_static_intensity_comb.dat │ │ ├── AU_9_dynamic_intensity.dat │ │ └── AU_9_static_intensity.dat │ └── tris_68_full.txt │ ├── classifiers │ ├── haarcascade_frontalface_alt.xml │ ├── haarcascade_frontalface_alt2.xml │ ├── haarcascade_frontalface_alt_tree.xml │ ├── haarcascade_frontalface_default.xml │ └── haarcascade_profileface.xml │ └── model │ ├── clm_general.txt │ ├── clm_wild.txt │ ├── clnf_general.txt │ ├── clnf_wild.txt │ ├── detection_validation │ ├── validator_cnn.txt │ └── validator_general_68.txt │ ├── haarAlign.txt │ ├── main_clm_general.txt │ ├── main_clm_wild.txt │ ├── main_clnf_general.txt │ ├── main_clnf_wild.txt │ ├── model_eye │ ├── clnf_left_synth.txt │ ├── clnf_right_synth.txt │ ├── main_clnf_synth_left.txt │ ├── main_clnf_synth_right.txt │ ├── patch_experts │ │ ├── ccnf_patches_1.00_synth_lid_.txt │ │ ├── ccnf_patches_1.50_synth_lid_.txt │ │ ├── left_ccnf_patches_1.00_synth_lid_.txt │ │ └── left_ccnf_patches_1.50_synth_lid_.txt │ └── pdms │ │ ├── pdm_28_eye_3D_closed.txt │ │ └── pdm_28_l_eye_3D_closed.txt │ ├── model_inner │ ├── clnf_inner.txt │ ├── main_clnf_inner.txt │ ├── patch_experts │ │ └── ccnf_patches_1.00_inner.txt │ └── pdms │ │ └── pdm_51_inner.txt │ ├── patch_experts │ ├── ccnf_patches_0.25_general.txt │ ├── ccnf_patches_0.25_wild.txt │ ├── ccnf_patches_0.35_general.txt │ ├── ccnf_patches_0.35_wild.txt │ ├── ccnf_patches_0.5_general.txt │ ├── ccnf_patches_0.5_wild.txt │ ├── ccnf_patches_1_wild.txt │ ├── svr_patches_0.25_general.txt │ ├── svr_patches_0.25_wild.txt │ ├── svr_patches_0.35_general.txt │ ├── svr_patches_0.35_wild.txt │ ├── svr_patches_0.5_general.txt │ └── svr_patches_0.5_wild.txt │ ├── pdms │ ├── In-the-wild_aligned_PDM_68.txt │ └── Multi-PIE_aligned_PDM_68.txt │ ├── tris_68.txt │ └── tris_68_full.txt ├── OpenFaceUE.uplugin ├── README.md ├── Resources └── Icon128.png ├── Source └── OpenFace.Build.cs ├── ThirdParty ├── FaceAnalyser │ ├── AU_predictors │ │ ├── AU_all_best.txt │ │ ├── AU_all_static.txt │ │ ├── In-the-wild_aligned_PDM_68.txt │ │ ├── main_dynamic_svms.txt │ │ ├── main_static_svms.txt │ │ ├── svm_combined │ │ │ ├── AU_10_dynamic.dat │ │ │ ├── AU_10_static.dat │ │ │ ├── AU_12_dynamic.dat │ │ │ ├── AU_12_static.dat │ │ │ ├── AU_14_dynamic.dat │ │ │ ├── AU_14_static.dat │ │ │ ├── AU_15_dynamic.dat │ │ │ ├── AU_15_static.dat │ │ │ ├── AU_17_dynamic.dat │ │ │ ├── AU_17_static.dat │ │ │ ├── AU_1_dynamic.dat │ │ │ ├── AU_1_static.dat │ │ │ ├── AU_20_dynamic.dat │ │ │ ├── AU_20_static.dat │ │ │ ├── AU_23_dynamic.dat │ │ │ ├── AU_23_static.dat │ │ │ ├── AU_25_dynamic.dat │ │ │ ├── AU_25_static.dat │ │ │ ├── AU_26_dynamic.dat │ │ │ ├── AU_26_static.dat │ │ │ ├── AU_28_dynamic.dat │ │ │ ├── AU_28_static.dat │ │ │ ├── AU_2_dynamic.dat │ │ │ ├── AU_2_static.dat │ │ │ ├── AU_45_dynamic.dat │ │ │ ├── AU_45_static.dat │ │ │ ├── AU_4_dynamic.dat │ │ │ ├── AU_4_static.dat │ │ │ ├── AU_5_dynamic.dat │ │ │ ├── AU_5_static.dat │ │ │ ├── AU_6_dynamic.dat │ │ │ ├── AU_6_static.dat │ │ │ ├── AU_7_dynamic.dat │ │ │ ├── AU_7_static.dat │ │ │ ├── AU_9_dynamic.dat │ │ │ └── AU_9_static.dat │ │ ├── svr_combined │ │ │ ├── AU_10_static_intensity_comb.dat │ │ │ ├── AU_12_static_intensity_comb.dat │ │ │ ├── AU_14_static_intensity.dat │ │ │ ├── AU_15_dynamic_intensity_comb.dat │ │ │ ├── AU_15_static_intensity_comb.dat │ │ │ ├── AU_17_dynamic_intensity_comb.dat │ │ │ ├── AU_17_static_intensity_comb.dat │ │ │ ├── AU_1_dynamic_intensity_comb.dat │ │ │ ├── AU_1_static_intensity.dat │ │ │ ├── AU_20_dynamic_intensity.dat │ │ │ ├── AU_20_static_intensity.dat │ │ │ ├── AU_23_dynamic_intensity_comb.dat │ │ │ ├── AU_23_static_intensity_comb.dat │ │ │ ├── AU_25_dynamic_intensity_comb.dat │ │ │ ├── AU_25_static_intensity.dat │ │ │ ├── AU_26_dynamic_intensity_comb.dat │ │ │ ├── AU_26_static_intensity_comb.dat │ │ │ ├── AU_2_dynamic_intensity_comb.dat │ │ │ ├── AU_2_static_intensity_comb.dat │ │ │ ├── AU_45_dynamic_intensity_comb.dat │ │ │ ├── AU_45_static_intensity_comb.dat │ │ │ ├── AU_4_static_intensity_comb.dat │ │ │ ├── AU_5_dynamic_intensity.dat │ │ │ ├── AU_5_static_intensity.dat │ │ │ ├── AU_6_static_intensity_comb.dat │ │ │ ├── AU_7_static_intensity_comb.dat │ │ │ ├── AU_9_dynamic_intensity.dat │ │ │ └── AU_9_static_intensity.dat │ │ └── tris_68_full.txt │ ├── CMakeLists.txt │ ├── Debug │ │ ├── FaceAnalyser.idb │ │ ├── FaceAnalyser.log │ │ ├── FaceAnalyser.pdb │ │ └── FaceAnalyser.tlog │ │ │ ├── CL.command.1.tlog │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── FaceAnalyser.lastbuildstate │ │ │ ├── Lib-link.read.1.tlog │ │ │ ├── Lib-link.write.1.tlog │ │ │ └── lib.command.1.tlog │ ├── FaceAnalyser.vcxproj │ ├── FaceAnalyser.vcxproj.filters │ ├── include │ │ ├── FaceAnalyser.h │ │ ├── FaceAnalyserParameters.h │ │ ├── Face_utils.h │ │ ├── PAW.h │ │ ├── PDM.h │ │ ├── SVM_dynamic_lin.h │ │ ├── SVM_static_lin.h │ │ ├── SVR_dynamic_lin_regressors.h │ │ └── SVR_static_lin_regressors.h │ ├── src │ │ ├── FaceAnalyser.cpp │ │ ├── FaceAnalyserParameters.cpp │ │ ├── Face_utils.cpp │ │ ├── PAW.cpp │ │ ├── PDM.cpp │ │ ├── SVM_dynamic_lin.cpp │ │ ├── SVM_static_lin.cpp │ │ ├── SVR_dynamic_lin_regressors.cpp │ │ └── SVR_static_lin_regressors.cpp │ └── x64 │ │ └── Release │ │ ├── FaceAnalyser.log │ │ ├── FaceAnalyser.pdb │ │ ├── FaceAnalyser.tlog │ │ ├── CL.command.1.tlog │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── FaceAnalyser.lastbuildstate │ │ ├── Lib-link.read.1.tlog │ │ ├── Lib-link.write.1.tlog │ │ └── lib.command.1.tlog │ │ └── FaceAnalyser.vcxprojResolveAssemblyReference.cache ├── GazeAnalyser │ ├── CMakeLists.txt │ ├── Debug │ │ ├── GazeAnalyser.idb │ │ ├── GazeAnalyser.log │ │ ├── GazeAnalyser.pdb │ │ └── GazeAnalyser.tlog │ │ │ ├── CL.command.1.tlog │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── GazeAnalyser.lastbuildstate │ │ │ ├── Lib-link.read.1.tlog │ │ │ ├── Lib-link.write.1.tlog │ │ │ └── lib.command.1.tlog │ ├── GazeAnalyser.vcxproj │ ├── GazeAnalyser.vcxproj.filters │ ├── include │ │ └── GazeEstimation.h │ ├── src │ │ └── GazeEstimation.cpp │ └── x64 │ │ └── Release │ │ ├── GazeAnalyser.log │ │ ├── GazeAnalyser.pdb │ │ └── GazeAnalyser.tlog │ │ ├── CL.command.1.tlog │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── GazeAnalyser.lastbuildstate │ │ ├── Lib-link.read.1.tlog │ │ ├── Lib-link.write.1.tlog │ │ └── lib.command.1.tlog ├── LandmarkDetector │ ├── CMakeLists.txt │ ├── Debug │ │ ├── LandmarkDetector.idb │ │ ├── LandmarkDetector.log │ │ ├── LandmarkDetector.pdb │ │ └── LandmarkDetector.tlog │ │ │ ├── CL.command.1.tlog │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── LandmarkDetector.lastbuildstate │ │ │ ├── Lib-link.read.1.tlog │ │ │ ├── Lib-link.write.1.tlog │ │ │ └── lib.command.1.tlog │ ├── LandmarkDetector.vcxproj │ ├── LandmarkDetector.vcxproj.filters │ ├── LandmarkDetector.vcxproj.user │ ├── include │ │ ├── CCNF_patch_expert.h │ │ ├── LandmarkCoreIncludes.h │ │ ├── LandmarkDetectionValidator.h │ │ ├── LandmarkDetectorFunc.h │ │ ├── LandmarkDetectorModel.h │ │ ├── LandmarkDetectorParameters.h │ │ ├── LandmarkDetectorUtils.h │ │ ├── PAW.h │ │ ├── PDM.h │ │ ├── Patch_experts.h │ │ ├── SVR_patch_expert.h │ │ └── stdafx.h │ ├── model │ │ ├── clm_general.txt │ │ ├── clm_wild.txt │ │ ├── clnf_general.txt │ │ ├── clnf_wild.txt │ │ ├── detection_validation │ │ │ ├── validator_cnn.txt │ │ │ └── validator_general_68.txt │ │ ├── haarAlign.txt │ │ ├── main_clm_general.txt │ │ ├── main_clm_wild.txt │ │ ├── main_clnf_general.txt │ │ ├── main_clnf_wild.txt │ │ ├── model_eye │ │ │ ├── clnf_left_synth.txt │ │ │ ├── clnf_right_synth.txt │ │ │ ├── main_clnf_synth_left.txt │ │ │ ├── main_clnf_synth_right.txt │ │ │ ├── patch_experts │ │ │ │ ├── ccnf_patches_1.00_synth_lid_.txt │ │ │ │ ├── ccnf_patches_1.50_synth_lid_.txt │ │ │ │ ├── left_ccnf_patches_1.00_synth_lid_.txt │ │ │ │ └── left_ccnf_patches_1.50_synth_lid_.txt │ │ │ └── pdms │ │ │ │ ├── pdm_28_eye_3D_closed.txt │ │ │ │ └── pdm_28_l_eye_3D_closed.txt │ │ ├── model_inner │ │ │ ├── clnf_inner.txt │ │ │ ├── main_clnf_inner.txt │ │ │ ├── patch_experts │ │ │ │ └── ccnf_patches_1.00_inner.txt │ │ │ └── pdms │ │ │ │ └── pdm_51_inner.txt │ │ ├── patch_experts │ │ │ ├── ccnf_patches_0.25_general.txt │ │ │ ├── ccnf_patches_0.25_wild.txt │ │ │ ├── ccnf_patches_0.35_general.txt │ │ │ ├── ccnf_patches_0.35_wild.txt │ │ │ ├── ccnf_patches_0.5_general.txt │ │ │ ├── ccnf_patches_0.5_wild.txt │ │ │ ├── ccnf_patches_1_wild.txt │ │ │ ├── svr_patches_0.25_general.txt │ │ │ ├── svr_patches_0.25_wild.txt │ │ │ ├── svr_patches_0.35_general.txt │ │ │ ├── svr_patches_0.35_wild.txt │ │ │ ├── svr_patches_0.5_general.txt │ │ │ └── svr_patches_0.5_wild.txt │ │ ├── pdms │ │ │ ├── In-the-wild_aligned_PDM_68.txt │ │ │ └── Multi-PIE_aligned_PDM_68.txt │ │ ├── tris_68.txt │ │ └── tris_68_full.txt │ ├── src │ │ ├── CCNF_patch_expert.cpp │ │ ├── LandmarkDetectionValidator.cpp │ │ ├── LandmarkDetectorFunc.cpp │ │ ├── LandmarkDetectorModel.cpp │ │ ├── LandmarkDetectorParameters.cpp │ │ ├── LandmarkDetectorUtils.cpp │ │ ├── PAW.cpp │ │ ├── PDM.cpp │ │ ├── Patch_experts.cpp │ │ ├── SVR_patch_expert.cpp │ │ └── stdafx.cpp │ └── x64 │ │ └── Release │ │ ├── LandmarkDetector.log │ │ ├── LandmarkDetector.pdb │ │ ├── LandmarkDetector.tlog │ │ ├── CL.command.1.tlog │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── LandmarkDetector.lastbuildstate │ │ ├── Lib-link.read.1.tlog │ │ ├── Lib-link.write.1.tlog │ │ └── lib.command.1.tlog │ │ └── LandmarkDetector.vcxprojResolveAssemblyReference.cache ├── OpenBLAS │ ├── OpenBLAS.props │ ├── include │ │ ├── cblas.h │ │ ├── f77blas.h │ │ ├── lapacke.h │ │ ├── lapacke_config.h │ │ ├── lapacke_mangling.h │ │ ├── lapacke_utils.h │ │ └── openblas_config.h │ ├── readme.txt │ └── readme_2.txt ├── OpenCV │ ├── Includes │ │ ├── opencv │ │ │ ├── cv.h │ │ │ ├── cv.hpp │ │ │ ├── cvaux.h │ │ │ ├── cvaux.hpp │ │ │ ├── cvwimage.h │ │ │ ├── cxcore.h │ │ │ ├── cxcore.hpp │ │ │ ├── cxeigen.hpp │ │ │ ├── cxmisc.h │ │ │ ├── highgui.h │ │ │ └── ml.h │ │ └── opencv2 │ │ │ ├── calib3d.hpp │ │ │ ├── calib3d │ │ │ ├── calib3d.hpp │ │ │ └── calib3d_c.h │ │ │ ├── core.hpp │ │ │ ├── core │ │ │ ├── affine.hpp │ │ │ ├── base.hpp │ │ │ ├── bufferpool.hpp │ │ │ ├── core.hpp │ │ │ ├── core_c.h │ │ │ ├── cuda.hpp │ │ │ ├── cuda.inl.hpp │ │ │ ├── cuda_stream_accessor.hpp │ │ │ ├── cuda_types.hpp │ │ │ ├── cvdef.h │ │ │ ├── cvstd.hpp │ │ │ ├── cvstd.inl.hpp │ │ │ ├── directx.hpp │ │ │ ├── eigen.hpp │ │ │ ├── fast_math.hpp │ │ │ ├── hal │ │ │ │ ├── hal.hpp │ │ │ │ ├── interface.h │ │ │ │ ├── intrin.hpp │ │ │ │ ├── intrin_cpp.hpp │ │ │ │ ├── intrin_neon.hpp │ │ │ │ └── intrin_sse.hpp │ │ │ ├── ippasync.hpp │ │ │ ├── mat.hpp │ │ │ ├── mat.inl.hpp │ │ │ ├── matx.hpp │ │ │ ├── neon_utils.hpp │ │ │ ├── ocl.hpp │ │ │ ├── ocl_genbase.hpp │ │ │ ├── opengl.hpp │ │ │ ├── operations.hpp │ │ │ ├── optim.hpp │ │ │ ├── ovx.hpp │ │ │ ├── persistence.hpp │ │ │ ├── private.cuda.hpp │ │ │ ├── private.hpp │ │ │ ├── ptr.inl.hpp │ │ │ ├── saturate.hpp │ │ │ ├── sse_utils.hpp │ │ │ ├── traits.hpp │ │ │ ├── types.hpp │ │ │ ├── types_c.h │ │ │ ├── utility.hpp │ │ │ ├── va_intel.hpp │ │ │ ├── version.hpp │ │ │ └── wimage.hpp │ │ │ ├── cvconfig.h │ │ │ ├── features2d.hpp │ │ │ ├── features2d │ │ │ └── features2d.hpp │ │ │ ├── flann.hpp │ │ │ ├── flann │ │ │ ├── all_indices.h │ │ │ ├── allocator.h │ │ │ ├── any.h │ │ │ ├── autotuned_index.h │ │ │ ├── composite_index.h │ │ │ ├── config.h │ │ │ ├── defines.h │ │ │ ├── dist.h │ │ │ ├── dummy.h │ │ │ ├── dynamic_bitset.h │ │ │ ├── flann.hpp │ │ │ ├── flann_base.hpp │ │ │ ├── general.h │ │ │ ├── ground_truth.h │ │ │ ├── hdf5.h │ │ │ ├── heap.h │ │ │ ├── hierarchical_clustering_index.h │ │ │ ├── index_testing.h │ │ │ ├── kdtree_index.h │ │ │ ├── kdtree_single_index.h │ │ │ ├── kmeans_index.h │ │ │ ├── linear_index.h │ │ │ ├── logger.h │ │ │ ├── lsh_index.h │ │ │ ├── lsh_table.h │ │ │ ├── matrix.h │ │ │ ├── miniflann.hpp │ │ │ ├── nn_index.h │ │ │ ├── object_factory.h │ │ │ ├── params.h │ │ │ ├── random.h │ │ │ ├── result_set.h │ │ │ ├── sampling.h │ │ │ ├── saving.h │ │ │ ├── simplex_downhill.h │ │ │ └── timer.h │ │ │ ├── highgui.hpp │ │ │ ├── highgui │ │ │ ├── highgui.hpp │ │ │ └── highgui_c.h │ │ │ ├── imgcodecs.hpp │ │ │ ├── imgcodecs │ │ │ ├── imgcodecs.hpp │ │ │ ├── imgcodecs_c.h │ │ │ └── ios.h │ │ │ ├── imgproc.hpp │ │ │ ├── imgproc │ │ │ ├── detail │ │ │ │ └── distortion_model.hpp │ │ │ ├── hal │ │ │ │ ├── hal.hpp │ │ │ │ └── interface.h │ │ │ ├── imgproc.hpp │ │ │ ├── imgproc_c.h │ │ │ └── types_c.h │ │ │ ├── ml.hpp │ │ │ ├── ml │ │ │ └── ml.hpp │ │ │ ├── objdetect.hpp │ │ │ ├── objdetect │ │ │ ├── detection_based_tracker.hpp │ │ │ ├── objdetect.hpp │ │ │ └── objdetect_c.h │ │ │ ├── opencv.hpp │ │ │ ├── opencv_modules.hpp │ │ │ ├── photo.hpp │ │ │ ├── photo │ │ │ ├── cuda.hpp │ │ │ ├── photo.hpp │ │ │ └── photo_c.h │ │ │ ├── shape.hpp │ │ │ ├── shape │ │ │ ├── emdL1.hpp │ │ │ ├── hist_cost.hpp │ │ │ ├── shape.hpp │ │ │ ├── shape_distance.hpp │ │ │ └── shape_transformer.hpp │ │ │ ├── stitching.hpp │ │ │ ├── stitching │ │ │ ├── detail │ │ │ │ ├── autocalib.hpp │ │ │ │ ├── blenders.hpp │ │ │ │ ├── camera.hpp │ │ │ │ ├── exposure_compensate.hpp │ │ │ │ ├── matchers.hpp │ │ │ │ ├── motion_estimators.hpp │ │ │ │ ├── seam_finders.hpp │ │ │ │ ├── timelapsers.hpp │ │ │ │ ├── util.hpp │ │ │ │ ├── util_inl.hpp │ │ │ │ ├── warpers.hpp │ │ │ │ └── warpers_inl.hpp │ │ │ └── warpers.hpp │ │ │ ├── superres.hpp │ │ │ ├── superres │ │ │ └── optical_flow.hpp │ │ │ ├── video.hpp │ │ │ ├── video │ │ │ ├── background_segm.hpp │ │ │ ├── tracking.hpp │ │ │ ├── tracking_c.h │ │ │ └── video.hpp │ │ │ ├── videoio.hpp │ │ │ ├── videoio │ │ │ ├── cap_ios.h │ │ │ ├── videoio.hpp │ │ │ └── videoio_c.h │ │ │ ├── videostab.hpp │ │ │ ├── videostab │ │ │ ├── deblurring.hpp │ │ │ ├── fast_marching.hpp │ │ │ ├── fast_marching_inl.hpp │ │ │ ├── frame_source.hpp │ │ │ ├── global_motion.hpp │ │ │ ├── inpainting.hpp │ │ │ ├── log.hpp │ │ │ ├── motion_core.hpp │ │ │ ├── motion_stabilizing.hpp │ │ │ ├── optical_flow.hpp │ │ │ ├── outlier_rejection.hpp │ │ │ ├── ring_buffer.hpp │ │ │ ├── stabilizer.hpp │ │ │ └── wobble_suppression.hpp │ │ │ └── world.hpp │ └── Libraries │ │ └── Win64 │ │ ├── FaceLandmarkImg.pdb │ │ ├── FaceLandmarkVid.pdb │ │ ├── FaceLandmarkVidMulti.pdb │ │ ├── FeatureExtraction.pdb │ │ ├── tbb.def │ │ └── tbbmalloc.def ├── boost │ ├── LICENSE_1_0.txt │ ├── boost.props │ ├── boost │ │ ├── algorithm │ │ │ ├── algorithm.hpp │ │ │ ├── clamp.hpp │ │ │ ├── cxx11 │ │ │ │ ├── all_of.hpp │ │ │ │ ├── any_of.hpp │ │ │ │ ├── copy_if.hpp │ │ │ │ ├── copy_n.hpp │ │ │ │ ├── find_if_not.hpp │ │ │ │ ├── iota.hpp │ │ │ │ ├── is_partitioned.hpp │ │ │ │ ├── is_permutation.hpp │ │ │ │ ├── is_sorted.hpp │ │ │ │ ├── none_of.hpp │ │ │ │ ├── one_of.hpp │ │ │ │ ├── partition_copy.hpp │ │ │ │ └── partition_point.hpp │ │ │ ├── cxx14 │ │ │ │ ├── equal.hpp │ │ │ │ ├── is_permutation.hpp │ │ │ │ └── mismatch.hpp │ │ │ ├── gather.hpp │ │ │ ├── hex.hpp │ │ │ ├── minmax.hpp │ │ │ ├── minmax_element.hpp │ │ │ ├── searching │ │ │ │ ├── boyer_moore.hpp │ │ │ │ ├── boyer_moore_horspool.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── bm_traits.hpp │ │ │ │ │ └── debugging.hpp │ │ │ │ └── knuth_morris_pratt.hpp │ │ │ ├── string.hpp │ │ │ ├── string │ │ │ │ ├── case_conv.hpp │ │ │ │ ├── classification.hpp │ │ │ │ ├── compare.hpp │ │ │ │ ├── concept.hpp │ │ │ │ ├── config.hpp │ │ │ │ ├── constants.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── case_conv.hpp │ │ │ │ │ ├── classification.hpp │ │ │ │ │ ├── find_format.hpp │ │ │ │ │ ├── find_format_all.hpp │ │ │ │ │ ├── find_format_store.hpp │ │ │ │ │ ├── find_iterator.hpp │ │ │ │ │ ├── finder.hpp │ │ │ │ │ ├── finder_regex.hpp │ │ │ │ │ ├── formatter.hpp │ │ │ │ │ ├── formatter_regex.hpp │ │ │ │ │ ├── predicate.hpp │ │ │ │ │ ├── replace_storage.hpp │ │ │ │ │ ├── sequence.hpp │ │ │ │ │ ├── trim.hpp │ │ │ │ │ └── util.hpp │ │ │ │ ├── erase.hpp │ │ │ │ ├── find.hpp │ │ │ │ ├── find_format.hpp │ │ │ │ ├── find_iterator.hpp │ │ │ │ ├── finder.hpp │ │ │ │ ├── formatter.hpp │ │ │ │ ├── iter_find.hpp │ │ │ │ ├── join.hpp │ │ │ │ ├── predicate.hpp │ │ │ │ ├── predicate_facade.hpp │ │ │ │ ├── regex.hpp │ │ │ │ ├── regex_find_format.hpp │ │ │ │ ├── replace.hpp │ │ │ │ ├── sequence_traits.hpp │ │ │ │ ├── split.hpp │ │ │ │ ├── std │ │ │ │ │ ├── list_traits.hpp │ │ │ │ │ ├── rope_traits.hpp │ │ │ │ │ ├── slist_traits.hpp │ │ │ │ │ └── string_traits.hpp │ │ │ │ ├── std_containers_traits.hpp │ │ │ │ ├── trim.hpp │ │ │ │ ├── trim_all.hpp │ │ │ │ └── yes_no_type.hpp │ │ │ └── string_regex.hpp │ │ ├── assert.hpp │ │ ├── bind │ │ │ ├── apply.hpp │ │ │ ├── arg.hpp │ │ │ ├── bind.hpp │ │ │ ├── bind_cc.hpp │ │ │ ├── bind_mf2_cc.hpp │ │ │ ├── bind_mf_cc.hpp │ │ │ ├── bind_template.hpp │ │ │ ├── make_adaptable.hpp │ │ │ ├── mem_fn.hpp │ │ │ ├── mem_fn_cc.hpp │ │ │ ├── mem_fn_template.hpp │ │ │ ├── mem_fn_vw.hpp │ │ │ ├── placeholders.hpp │ │ │ ├── protect.hpp │ │ │ └── storage.hpp │ │ ├── cerrno.hpp │ │ ├── checked_delete.hpp │ │ ├── concept │ │ │ ├── assert.hpp │ │ │ ├── detail │ │ │ │ ├── backward_compatibility.hpp │ │ │ │ ├── borland.hpp │ │ │ │ ├── concept_def.hpp │ │ │ │ ├── concept_undef.hpp │ │ │ │ ├── general.hpp │ │ │ │ ├── has_constraints.hpp │ │ │ │ └── msvc.hpp │ │ │ ├── requires.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 │ │ │ │ ├── digitalmars.hpp │ │ │ │ ├── gcc.hpp │ │ │ │ ├── gcc_xml.hpp │ │ │ │ ├── greenhills.hpp │ │ │ │ ├── hp_acc.hpp │ │ │ │ ├── intel.hpp │ │ │ │ ├── kai.hpp │ │ │ │ ├── metrowerks.hpp │ │ │ │ ├── mpw.hpp │ │ │ │ ├── nvcc.hpp │ │ │ │ ├── pathscale.hpp │ │ │ │ ├── pgi.hpp │ │ │ │ ├── sgi_mipspro.hpp │ │ │ │ ├── sunpro_cc.hpp │ │ │ │ ├── vacpp.hpp │ │ │ │ ├── visualc.hpp │ │ │ │ └── xlcpp.hpp │ │ │ ├── no_tr1 │ │ │ │ ├── cmath.hpp │ │ │ │ ├── complex.hpp │ │ │ │ ├── functional.hpp │ │ │ │ ├── memory.hpp │ │ │ │ └── utility.hpp │ │ │ ├── platform │ │ │ │ ├── aix.hpp │ │ │ │ ├── amigaos.hpp │ │ │ │ ├── beos.hpp │ │ │ │ ├── bsd.hpp │ │ │ │ ├── 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 │ │ │ ├── posix_features.hpp │ │ │ ├── requires_threads.hpp │ │ │ ├── select_compiler_config.hpp │ │ │ ├── select_platform_config.hpp │ │ │ ├── select_stdlib_config.hpp │ │ │ ├── stdlib │ │ │ │ ├── dinkumware.hpp │ │ │ │ ├── libcomo.hpp │ │ │ │ ├── libcpp.hpp │ │ │ │ ├── libstdcpp3.hpp │ │ │ │ ├── modena.hpp │ │ │ │ ├── msl.hpp │ │ │ │ ├── roguewave.hpp │ │ │ │ ├── sgi.hpp │ │ │ │ ├── stlport.hpp │ │ │ │ └── vacpp.hpp │ │ │ ├── suffix.hpp │ │ │ ├── user.hpp │ │ │ └── warning_disable.hpp │ │ ├── core │ │ │ ├── addressof.hpp │ │ │ ├── checked_delete.hpp │ │ │ ├── demangle.hpp │ │ │ ├── enable_if.hpp │ │ │ ├── explicit_operator_bool.hpp │ │ │ ├── ignore_unused.hpp │ │ │ ├── is_same.hpp │ │ │ ├── lightweight_test.hpp │ │ │ ├── lightweight_test_trait.hpp │ │ │ ├── no_exceptions_support.hpp │ │ │ ├── noncopyable.hpp │ │ │ ├── null_deleter.hpp │ │ │ ├── ref.hpp │ │ │ ├── scoped_enum.hpp │ │ │ ├── swap.hpp │ │ │ ├── typeinfo.hpp │ │ │ └── underlying_type.hpp │ │ ├── cstdint.hpp │ │ ├── current_function.hpp │ │ ├── detail │ │ │ ├── algorithm.hpp │ │ │ ├── allocator_utilities.hpp │ │ │ ├── atomic_count.hpp │ │ │ ├── atomic_redef_macros.hpp │ │ │ ├── atomic_undef_macros.hpp │ │ │ ├── basic_pointerbuf.hpp │ │ │ ├── binary_search.hpp │ │ │ ├── bitmask.hpp │ │ │ ├── call_traits.hpp │ │ │ ├── catch_exceptions.hpp │ │ │ ├── compressed_pair.hpp │ │ │ ├── container_fwd.hpp │ │ │ ├── dynamic_bitset.hpp │ │ │ ├── endian.hpp │ │ │ ├── fenv.hpp │ │ │ ├── has_default_constructor.hpp │ │ │ ├── identifier.hpp │ │ │ ├── indirect_traits.hpp │ │ │ ├── interlocked.hpp │ │ │ ├── is_incrementable.hpp │ │ │ ├── is_sorted.hpp │ │ │ ├── is_xxx.hpp │ │ │ ├── iterator.hpp │ │ │ ├── lcast_precision.hpp │ │ │ ├── lightweight_main.hpp │ │ │ ├── lightweight_mutex.hpp │ │ │ ├── lightweight_test.hpp │ │ │ ├── lightweight_test_report.hpp │ │ │ ├── lightweight_thread.hpp │ │ │ ├── named_template_params.hpp │ │ │ ├── no_exceptions_support.hpp │ │ │ ├── numeric_traits.hpp │ │ │ ├── ob_compressed_pair.hpp │ │ │ ├── quick_allocator.hpp │ │ │ ├── reference_content.hpp │ │ │ ├── scoped_enum_emulation.hpp │ │ │ ├── select_type.hpp │ │ │ ├── sp_typeinfo.hpp │ │ │ ├── templated_streams.hpp │ │ │ ├── utf8_codecvt_facet.hpp │ │ │ ├── utf8_codecvt_facet.ipp │ │ │ ├── winapi │ │ │ │ ├── GetCurrentProcess.hpp │ │ │ │ ├── GetCurrentThread.hpp │ │ │ │ ├── GetLastError.hpp │ │ │ │ ├── GetProcessTimes.hpp │ │ │ │ ├── GetThreadTimes.hpp │ │ │ │ ├── apc.hpp │ │ │ │ ├── basic_types.hpp │ │ │ │ ├── condition_variable.hpp │ │ │ │ ├── config.hpp │ │ │ │ ├── critical_section.hpp │ │ │ │ ├── crypt.hpp │ │ │ │ ├── detail │ │ │ │ │ └── cast_ptr.hpp │ │ │ │ ├── directory_management.hpp │ │ │ │ ├── dll.hpp │ │ │ │ ├── error_handling.hpp │ │ │ │ ├── event.hpp │ │ │ │ ├── file_management.hpp │ │ │ │ ├── file_mapping.hpp │ │ │ │ ├── handles.hpp │ │ │ │ ├── heap_memory.hpp │ │ │ │ ├── init_once.hpp │ │ │ │ ├── local_memory.hpp │ │ │ │ ├── memory.hpp │ │ │ │ ├── mutex.hpp │ │ │ │ ├── process.hpp │ │ │ │ ├── security.hpp │ │ │ │ ├── semaphore.hpp │ │ │ │ ├── srw_lock.hpp │ │ │ │ ├── synchronization.hpp │ │ │ │ ├── system.hpp │ │ │ │ ├── thread.hpp │ │ │ │ ├── thread_pool.hpp │ │ │ │ ├── time.hpp │ │ │ │ ├── timers.hpp │ │ │ │ ├── tls.hpp │ │ │ │ ├── wait.hpp │ │ │ │ └── waitable_timer.hpp │ │ │ └── workaround.hpp │ │ ├── exception │ │ │ ├── N3757.hpp │ │ │ ├── all.hpp │ │ │ ├── current_exception_cast.hpp │ │ │ ├── detail │ │ │ │ ├── clone_current_exception.hpp │ │ │ │ ├── error_info_impl.hpp │ │ │ │ ├── exception_ptr.hpp │ │ │ │ ├── is_output_streamable.hpp │ │ │ │ ├── object_hex_dump.hpp │ │ │ │ └── type_info.hpp │ │ │ ├── diagnostic_information.hpp │ │ │ ├── enable_current_exception.hpp │ │ │ ├── enable_error_info.hpp │ │ │ ├── errinfo_api_function.hpp │ │ │ ├── errinfo_at_line.hpp │ │ │ ├── errinfo_errno.hpp │ │ │ ├── errinfo_file_handle.hpp │ │ │ ├── errinfo_file_name.hpp │ │ │ ├── errinfo_file_open_mode.hpp │ │ │ ├── errinfo_nested_exception.hpp │ │ │ ├── errinfo_type_info_name.hpp │ │ │ ├── error_info.hpp │ │ │ ├── exception.hpp │ │ │ ├── get_error_info.hpp │ │ │ ├── info.hpp │ │ │ ├── info_tuple.hpp │ │ │ ├── to_string.hpp │ │ │ └── to_string_stub.hpp │ │ ├── filesystem.hpp │ │ ├── filesystem │ │ │ ├── config.hpp │ │ │ ├── convenience.hpp │ │ │ ├── detail │ │ │ │ └── utf8_codecvt_facet.hpp │ │ │ ├── exception.hpp │ │ │ ├── fstream.hpp │ │ │ ├── operations.hpp │ │ │ ├── path.hpp │ │ │ ├── path_traits.hpp │ │ │ └── string_file.hpp │ │ ├── function.hpp │ │ ├── function │ │ │ ├── detail │ │ │ │ ├── function_iterate.hpp │ │ │ │ ├── gen_maybe_include.pl │ │ │ │ ├── maybe_include.hpp │ │ │ │ └── prologue.hpp │ │ │ ├── function0.hpp │ │ │ ├── function1.hpp │ │ │ ├── function10.hpp │ │ │ ├── function2.hpp │ │ │ ├── function3.hpp │ │ │ ├── function4.hpp │ │ │ ├── function5.hpp │ │ │ ├── function6.hpp │ │ │ ├── function7.hpp │ │ │ ├── function8.hpp │ │ │ ├── function9.hpp │ │ │ ├── function_base.hpp │ │ │ ├── function_fwd.hpp │ │ │ ├── function_template.hpp │ │ │ ├── function_typeof.hpp │ │ │ └── gen_function_N.pl │ │ ├── function_equal.hpp │ │ ├── functional │ │ │ ├── factory.hpp │ │ │ ├── forward_adapter.hpp │ │ │ ├── hash.hpp │ │ │ ├── hash │ │ │ │ ├── detail │ │ │ │ │ ├── float_functions.hpp │ │ │ │ │ ├── hash_float.hpp │ │ │ │ │ └── limits.hpp │ │ │ │ ├── extensions.hpp │ │ │ │ ├── hash.hpp │ │ │ │ └── hash_fwd.hpp │ │ │ ├── hash_fwd.hpp │ │ │ ├── lightweight_forward_adapter.hpp │ │ │ ├── overloaded_function.hpp │ │ │ ├── overloaded_function │ │ │ │ ├── config.hpp │ │ │ │ └── detail │ │ │ │ │ ├── base.hpp │ │ │ │ │ └── function_type.hpp │ │ │ └── value_factory.hpp │ │ ├── get_pointer.hpp │ │ ├── integer.hpp │ │ ├── integer_fwd.hpp │ │ ├── integer_traits.hpp │ │ ├── io │ │ │ ├── detail │ │ │ │ └── quoted_manip.hpp │ │ │ └── ios_state.hpp │ │ ├── io_fwd.hpp │ │ ├── iterator.hpp │ │ ├── iterator │ │ │ ├── counting_iterator.hpp │ │ │ ├── detail │ │ │ │ ├── any_conversion_eater.hpp │ │ │ │ ├── config_def.hpp │ │ │ │ ├── config_undef.hpp │ │ │ │ ├── enable_if.hpp │ │ │ │ ├── facade_iterator_category.hpp │ │ │ │ └── minimum_category.hpp │ │ │ ├── filter_iterator.hpp │ │ │ ├── function_input_iterator.hpp │ │ │ ├── indirect_iterator.hpp │ │ │ ├── interoperable.hpp │ │ │ ├── is_lvalue_iterator.hpp │ │ │ ├── is_readable_iterator.hpp │ │ │ ├── iterator_adaptor.hpp │ │ │ ├── iterator_archetypes.hpp │ │ │ ├── iterator_categories.hpp │ │ │ ├── iterator_concepts.hpp │ │ │ ├── iterator_facade.hpp │ │ │ ├── iterator_traits.hpp │ │ │ ├── minimum_category.hpp │ │ │ ├── new_iterator_tests.hpp │ │ │ ├── permutation_iterator.hpp │ │ │ ├── reverse_iterator.hpp │ │ │ ├── transform_iterator.hpp │ │ │ └── zip_iterator.hpp │ │ ├── limits.hpp │ │ ├── mem_fn.hpp │ │ ├── memory_order.hpp │ │ ├── move │ │ │ ├── adl_move_swap.hpp │ │ │ ├── algorithm.hpp │ │ │ ├── core.hpp │ │ │ ├── default_delete.hpp │ │ │ ├── detail │ │ │ │ ├── config_begin.hpp │ │ │ │ ├── config_end.hpp │ │ │ │ ├── fwd_macros.hpp │ │ │ │ ├── iterator_traits.hpp │ │ │ │ ├── meta_utils.hpp │ │ │ │ ├── meta_utils_core.hpp │ │ │ │ ├── move_helpers.hpp │ │ │ │ ├── std_ns_begin.hpp │ │ │ │ ├── std_ns_end.hpp │ │ │ │ ├── type_traits.hpp │ │ │ │ ├── unique_ptr_meta_utils.hpp │ │ │ │ └── workaround.hpp │ │ │ ├── iterator.hpp │ │ │ ├── make_unique.hpp │ │ │ ├── move.hpp │ │ │ ├── traits.hpp │ │ │ ├── unique_ptr.hpp │ │ │ ├── utility.hpp │ │ │ └── utility_core.hpp │ │ ├── mpl │ │ │ ├── O1_size.hpp │ │ │ ├── O1_size_fwd.hpp │ │ │ ├── accumulate.hpp │ │ │ ├── advance.hpp │ │ │ ├── advance_fwd.hpp │ │ │ ├── alias.hpp │ │ │ ├── always.hpp │ │ │ ├── and.hpp │ │ │ ├── apply.hpp │ │ │ ├── apply_fwd.hpp │ │ │ ├── apply_wrap.hpp │ │ │ ├── arg.hpp │ │ │ ├── arg_fwd.hpp │ │ │ ├── arithmetic.hpp │ │ │ ├── as_sequence.hpp │ │ │ ├── assert.hpp │ │ │ ├── at.hpp │ │ │ ├── at_fwd.hpp │ │ │ ├── aux_ │ │ │ │ ├── O1_size_impl.hpp │ │ │ │ ├── adl_barrier.hpp │ │ │ │ ├── advance_backward.hpp │ │ │ │ ├── advance_forward.hpp │ │ │ │ ├── apply_1st.hpp │ │ │ │ ├── arg_typedef.hpp │ │ │ │ ├── arithmetic_op.hpp │ │ │ │ ├── arity.hpp │ │ │ │ ├── arity_spec.hpp │ │ │ │ ├── at_impl.hpp │ │ │ │ ├── back_impl.hpp │ │ │ │ ├── basic_bind.hpp │ │ │ │ ├── begin_end_impl.hpp │ │ │ │ ├── clear_impl.hpp │ │ │ │ ├── common_name_wknd.hpp │ │ │ │ ├── comparison_op.hpp │ │ │ │ ├── config │ │ │ │ │ ├── adl.hpp │ │ │ │ │ ├── arrays.hpp │ │ │ │ │ ├── bcc.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── compiler.hpp │ │ │ │ │ ├── ctps.hpp │ │ │ │ │ ├── dependent_nttp.hpp │ │ │ │ │ ├── dmc_ambiguous_ctps.hpp │ │ │ │ │ ├── dtp.hpp │ │ │ │ │ ├── eti.hpp │ │ │ │ │ ├── forwarding.hpp │ │ │ │ │ ├── gcc.hpp │ │ │ │ │ ├── gpu.hpp │ │ │ │ │ ├── has_apply.hpp │ │ │ │ │ ├── has_xxx.hpp │ │ │ │ │ ├── integral.hpp │ │ │ │ │ ├── intel.hpp │ │ │ │ │ ├── lambda.hpp │ │ │ │ │ ├── msvc.hpp │ │ │ │ │ ├── msvc_typename.hpp │ │ │ │ │ ├── nttp.hpp │ │ │ │ │ ├── operators.hpp │ │ │ │ │ ├── overload_resolution.hpp │ │ │ │ │ ├── pp_counter.hpp │ │ │ │ │ ├── preprocessor.hpp │ │ │ │ │ ├── static_constant.hpp │ │ │ │ │ ├── ttp.hpp │ │ │ │ │ ├── typeof.hpp │ │ │ │ │ ├── use_preprocessed.hpp │ │ │ │ │ └── workaround.hpp │ │ │ │ ├── contains_impl.hpp │ │ │ │ ├── count_args.hpp │ │ │ │ ├── count_impl.hpp │ │ │ │ ├── empty_impl.hpp │ │ │ │ ├── erase_impl.hpp │ │ │ │ ├── erase_key_impl.hpp │ │ │ │ ├── filter_iter.hpp │ │ │ │ ├── find_if_pred.hpp │ │ │ │ ├── fold_impl.hpp │ │ │ │ ├── fold_impl_body.hpp │ │ │ │ ├── fold_op.hpp │ │ │ │ ├── fold_pred.hpp │ │ │ │ ├── front_impl.hpp │ │ │ │ ├── full_lambda.hpp │ │ │ │ ├── has_apply.hpp │ │ │ │ ├── has_begin.hpp │ │ │ │ ├── has_key_impl.hpp │ │ │ │ ├── has_rebind.hpp │ │ │ │ ├── has_size.hpp │ │ │ │ ├── has_tag.hpp │ │ │ │ ├── has_type.hpp │ │ │ │ ├── include_preprocessed.hpp │ │ │ │ ├── insert_impl.hpp │ │ │ │ ├── insert_range_impl.hpp │ │ │ │ ├── inserter_algorithm.hpp │ │ │ │ ├── integral_wrapper.hpp │ │ │ │ ├── is_msvc_eti_arg.hpp │ │ │ │ ├── iter_apply.hpp │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ ├── iter_push_front.hpp │ │ │ │ ├── joint_iter.hpp │ │ │ │ ├── lambda_arity_param.hpp │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ ├── lambda_spec.hpp │ │ │ │ ├── lambda_support.hpp │ │ │ │ ├── largest_int.hpp │ │ │ │ ├── logical_op.hpp │ │ │ │ ├── msvc_dtw.hpp │ │ │ │ ├── msvc_eti_base.hpp │ │ │ │ ├── msvc_is_class.hpp │ │ │ │ ├── msvc_never_true.hpp │ │ │ │ ├── msvc_type.hpp │ │ │ │ ├── na.hpp │ │ │ │ ├── na_assert.hpp │ │ │ │ ├── na_fwd.hpp │ │ │ │ ├── na_spec.hpp │ │ │ │ ├── nested_type_wknd.hpp │ │ │ │ ├── nttp_decl.hpp │ │ │ │ ├── numeric_cast_utils.hpp │ │ │ │ ├── numeric_op.hpp │ │ │ │ ├── order_impl.hpp │ │ │ │ ├── overload_names.hpp │ │ │ │ ├── partition_op.hpp │ │ │ │ ├── pop_back_impl.hpp │ │ │ │ ├── pop_front_impl.hpp │ │ │ │ ├── preprocessed │ │ │ │ │ ├── bcc │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ ├── bcc551 │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ ├── bcc_pre590 │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ ├── dmc │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ ├── gcc │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ ├── msvc60 │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ ├── msvc70 │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ ├── mwcw │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ ├── no_ctps │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ ├── no_ttp │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ │ └── plain │ │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ │ ├── and.hpp │ │ │ │ │ │ ├── apply.hpp │ │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ │ ├── arg.hpp │ │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ │ ├── bind.hpp │ │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ │ ├── deque.hpp │ │ │ │ │ │ ├── divides.hpp │ │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ │ ├── greater.hpp │ │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ │ ├── less.hpp │ │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ │ ├── list.hpp │ │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ │ ├── map.hpp │ │ │ │ │ │ ├── minus.hpp │ │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ │ ├── or.hpp │ │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ │ ├── plus.hpp │ │ │ │ │ │ ├── quote.hpp │ │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ │ ├── set.hpp │ │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ │ ├── times.hpp │ │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ └── vector_c.hpp │ │ │ │ ├── preprocessor │ │ │ │ │ ├── add.hpp │ │ │ │ │ ├── def_params_tail.hpp │ │ │ │ │ ├── default_params.hpp │ │ │ │ │ ├── enum.hpp │ │ │ │ │ ├── ext_params.hpp │ │ │ │ │ ├── filter_params.hpp │ │ │ │ │ ├── is_seq.hpp │ │ │ │ │ ├── params.hpp │ │ │ │ │ ├── partial_spec_params.hpp │ │ │ │ │ ├── range.hpp │ │ │ │ │ ├── repeat.hpp │ │ │ │ │ ├── sub.hpp │ │ │ │ │ ├── token_equal.hpp │ │ │ │ │ └── tuple.hpp │ │ │ │ ├── ptr_to_ref.hpp │ │ │ │ ├── push_back_impl.hpp │ │ │ │ ├── push_front_impl.hpp │ │ │ │ ├── range_c │ │ │ │ │ ├── O1_size.hpp │ │ │ │ │ ├── back.hpp │ │ │ │ │ ├── empty.hpp │ │ │ │ │ ├── front.hpp │ │ │ │ │ ├── iterator.hpp │ │ │ │ │ ├── size.hpp │ │ │ │ │ └── tag.hpp │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ ├── reverse_fold_impl_body.hpp │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ ├── sequence_wrapper.hpp │ │ │ │ ├── shift_op.hpp │ │ │ │ ├── single_element_iter.hpp │ │ │ │ ├── size_impl.hpp │ │ │ │ ├── sort_impl.hpp │ │ │ │ ├── static_cast.hpp │ │ │ │ ├── template_arity.hpp │ │ │ │ ├── template_arity_fwd.hpp │ │ │ │ ├── test.hpp │ │ │ │ ├── test │ │ │ │ │ ├── assert.hpp │ │ │ │ │ ├── data.hpp │ │ │ │ │ └── test_case.hpp │ │ │ │ ├── traits_lambda_spec.hpp │ │ │ │ ├── transform_iter.hpp │ │ │ │ ├── type_wrapper.hpp │ │ │ │ ├── unwrap.hpp │ │ │ │ ├── value_wknd.hpp │ │ │ │ └── yes_no.hpp │ │ │ ├── back.hpp │ │ │ ├── back_fwd.hpp │ │ │ ├── back_inserter.hpp │ │ │ ├── base.hpp │ │ │ ├── begin.hpp │ │ │ ├── begin_end.hpp │ │ │ ├── begin_end_fwd.hpp │ │ │ ├── bind.hpp │ │ │ ├── bind_fwd.hpp │ │ │ ├── bitand.hpp │ │ │ ├── bitor.hpp │ │ │ ├── bitwise.hpp │ │ │ ├── bitxor.hpp │ │ │ ├── bool.hpp │ │ │ ├── bool_fwd.hpp │ │ │ ├── char.hpp │ │ │ ├── char_fwd.hpp │ │ │ ├── clear.hpp │ │ │ ├── clear_fwd.hpp │ │ │ ├── comparison.hpp │ │ │ ├── contains.hpp │ │ │ ├── contains_fwd.hpp │ │ │ ├── copy.hpp │ │ │ ├── copy_if.hpp │ │ │ ├── count.hpp │ │ │ ├── count_fwd.hpp │ │ │ ├── count_if.hpp │ │ │ ├── deque.hpp │ │ │ ├── deref.hpp │ │ │ ├── distance.hpp │ │ │ ├── distance_fwd.hpp │ │ │ ├── divides.hpp │ │ │ ├── empty.hpp │ │ │ ├── empty_base.hpp │ │ │ ├── empty_fwd.hpp │ │ │ ├── empty_sequence.hpp │ │ │ ├── end.hpp │ │ │ ├── equal.hpp │ │ │ ├── equal_to.hpp │ │ │ ├── erase.hpp │ │ │ ├── erase_fwd.hpp │ │ │ ├── erase_key.hpp │ │ │ ├── erase_key_fwd.hpp │ │ │ ├── eval_if.hpp │ │ │ ├── filter_view.hpp │ │ │ ├── find.hpp │ │ │ ├── find_if.hpp │ │ │ ├── fold.hpp │ │ │ ├── for_each.hpp │ │ │ ├── front.hpp │ │ │ ├── front_fwd.hpp │ │ │ ├── front_inserter.hpp │ │ │ ├── greater.hpp │ │ │ ├── greater_equal.hpp │ │ │ ├── has_key.hpp │ │ │ ├── has_key_fwd.hpp │ │ │ ├── has_xxx.hpp │ │ │ ├── identity.hpp │ │ │ ├── if.hpp │ │ │ ├── index_if.hpp │ │ │ ├── index_of.hpp │ │ │ ├── inherit.hpp │ │ │ ├── inherit_linearly.hpp │ │ │ ├── insert.hpp │ │ │ ├── insert_fwd.hpp │ │ │ ├── insert_range.hpp │ │ │ ├── insert_range_fwd.hpp │ │ │ ├── inserter.hpp │ │ │ ├── int.hpp │ │ │ ├── int_fwd.hpp │ │ │ ├── integral_c.hpp │ │ │ ├── integral_c_fwd.hpp │ │ │ ├── integral_c_tag.hpp │ │ │ ├── is_placeholder.hpp │ │ │ ├── is_sequence.hpp │ │ │ ├── iter_fold.hpp │ │ │ ├── iter_fold_if.hpp │ │ │ ├── iterator_category.hpp │ │ │ ├── iterator_range.hpp │ │ │ ├── iterator_tags.hpp │ │ │ ├── joint_view.hpp │ │ │ ├── key_type.hpp │ │ │ ├── key_type_fwd.hpp │ │ │ ├── lambda.hpp │ │ │ ├── lambda_fwd.hpp │ │ │ ├── less.hpp │ │ │ ├── less_equal.hpp │ │ │ ├── limits │ │ │ │ ├── arity.hpp │ │ │ │ ├── list.hpp │ │ │ │ ├── map.hpp │ │ │ │ ├── set.hpp │ │ │ │ ├── string.hpp │ │ │ │ ├── unrolling.hpp │ │ │ │ └── vector.hpp │ │ │ ├── list.hpp │ │ │ ├── list │ │ │ │ ├── aux_ │ │ │ │ │ ├── O1_size.hpp │ │ │ │ │ ├── begin_end.hpp │ │ │ │ │ ├── clear.hpp │ │ │ │ │ ├── empty.hpp │ │ │ │ │ ├── front.hpp │ │ │ │ │ ├── include_preprocessed.hpp │ │ │ │ │ ├── item.hpp │ │ │ │ │ ├── iterator.hpp │ │ │ │ │ ├── numbered.hpp │ │ │ │ │ ├── numbered_c.hpp │ │ │ │ │ ├── pop_front.hpp │ │ │ │ │ ├── preprocessed │ │ │ │ │ │ └── plain │ │ │ │ │ │ │ ├── list10.hpp │ │ │ │ │ │ │ ├── list10_c.hpp │ │ │ │ │ │ │ ├── list20.hpp │ │ │ │ │ │ │ ├── list20_c.hpp │ │ │ │ │ │ │ ├── list30.hpp │ │ │ │ │ │ │ ├── list30_c.hpp │ │ │ │ │ │ │ ├── list40.hpp │ │ │ │ │ │ │ ├── list40_c.hpp │ │ │ │ │ │ │ ├── list50.hpp │ │ │ │ │ │ │ └── list50_c.hpp │ │ │ │ │ ├── push_back.hpp │ │ │ │ │ ├── push_front.hpp │ │ │ │ │ ├── size.hpp │ │ │ │ │ └── tag.hpp │ │ │ │ ├── list0.hpp │ │ │ │ ├── list0_c.hpp │ │ │ │ ├── list10.hpp │ │ │ │ ├── list10_c.hpp │ │ │ │ ├── list20.hpp │ │ │ │ ├── list20_c.hpp │ │ │ │ ├── list30.hpp │ │ │ │ ├── list30_c.hpp │ │ │ │ ├── list40.hpp │ │ │ │ ├── list40_c.hpp │ │ │ │ ├── list50.hpp │ │ │ │ └── list50_c.hpp │ │ │ ├── list_c.hpp │ │ │ ├── logical.hpp │ │ │ ├── long.hpp │ │ │ ├── long_fwd.hpp │ │ │ ├── lower_bound.hpp │ │ │ ├── map.hpp │ │ │ ├── map │ │ │ │ ├── aux_ │ │ │ │ │ ├── at_impl.hpp │ │ │ │ │ ├── begin_end_impl.hpp │ │ │ │ │ ├── clear_impl.hpp │ │ │ │ │ ├── contains_impl.hpp │ │ │ │ │ ├── empty_impl.hpp │ │ │ │ │ ├── erase_impl.hpp │ │ │ │ │ ├── erase_key_impl.hpp │ │ │ │ │ ├── has_key_impl.hpp │ │ │ │ │ ├── include_preprocessed.hpp │ │ │ │ │ ├── insert_impl.hpp │ │ │ │ │ ├── insert_range_impl.hpp │ │ │ │ │ ├── item.hpp │ │ │ │ │ ├── iterator.hpp │ │ │ │ │ ├── key_type_impl.hpp │ │ │ │ │ ├── map0.hpp │ │ │ │ │ ├── numbered.hpp │ │ │ │ │ ├── preprocessed │ │ │ │ │ │ ├── no_ctps │ │ │ │ │ │ │ ├── map10.hpp │ │ │ │ │ │ │ ├── map20.hpp │ │ │ │ │ │ │ ├── map30.hpp │ │ │ │ │ │ │ ├── map40.hpp │ │ │ │ │ │ │ └── map50.hpp │ │ │ │ │ │ ├── plain │ │ │ │ │ │ │ ├── map10.hpp │ │ │ │ │ │ │ ├── map20.hpp │ │ │ │ │ │ │ ├── map30.hpp │ │ │ │ │ │ │ ├── map40.hpp │ │ │ │ │ │ │ └── map50.hpp │ │ │ │ │ │ └── typeof_based │ │ │ │ │ │ │ ├── map10.hpp │ │ │ │ │ │ │ ├── map20.hpp │ │ │ │ │ │ │ ├── map30.hpp │ │ │ │ │ │ │ ├── map40.hpp │ │ │ │ │ │ │ └── map50.hpp │ │ │ │ │ ├── size_impl.hpp │ │ │ │ │ ├── tag.hpp │ │ │ │ │ └── value_type_impl.hpp │ │ │ │ ├── map0.hpp │ │ │ │ ├── map10.hpp │ │ │ │ ├── map20.hpp │ │ │ │ ├── map30.hpp │ │ │ │ ├── map40.hpp │ │ │ │ └── map50.hpp │ │ │ ├── math │ │ │ │ ├── fixed_c.hpp │ │ │ │ ├── is_even.hpp │ │ │ │ └── rational_c.hpp │ │ │ ├── max.hpp │ │ │ ├── max_element.hpp │ │ │ ├── min.hpp │ │ │ ├── min_element.hpp │ │ │ ├── min_max.hpp │ │ │ ├── minus.hpp │ │ │ ├── modulus.hpp │ │ │ ├── multiplies.hpp │ │ │ ├── multiset │ │ │ │ ├── aux_ │ │ │ │ │ ├── count_impl.hpp │ │ │ │ │ ├── insert_impl.hpp │ │ │ │ │ ├── item.hpp │ │ │ │ │ ├── multiset0.hpp │ │ │ │ │ └── tag.hpp │ │ │ │ └── multiset0.hpp │ │ │ ├── negate.hpp │ │ │ ├── next.hpp │ │ │ ├── next_prior.hpp │ │ │ ├── not.hpp │ │ │ ├── not_equal_to.hpp │ │ │ ├── numeric_cast.hpp │ │ │ ├── or.hpp │ │ │ ├── order.hpp │ │ │ ├── order_fwd.hpp │ │ │ ├── pair.hpp │ │ │ ├── pair_view.hpp │ │ │ ├── partition.hpp │ │ │ ├── placeholders.hpp │ │ │ ├── plus.hpp │ │ │ ├── pop_back.hpp │ │ │ ├── pop_back_fwd.hpp │ │ │ ├── pop_front.hpp │ │ │ ├── pop_front_fwd.hpp │ │ │ ├── print.hpp │ │ │ ├── prior.hpp │ │ │ ├── protect.hpp │ │ │ ├── push_back.hpp │ │ │ ├── push_back_fwd.hpp │ │ │ ├── push_front.hpp │ │ │ ├── push_front_fwd.hpp │ │ │ ├── quote.hpp │ │ │ ├── range_c.hpp │ │ │ ├── remove.hpp │ │ │ ├── remove_if.hpp │ │ │ ├── replace.hpp │ │ │ ├── replace_if.hpp │ │ │ ├── reverse.hpp │ │ │ ├── reverse_fold.hpp │ │ │ ├── reverse_iter_fold.hpp │ │ │ ├── same_as.hpp │ │ │ ├── sequence_tag.hpp │ │ │ ├── sequence_tag_fwd.hpp │ │ │ ├── set.hpp │ │ │ ├── set │ │ │ │ ├── aux_ │ │ │ │ │ ├── at_impl.hpp │ │ │ │ │ ├── begin_end_impl.hpp │ │ │ │ │ ├── clear_impl.hpp │ │ │ │ │ ├── empty_impl.hpp │ │ │ │ │ ├── erase_impl.hpp │ │ │ │ │ ├── erase_key_impl.hpp │ │ │ │ │ ├── has_key_impl.hpp │ │ │ │ │ ├── include_preprocessed.hpp │ │ │ │ │ ├── insert_impl.hpp │ │ │ │ │ ├── insert_range_impl.hpp │ │ │ │ │ ├── item.hpp │ │ │ │ │ ├── iterator.hpp │ │ │ │ │ ├── key_type_impl.hpp │ │ │ │ │ ├── numbered.hpp │ │ │ │ │ ├── numbered_c.hpp │ │ │ │ │ ├── preprocessed │ │ │ │ │ │ └── plain │ │ │ │ │ │ │ ├── set10.hpp │ │ │ │ │ │ │ ├── set10_c.hpp │ │ │ │ │ │ │ ├── set20.hpp │ │ │ │ │ │ │ ├── set20_c.hpp │ │ │ │ │ │ │ ├── set30.hpp │ │ │ │ │ │ │ ├── set30_c.hpp │ │ │ │ │ │ │ ├── set40.hpp │ │ │ │ │ │ │ ├── set40_c.hpp │ │ │ │ │ │ │ ├── set50.hpp │ │ │ │ │ │ │ └── set50_c.hpp │ │ │ │ │ ├── set0.hpp │ │ │ │ │ ├── size_impl.hpp │ │ │ │ │ ├── tag.hpp │ │ │ │ │ └── value_type_impl.hpp │ │ │ │ ├── set0.hpp │ │ │ │ ├── set0_c.hpp │ │ │ │ ├── set10.hpp │ │ │ │ ├── set10_c.hpp │ │ │ │ ├── set20.hpp │ │ │ │ ├── set20_c.hpp │ │ │ │ ├── set30.hpp │ │ │ │ ├── set30_c.hpp │ │ │ │ ├── set40.hpp │ │ │ │ ├── set40_c.hpp │ │ │ │ ├── set50.hpp │ │ │ │ └── set50_c.hpp │ │ │ ├── set_c.hpp │ │ │ ├── shift_left.hpp │ │ │ ├── shift_right.hpp │ │ │ ├── single_view.hpp │ │ │ ├── size.hpp │ │ │ ├── size_fwd.hpp │ │ │ ├── size_t.hpp │ │ │ ├── size_t_fwd.hpp │ │ │ ├── sizeof.hpp │ │ │ ├── sort.hpp │ │ │ ├── stable_partition.hpp │ │ │ ├── string.hpp │ │ │ ├── switch.hpp │ │ │ ├── tag.hpp │ │ │ ├── times.hpp │ │ │ ├── transform.hpp │ │ │ ├── transform_view.hpp │ │ │ ├── unique.hpp │ │ │ ├── unpack_args.hpp │ │ │ ├── upper_bound.hpp │ │ │ ├── value_type.hpp │ │ │ ├── value_type_fwd.hpp │ │ │ ├── vector.hpp │ │ │ ├── vector │ │ │ │ ├── aux_ │ │ │ │ │ ├── O1_size.hpp │ │ │ │ │ ├── at.hpp │ │ │ │ │ ├── back.hpp │ │ │ │ │ ├── begin_end.hpp │ │ │ │ │ ├── clear.hpp │ │ │ │ │ ├── empty.hpp │ │ │ │ │ ├── front.hpp │ │ │ │ │ ├── include_preprocessed.hpp │ │ │ │ │ ├── item.hpp │ │ │ │ │ ├── iterator.hpp │ │ │ │ │ ├── numbered.hpp │ │ │ │ │ ├── numbered_c.hpp │ │ │ │ │ ├── pop_back.hpp │ │ │ │ │ ├── pop_front.hpp │ │ │ │ │ ├── preprocessed │ │ │ │ │ │ ├── no_ctps │ │ │ │ │ │ │ ├── vector10.hpp │ │ │ │ │ │ │ ├── vector10_c.hpp │ │ │ │ │ │ │ ├── vector20.hpp │ │ │ │ │ │ │ ├── vector20_c.hpp │ │ │ │ │ │ │ ├── vector30.hpp │ │ │ │ │ │ │ ├── vector30_c.hpp │ │ │ │ │ │ │ ├── vector40.hpp │ │ │ │ │ │ │ ├── vector40_c.hpp │ │ │ │ │ │ │ ├── vector50.hpp │ │ │ │ │ │ │ └── vector50_c.hpp │ │ │ │ │ │ ├── plain │ │ │ │ │ │ │ ├── vector10.hpp │ │ │ │ │ │ │ ├── vector10_c.hpp │ │ │ │ │ │ │ ├── vector20.hpp │ │ │ │ │ │ │ ├── vector20_c.hpp │ │ │ │ │ │ │ ├── vector30.hpp │ │ │ │ │ │ │ ├── vector30_c.hpp │ │ │ │ │ │ │ ├── vector40.hpp │ │ │ │ │ │ │ ├── vector40_c.hpp │ │ │ │ │ │ │ ├── vector50.hpp │ │ │ │ │ │ │ └── vector50_c.hpp │ │ │ │ │ │ └── typeof_based │ │ │ │ │ │ │ ├── vector10.hpp │ │ │ │ │ │ │ ├── vector10_c.hpp │ │ │ │ │ │ │ ├── vector20.hpp │ │ │ │ │ │ │ ├── vector20_c.hpp │ │ │ │ │ │ │ ├── vector30.hpp │ │ │ │ │ │ │ ├── vector30_c.hpp │ │ │ │ │ │ │ ├── vector40.hpp │ │ │ │ │ │ │ ├── vector40_c.hpp │ │ │ │ │ │ │ ├── vector50.hpp │ │ │ │ │ │ │ └── vector50_c.hpp │ │ │ │ │ ├── push_back.hpp │ │ │ │ │ ├── push_front.hpp │ │ │ │ │ ├── size.hpp │ │ │ │ │ ├── tag.hpp │ │ │ │ │ └── vector0.hpp │ │ │ │ ├── vector0.hpp │ │ │ │ ├── vector0_c.hpp │ │ │ │ ├── vector10.hpp │ │ │ │ ├── vector10_c.hpp │ │ │ │ ├── vector20.hpp │ │ │ │ ├── vector20_c.hpp │ │ │ │ ├── vector30.hpp │ │ │ │ ├── vector30_c.hpp │ │ │ │ ├── vector40.hpp │ │ │ │ ├── vector40_c.hpp │ │ │ │ ├── vector50.hpp │ │ │ │ └── vector50_c.hpp │ │ │ ├── vector_c.hpp │ │ │ ├── void.hpp │ │ │ ├── void_fwd.hpp │ │ │ └── zip_view.hpp │ │ ├── next_prior.hpp │ │ ├── noncopyable.hpp │ │ ├── operators.hpp │ │ ├── predef.h │ │ ├── predef │ │ │ ├── architecture.h │ │ │ ├── architecture │ │ │ │ ├── alpha.h │ │ │ │ ├── arm.h │ │ │ │ ├── blackfin.h │ │ │ │ ├── convex.h │ │ │ │ ├── ia64.h │ │ │ │ ├── m68k.h │ │ │ │ ├── mips.h │ │ │ │ ├── parisc.h │ │ │ │ ├── ppc.h │ │ │ │ ├── pyramid.h │ │ │ │ ├── rs6k.h │ │ │ │ ├── sparc.h │ │ │ │ ├── superh.h │ │ │ │ ├── sys370.h │ │ │ │ ├── sys390.h │ │ │ │ ├── x86.h │ │ │ │ ├── x86 │ │ │ │ │ ├── 32.h │ │ │ │ │ └── 64.h │ │ │ │ └── z.h │ │ │ ├── compiler.h │ │ │ ├── compiler │ │ │ │ ├── borland.h │ │ │ │ ├── clang.h │ │ │ │ ├── comeau.h │ │ │ │ ├── compaq.h │ │ │ │ ├── diab.h │ │ │ │ ├── digitalmars.h │ │ │ │ ├── dignus.h │ │ │ │ ├── edg.h │ │ │ │ ├── ekopath.h │ │ │ │ ├── gcc.h │ │ │ │ ├── gcc_xml.h │ │ │ │ ├── greenhills.h │ │ │ │ ├── hp_acc.h │ │ │ │ ├── iar.h │ │ │ │ ├── ibm.h │ │ │ │ ├── intel.h │ │ │ │ ├── kai.h │ │ │ │ ├── llvm.h │ │ │ │ ├── metaware.h │ │ │ │ ├── metrowerks.h │ │ │ │ ├── microtec.h │ │ │ │ ├── mpw.h │ │ │ │ ├── palm.h │ │ │ │ ├── pgi.h │ │ │ │ ├── sgi_mipspro.h │ │ │ │ ├── sunpro.h │ │ │ │ ├── tendra.h │ │ │ │ ├── visualc.h │ │ │ │ └── watcom.h │ │ │ ├── detail │ │ │ │ ├── _cassert.h │ │ │ │ ├── _exception.h │ │ │ │ ├── comp_detected.h │ │ │ │ ├── endian_compat.h │ │ │ │ ├── os_detected.h │ │ │ │ ├── platform_detected.h │ │ │ │ ├── test.h │ │ │ │ └── test_def.h │ │ │ ├── hardware.h │ │ │ ├── hardware │ │ │ │ ├── simd.h │ │ │ │ └── simd │ │ │ │ │ ├── arm.h │ │ │ │ │ ├── arm │ │ │ │ │ └── versions.h │ │ │ │ │ ├── ppc.h │ │ │ │ │ ├── ppc │ │ │ │ │ └── versions.h │ │ │ │ │ ├── x86.h │ │ │ │ │ ├── x86 │ │ │ │ │ └── versions.h │ │ │ │ │ ├── x86_amd.h │ │ │ │ │ └── x86_amd │ │ │ │ │ └── versions.h │ │ │ ├── language.h │ │ │ ├── language │ │ │ │ ├── objc.h │ │ │ │ ├── stdc.h │ │ │ │ └── stdcpp.h │ │ │ ├── library.h │ │ │ ├── library │ │ │ │ ├── c.h │ │ │ │ ├── c │ │ │ │ │ ├── _prefix.h │ │ │ │ │ ├── gnu.h │ │ │ │ │ ├── uc.h │ │ │ │ │ ├── vms.h │ │ │ │ │ └── zos.h │ │ │ │ ├── std.h │ │ │ │ └── std │ │ │ │ │ ├── _prefix.h │ │ │ │ │ ├── cxx.h │ │ │ │ │ ├── dinkumware.h │ │ │ │ │ ├── libcomo.h │ │ │ │ │ ├── modena.h │ │ │ │ │ ├── msl.h │ │ │ │ │ ├── roguewave.h │ │ │ │ │ ├── sgi.h │ │ │ │ │ ├── stdcpp3.h │ │ │ │ │ ├── stlport.h │ │ │ │ │ └── vacpp.h │ │ │ ├── make.h │ │ │ ├── os.h │ │ │ ├── os │ │ │ │ ├── aix.h │ │ │ │ ├── amigaos.h │ │ │ │ ├── android.h │ │ │ │ ├── beos.h │ │ │ │ ├── bsd.h │ │ │ │ ├── bsd │ │ │ │ │ ├── bsdi.h │ │ │ │ │ ├── dragonfly.h │ │ │ │ │ ├── free.h │ │ │ │ │ ├── net.h │ │ │ │ │ └── open.h │ │ │ │ ├── cygwin.h │ │ │ │ ├── haiku.h │ │ │ │ ├── hpux.h │ │ │ │ ├── ios.h │ │ │ │ ├── irix.h │ │ │ │ ├── linux.h │ │ │ │ ├── macos.h │ │ │ │ ├── os400.h │ │ │ │ ├── qnxnto.h │ │ │ │ ├── solaris.h │ │ │ │ ├── unix.h │ │ │ │ ├── vms.h │ │ │ │ └── windows.h │ │ │ ├── other.h │ │ │ ├── other │ │ │ │ └── endian.h │ │ │ ├── platform.h │ │ │ ├── platform │ │ │ │ ├── mingw.h │ │ │ │ ├── windows_desktop.h │ │ │ │ ├── windows_phone.h │ │ │ │ ├── windows_runtime.h │ │ │ │ └── windows_store.h │ │ │ ├── version.h │ │ │ └── version_number.h │ │ ├── preprocessor │ │ │ ├── arithmetic.hpp │ │ │ ├── arithmetic │ │ │ │ ├── add.hpp │ │ │ │ ├── dec.hpp │ │ │ │ ├── detail │ │ │ │ │ └── div_base.hpp │ │ │ │ ├── div.hpp │ │ │ │ ├── inc.hpp │ │ │ │ ├── mod.hpp │ │ │ │ ├── mul.hpp │ │ │ │ └── sub.hpp │ │ │ ├── array.hpp │ │ │ ├── array │ │ │ │ ├── data.hpp │ │ │ │ ├── detail │ │ │ │ │ └── get_data.hpp │ │ │ │ ├── elem.hpp │ │ │ │ ├── enum.hpp │ │ │ │ ├── insert.hpp │ │ │ │ ├── pop_back.hpp │ │ │ │ ├── pop_front.hpp │ │ │ │ ├── push_back.hpp │ │ │ │ ├── push_front.hpp │ │ │ │ ├── remove.hpp │ │ │ │ ├── replace.hpp │ │ │ │ ├── reverse.hpp │ │ │ │ ├── size.hpp │ │ │ │ ├── to_list.hpp │ │ │ │ ├── to_seq.hpp │ │ │ │ └── to_tuple.hpp │ │ │ ├── assert_msg.hpp │ │ │ ├── cat.hpp │ │ │ ├── comma.hpp │ │ │ ├── comma_if.hpp │ │ │ ├── comparison.hpp │ │ │ ├── comparison │ │ │ │ ├── equal.hpp │ │ │ │ ├── greater.hpp │ │ │ │ ├── greater_equal.hpp │ │ │ │ ├── less.hpp │ │ │ │ ├── less_equal.hpp │ │ │ │ └── not_equal.hpp │ │ │ ├── config │ │ │ │ ├── config.hpp │ │ │ │ └── limits.hpp │ │ │ ├── control.hpp │ │ │ ├── control │ │ │ │ ├── deduce_d.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── dmc │ │ │ │ │ │ └── while.hpp │ │ │ │ │ ├── edg │ │ │ │ │ │ └── while.hpp │ │ │ │ │ ├── msvc │ │ │ │ │ │ └── while.hpp │ │ │ │ │ └── while.hpp │ │ │ │ ├── expr_if.hpp │ │ │ │ ├── expr_iif.hpp │ │ │ │ ├── if.hpp │ │ │ │ ├── iif.hpp │ │ │ │ └── while.hpp │ │ │ ├── debug.hpp │ │ │ ├── debug │ │ │ │ ├── assert.hpp │ │ │ │ ├── error.hpp │ │ │ │ └── line.hpp │ │ │ ├── dec.hpp │ │ │ ├── detail │ │ │ │ ├── auto_rec.hpp │ │ │ │ ├── check.hpp │ │ │ │ ├── dmc │ │ │ │ │ └── auto_rec.hpp │ │ │ │ ├── is_binary.hpp │ │ │ │ ├── is_nullary.hpp │ │ │ │ ├── is_unary.hpp │ │ │ │ ├── null.hpp │ │ │ │ └── split.hpp │ │ │ ├── empty.hpp │ │ │ ├── enum.hpp │ │ │ ├── enum_params.hpp │ │ │ ├── enum_params_with_a_default.hpp │ │ │ ├── enum_params_with_defaults.hpp │ │ │ ├── enum_shifted.hpp │ │ │ ├── enum_shifted_params.hpp │ │ │ ├── expand.hpp │ │ │ ├── expr_if.hpp │ │ │ ├── facilities.hpp │ │ │ ├── facilities │ │ │ │ ├── apply.hpp │ │ │ │ ├── detail │ │ │ │ │ └── is_empty.hpp │ │ │ │ ├── empty.hpp │ │ │ │ ├── expand.hpp │ │ │ │ ├── identity.hpp │ │ │ │ ├── intercept.hpp │ │ │ │ ├── is_1.hpp │ │ │ │ ├── is_empty.hpp │ │ │ │ ├── is_empty_or_1.hpp │ │ │ │ ├── is_empty_variadic.hpp │ │ │ │ └── overload.hpp │ │ │ ├── for.hpp │ │ │ ├── identity.hpp │ │ │ ├── if.hpp │ │ │ ├── inc.hpp │ │ │ ├── iterate.hpp │ │ │ ├── iteration.hpp │ │ │ ├── iteration │ │ │ │ ├── detail │ │ │ │ │ ├── bounds │ │ │ │ │ │ ├── lower1.hpp │ │ │ │ │ │ ├── lower2.hpp │ │ │ │ │ │ ├── lower3.hpp │ │ │ │ │ │ ├── lower4.hpp │ │ │ │ │ │ ├── lower5.hpp │ │ │ │ │ │ ├── upper1.hpp │ │ │ │ │ │ ├── upper2.hpp │ │ │ │ │ │ ├── upper3.hpp │ │ │ │ │ │ ├── upper4.hpp │ │ │ │ │ │ └── upper5.hpp │ │ │ │ │ ├── finish.hpp │ │ │ │ │ ├── iter │ │ │ │ │ │ ├── forward1.hpp │ │ │ │ │ │ ├── forward2.hpp │ │ │ │ │ │ ├── forward3.hpp │ │ │ │ │ │ ├── forward4.hpp │ │ │ │ │ │ ├── forward5.hpp │ │ │ │ │ │ ├── reverse1.hpp │ │ │ │ │ │ ├── reverse2.hpp │ │ │ │ │ │ ├── reverse3.hpp │ │ │ │ │ │ ├── reverse4.hpp │ │ │ │ │ │ └── reverse5.hpp │ │ │ │ │ ├── local.hpp │ │ │ │ │ ├── rlocal.hpp │ │ │ │ │ ├── self.hpp │ │ │ │ │ └── start.hpp │ │ │ │ ├── iterate.hpp │ │ │ │ ├── local.hpp │ │ │ │ └── self.hpp │ │ │ ├── library.hpp │ │ │ ├── limits.hpp │ │ │ ├── list.hpp │ │ │ ├── list │ │ │ │ ├── adt.hpp │ │ │ │ ├── append.hpp │ │ │ │ ├── at.hpp │ │ │ │ ├── cat.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── dmc │ │ │ │ │ │ └── fold_left.hpp │ │ │ │ │ ├── edg │ │ │ │ │ │ ├── fold_left.hpp │ │ │ │ │ │ └── fold_right.hpp │ │ │ │ │ ├── fold_left.hpp │ │ │ │ │ └── fold_right.hpp │ │ │ │ ├── enum.hpp │ │ │ │ ├── filter.hpp │ │ │ │ ├── first_n.hpp │ │ │ │ ├── fold_left.hpp │ │ │ │ ├── fold_right.hpp │ │ │ │ ├── for_each.hpp │ │ │ │ ├── for_each_i.hpp │ │ │ │ ├── for_each_product.hpp │ │ │ │ ├── rest_n.hpp │ │ │ │ ├── reverse.hpp │ │ │ │ ├── size.hpp │ │ │ │ ├── to_array.hpp │ │ │ │ ├── to_seq.hpp │ │ │ │ ├── to_tuple.hpp │ │ │ │ └── transform.hpp │ │ │ ├── logical.hpp │ │ │ ├── logical │ │ │ │ ├── and.hpp │ │ │ │ ├── bitand.hpp │ │ │ │ ├── bitnor.hpp │ │ │ │ ├── bitor.hpp │ │ │ │ ├── bitxor.hpp │ │ │ │ ├── bool.hpp │ │ │ │ ├── compl.hpp │ │ │ │ ├── nor.hpp │ │ │ │ ├── not.hpp │ │ │ │ ├── or.hpp │ │ │ │ └── xor.hpp │ │ │ ├── max.hpp │ │ │ ├── min.hpp │ │ │ ├── punctuation.hpp │ │ │ ├── punctuation │ │ │ │ ├── comma.hpp │ │ │ │ ├── comma_if.hpp │ │ │ │ ├── detail │ │ │ │ │ └── is_begin_parens.hpp │ │ │ │ ├── is_begin_parens.hpp │ │ │ │ ├── paren.hpp │ │ │ │ ├── paren_if.hpp │ │ │ │ └── remove_parens.hpp │ │ │ ├── repeat.hpp │ │ │ ├── repeat_2nd.hpp │ │ │ ├── repeat_3rd.hpp │ │ │ ├── repeat_from_to.hpp │ │ │ ├── repeat_from_to_2nd.hpp │ │ │ ├── repeat_from_to_3rd.hpp │ │ │ ├── repetition.hpp │ │ │ ├── repetition │ │ │ │ ├── deduce_r.hpp │ │ │ │ ├── deduce_z.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── dmc │ │ │ │ │ │ └── for.hpp │ │ │ │ │ ├── edg │ │ │ │ │ │ └── for.hpp │ │ │ │ │ ├── for.hpp │ │ │ │ │ └── msvc │ │ │ │ │ │ └── for.hpp │ │ │ │ ├── enum.hpp │ │ │ │ ├── enum_binary_params.hpp │ │ │ │ ├── enum_params.hpp │ │ │ │ ├── enum_params_with_a_default.hpp │ │ │ │ ├── enum_params_with_defaults.hpp │ │ │ │ ├── enum_shifted.hpp │ │ │ │ ├── enum_shifted_binary_params.hpp │ │ │ │ ├── enum_shifted_params.hpp │ │ │ │ ├── enum_trailing.hpp │ │ │ │ ├── enum_trailing_binary_params.hpp │ │ │ │ ├── enum_trailing_params.hpp │ │ │ │ ├── for.hpp │ │ │ │ ├── repeat.hpp │ │ │ │ └── repeat_from_to.hpp │ │ │ ├── selection.hpp │ │ │ ├── selection │ │ │ │ ├── max.hpp │ │ │ │ └── min.hpp │ │ │ ├── seq.hpp │ │ │ ├── seq │ │ │ │ ├── cat.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── binary_transform.hpp │ │ │ │ │ ├── is_empty.hpp │ │ │ │ │ └── split.hpp │ │ │ │ ├── elem.hpp │ │ │ │ ├── enum.hpp │ │ │ │ ├── filter.hpp │ │ │ │ ├── first_n.hpp │ │ │ │ ├── fold_left.hpp │ │ │ │ ├── fold_right.hpp │ │ │ │ ├── for_each.hpp │ │ │ │ ├── for_each_i.hpp │ │ │ │ ├── for_each_product.hpp │ │ │ │ ├── insert.hpp │ │ │ │ ├── pop_back.hpp │ │ │ │ ├── pop_front.hpp │ │ │ │ ├── push_back.hpp │ │ │ │ ├── push_front.hpp │ │ │ │ ├── remove.hpp │ │ │ │ ├── replace.hpp │ │ │ │ ├── rest_n.hpp │ │ │ │ ├── reverse.hpp │ │ │ │ ├── seq.hpp │ │ │ │ ├── size.hpp │ │ │ │ ├── subseq.hpp │ │ │ │ ├── to_array.hpp │ │ │ │ ├── to_list.hpp │ │ │ │ ├── to_tuple.hpp │ │ │ │ ├── transform.hpp │ │ │ │ └── variadic_seq_to_seq.hpp │ │ │ ├── slot.hpp │ │ │ ├── slot │ │ │ │ ├── counter.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── counter.hpp │ │ │ │ │ ├── def.hpp │ │ │ │ │ ├── shared.hpp │ │ │ │ │ ├── slot1.hpp │ │ │ │ │ ├── slot2.hpp │ │ │ │ │ ├── slot3.hpp │ │ │ │ │ ├── slot4.hpp │ │ │ │ │ └── slot5.hpp │ │ │ │ └── slot.hpp │ │ │ ├── stringize.hpp │ │ │ ├── tuple.hpp │ │ │ ├── tuple │ │ │ │ ├── detail │ │ │ │ │ └── is_single_return.hpp │ │ │ │ ├── eat.hpp │ │ │ │ ├── elem.hpp │ │ │ │ ├── enum.hpp │ │ │ │ ├── insert.hpp │ │ │ │ ├── pop_back.hpp │ │ │ │ ├── pop_front.hpp │ │ │ │ ├── push_back.hpp │ │ │ │ ├── push_front.hpp │ │ │ │ ├── rem.hpp │ │ │ │ ├── remove.hpp │ │ │ │ ├── replace.hpp │ │ │ │ ├── reverse.hpp │ │ │ │ ├── size.hpp │ │ │ │ ├── to_array.hpp │ │ │ │ ├── to_list.hpp │ │ │ │ └── to_seq.hpp │ │ │ ├── variadic.hpp │ │ │ ├── variadic │ │ │ │ ├── detail │ │ │ │ │ └── is_single_return.hpp │ │ │ │ ├── elem.hpp │ │ │ │ ├── size.hpp │ │ │ │ ├── to_array.hpp │ │ │ │ ├── to_list.hpp │ │ │ │ ├── to_seq.hpp │ │ │ │ └── to_tuple.hpp │ │ │ ├── while.hpp │ │ │ └── wstringize.hpp │ │ ├── range │ │ │ ├── adaptor │ │ │ │ ├── adjacent_filtered.hpp │ │ │ │ ├── argument_fwd.hpp │ │ │ │ ├── copied.hpp │ │ │ │ ├── define_adaptor.hpp │ │ │ │ ├── filtered.hpp │ │ │ │ ├── formatted.hpp │ │ │ │ ├── indexed.hpp │ │ │ │ ├── indirected.hpp │ │ │ │ ├── map.hpp │ │ │ │ ├── replaced.hpp │ │ │ │ ├── replaced_if.hpp │ │ │ │ ├── reversed.hpp │ │ │ │ ├── sliced.hpp │ │ │ │ ├── strided.hpp │ │ │ │ ├── tokenized.hpp │ │ │ │ ├── transformed.hpp │ │ │ │ ├── type_erased.hpp │ │ │ │ └── uniqued.hpp │ │ │ ├── adaptors.hpp │ │ │ ├── algorithm.hpp │ │ │ ├── algorithm │ │ │ │ ├── adjacent_find.hpp │ │ │ │ ├── binary_search.hpp │ │ │ │ ├── copy.hpp │ │ │ │ ├── copy_backward.hpp │ │ │ │ ├── count.hpp │ │ │ │ ├── count_if.hpp │ │ │ │ ├── equal.hpp │ │ │ │ ├── equal_range.hpp │ │ │ │ ├── fill.hpp │ │ │ │ ├── fill_n.hpp │ │ │ │ ├── find.hpp │ │ │ │ ├── find_end.hpp │ │ │ │ ├── find_first_of.hpp │ │ │ │ ├── find_if.hpp │ │ │ │ ├── for_each.hpp │ │ │ │ ├── generate.hpp │ │ │ │ ├── heap_algorithm.hpp │ │ │ │ ├── inplace_merge.hpp │ │ │ │ ├── lexicographical_compare.hpp │ │ │ │ ├── lower_bound.hpp │ │ │ │ ├── max_element.hpp │ │ │ │ ├── merge.hpp │ │ │ │ ├── min_element.hpp │ │ │ │ ├── mismatch.hpp │ │ │ │ ├── nth_element.hpp │ │ │ │ ├── partial_sort.hpp │ │ │ │ ├── partial_sort_copy.hpp │ │ │ │ ├── partition.hpp │ │ │ │ ├── permutation.hpp │ │ │ │ ├── random_shuffle.hpp │ │ │ │ ├── remove.hpp │ │ │ │ ├── remove_copy.hpp │ │ │ │ ├── remove_copy_if.hpp │ │ │ │ ├── remove_if.hpp │ │ │ │ ├── replace.hpp │ │ │ │ ├── replace_copy.hpp │ │ │ │ ├── replace_copy_if.hpp │ │ │ │ ├── replace_if.hpp │ │ │ │ ├── reverse.hpp │ │ │ │ ├── reverse_copy.hpp │ │ │ │ ├── rotate.hpp │ │ │ │ ├── rotate_copy.hpp │ │ │ │ ├── search.hpp │ │ │ │ ├── search_n.hpp │ │ │ │ ├── set_algorithm.hpp │ │ │ │ ├── sort.hpp │ │ │ │ ├── stable_partition.hpp │ │ │ │ ├── stable_sort.hpp │ │ │ │ ├── swap_ranges.hpp │ │ │ │ ├── transform.hpp │ │ │ │ ├── unique.hpp │ │ │ │ ├── unique_copy.hpp │ │ │ │ └── upper_bound.hpp │ │ │ ├── algorithm_ext.hpp │ │ │ ├── algorithm_ext │ │ │ │ ├── copy_n.hpp │ │ │ │ ├── erase.hpp │ │ │ │ ├── for_each.hpp │ │ │ │ ├── insert.hpp │ │ │ │ ├── iota.hpp │ │ │ │ ├── is_sorted.hpp │ │ │ │ ├── overwrite.hpp │ │ │ │ ├── push_back.hpp │ │ │ │ └── push_front.hpp │ │ │ ├── any_range.hpp │ │ │ ├── as_array.hpp │ │ │ ├── as_literal.hpp │ │ │ ├── atl.hpp │ │ │ ├── begin.hpp │ │ │ ├── category.hpp │ │ │ ├── combine.hpp │ │ │ ├── concepts.hpp │ │ │ ├── config.hpp │ │ │ ├── const_iterator.hpp │ │ │ ├── const_reverse_iterator.hpp │ │ │ ├── counting_range.hpp │ │ │ ├── detail │ │ │ │ ├── any_iterator.hpp │ │ │ │ ├── any_iterator_buffer.hpp │ │ │ │ ├── any_iterator_interface.hpp │ │ │ │ ├── any_iterator_wrapper.hpp │ │ │ │ ├── as_literal.hpp │ │ │ │ ├── begin.hpp │ │ │ │ ├── collection_traits.hpp │ │ │ │ ├── collection_traits_detail.hpp │ │ │ │ ├── combine_cxx03.hpp │ │ │ │ ├── combine_cxx11.hpp │ │ │ │ ├── combine_no_rvalue.hpp │ │ │ │ ├── combine_rvalue.hpp │ │ │ │ ├── common.hpp │ │ │ │ ├── default_constructible_unary_fn.hpp │ │ │ │ ├── demote_iterator_traversal_tag.hpp │ │ │ │ ├── detail_str.hpp │ │ │ │ ├── difference_type.hpp │ │ │ │ ├── empty.hpp │ │ │ │ ├── end.hpp │ │ │ │ ├── extract_optional_type.hpp │ │ │ │ ├── has_member_size.hpp │ │ │ │ ├── implementation_help.hpp │ │ │ │ ├── join_iterator.hpp │ │ │ │ ├── microsoft.hpp │ │ │ │ ├── misc_concept.hpp │ │ │ │ ├── msvc_has_iterator_workaround.hpp │ │ │ │ ├── range_return.hpp │ │ │ │ ├── remove_extent.hpp │ │ │ │ ├── safe_bool.hpp │ │ │ │ ├── sfinae.hpp │ │ │ │ ├── size_type.hpp │ │ │ │ ├── sizer.hpp │ │ │ │ ├── str_types.hpp │ │ │ │ └── value_type.hpp │ │ │ ├── difference_type.hpp │ │ │ ├── distance.hpp │ │ │ ├── empty.hpp │ │ │ ├── end.hpp │ │ │ ├── functions.hpp │ │ │ ├── has_range_iterator.hpp │ │ │ ├── irange.hpp │ │ │ ├── istream_range.hpp │ │ │ ├── iterator.hpp │ │ │ ├── iterator_range.hpp │ │ │ ├── iterator_range_core.hpp │ │ │ ├── iterator_range_hash.hpp │ │ │ ├── iterator_range_io.hpp │ │ │ ├── join.hpp │ │ │ ├── metafunctions.hpp │ │ │ ├── mfc.hpp │ │ │ ├── mfc_map.hpp │ │ │ ├── mutable_iterator.hpp │ │ │ ├── numeric.hpp │ │ │ ├── pointer.hpp │ │ │ ├── range_fwd.hpp │ │ │ ├── rbegin.hpp │ │ │ ├── reference.hpp │ │ │ ├── rend.hpp │ │ │ ├── result_iterator.hpp │ │ │ ├── reverse_iterator.hpp │ │ │ ├── reverse_result_iterator.hpp │ │ │ ├── size.hpp │ │ │ ├── size_type.hpp │ │ │ ├── sub_range.hpp │ │ │ ├── traversal.hpp │ │ │ └── value_type.hpp │ │ ├── ref.hpp │ │ ├── shared_ptr.hpp │ │ ├── smart_ptr │ │ │ ├── allocate_shared_array.hpp │ │ │ ├── bad_weak_ptr.hpp │ │ │ ├── detail │ │ │ │ ├── array_allocator.hpp │ │ │ │ ├── array_count_impl.hpp │ │ │ │ ├── array_traits.hpp │ │ │ │ ├── array_utility.hpp │ │ │ │ ├── atomic_count.hpp │ │ │ │ ├── atomic_count_gcc.hpp │ │ │ │ ├── atomic_count_gcc_x86.hpp │ │ │ │ ├── atomic_count_nt.hpp │ │ │ │ ├── atomic_count_pt.hpp │ │ │ │ ├── atomic_count_solaris.hpp │ │ │ │ ├── atomic_count_spin.hpp │ │ │ │ ├── atomic_count_std_atomic.hpp │ │ │ │ ├── atomic_count_sync.hpp │ │ │ │ ├── atomic_count_win32.hpp │ │ │ │ ├── lightweight_mutex.hpp │ │ │ │ ├── lwm_nop.hpp │ │ │ │ ├── lwm_pthreads.hpp │ │ │ │ ├── lwm_win32_cs.hpp │ │ │ │ ├── operator_bool.hpp │ │ │ │ ├── quick_allocator.hpp │ │ │ │ ├── shared_count.hpp │ │ │ │ ├── sp_convertible.hpp │ │ │ │ ├── sp_counted_base.hpp │ │ │ │ ├── sp_counted_base_acc_ia64.hpp │ │ │ │ ├── sp_counted_base_aix.hpp │ │ │ │ ├── sp_counted_base_clang.hpp │ │ │ │ ├── sp_counted_base_cw_ppc.hpp │ │ │ │ ├── sp_counted_base_cw_x86.hpp │ │ │ │ ├── sp_counted_base_gcc_ia64.hpp │ │ │ │ ├── sp_counted_base_gcc_mips.hpp │ │ │ │ ├── sp_counted_base_gcc_ppc.hpp │ │ │ │ ├── sp_counted_base_gcc_sparc.hpp │ │ │ │ ├── sp_counted_base_gcc_x86.hpp │ │ │ │ ├── sp_counted_base_nt.hpp │ │ │ │ ├── sp_counted_base_pt.hpp │ │ │ │ ├── sp_counted_base_snc_ps3.hpp │ │ │ │ ├── sp_counted_base_solaris.hpp │ │ │ │ ├── sp_counted_base_spin.hpp │ │ │ │ ├── sp_counted_base_std_atomic.hpp │ │ │ │ ├── sp_counted_base_sync.hpp │ │ │ │ ├── sp_counted_base_vacpp_ppc.hpp │ │ │ │ ├── sp_counted_base_w32.hpp │ │ │ │ ├── sp_counted_impl.hpp │ │ │ │ ├── sp_disable_deprecated.hpp │ │ │ │ ├── sp_forward.hpp │ │ │ │ ├── sp_has_sync.hpp │ │ │ │ ├── sp_if_array.hpp │ │ │ │ ├── sp_interlocked.hpp │ │ │ │ ├── sp_nullptr_t.hpp │ │ │ │ ├── spinlock.hpp │ │ │ │ ├── spinlock_gcc_arm.hpp │ │ │ │ ├── spinlock_nt.hpp │ │ │ │ ├── spinlock_pool.hpp │ │ │ │ ├── spinlock_pt.hpp │ │ │ │ ├── spinlock_std_atomic.hpp │ │ │ │ ├── spinlock_sync.hpp │ │ │ │ ├── spinlock_w32.hpp │ │ │ │ ├── up_if_array.hpp │ │ │ │ ├── up_if_not_array.hpp │ │ │ │ └── yield_k.hpp │ │ │ ├── enable_shared_from_raw.hpp │ │ │ ├── enable_shared_from_this.hpp │ │ │ ├── intrusive_ptr.hpp │ │ │ ├── intrusive_ref_counter.hpp │ │ │ ├── make_shared.hpp │ │ │ ├── make_shared_array.hpp │ │ │ ├── make_shared_object.hpp │ │ │ ├── make_unique.hpp │ │ │ ├── make_unique_array.hpp │ │ │ ├── make_unique_object.hpp │ │ │ ├── owner_less.hpp │ │ │ ├── scoped_array.hpp │ │ │ ├── scoped_ptr.hpp │ │ │ ├── shared_array.hpp │ │ │ ├── shared_ptr.hpp │ │ │ └── weak_ptr.hpp │ │ ├── static_assert.hpp │ │ ├── system │ │ │ ├── api_config.hpp │ │ │ ├── config.hpp │ │ │ ├── cygwin_error.hpp │ │ │ ├── detail │ │ │ │ ├── error_code.ipp │ │ │ │ └── local_free_on_destruction.hpp │ │ │ ├── error_code.hpp │ │ │ ├── linux_error.hpp │ │ │ ├── system_error.hpp │ │ │ └── windows_error.hpp │ │ ├── throw_exception.hpp │ │ ├── token_functions.hpp │ │ ├── token_iterator.hpp │ │ ├── tokenizer.hpp │ │ ├── type_traits │ │ │ ├── add_const.hpp │ │ │ ├── add_cv.hpp │ │ │ ├── add_lvalue_reference.hpp │ │ │ ├── add_pointer.hpp │ │ │ ├── add_reference.hpp │ │ │ ├── add_rvalue_reference.hpp │ │ │ ├── add_volatile.hpp │ │ │ ├── aligned_storage.hpp │ │ │ ├── alignment_of.hpp │ │ │ ├── alignment_traits.hpp │ │ │ ├── arithmetic_traits.hpp │ │ │ ├── array_traits.hpp │ │ │ ├── broken_compiler_spec.hpp │ │ │ ├── common_type.hpp │ │ │ ├── composite_traits.hpp │ │ │ ├── conditional.hpp │ │ │ ├── config.hpp │ │ │ ├── conversion_traits.hpp │ │ │ ├── copy_cv.hpp │ │ │ ├── cv_traits.hpp │ │ │ ├── decay.hpp │ │ │ ├── declval.hpp │ │ │ ├── detail │ │ │ │ ├── bool_trait_def.hpp │ │ │ │ ├── bool_trait_undef.hpp │ │ │ │ ├── common_arithmetic_type.hpp │ │ │ │ ├── common_type_impl.hpp │ │ │ │ ├── composite_member_pointer_type.hpp │ │ │ │ ├── composite_pointer_type.hpp │ │ │ │ ├── config.hpp │ │ │ │ ├── has_binary_operator.hpp │ │ │ │ ├── has_postfix_operator.hpp │ │ │ │ ├── has_prefix_operator.hpp │ │ │ │ ├── ice_and.hpp │ │ │ │ ├── ice_eq.hpp │ │ │ │ ├── ice_not.hpp │ │ │ │ ├── ice_or.hpp │ │ │ │ ├── is_function_ptr_helper.hpp │ │ │ │ ├── is_function_ptr_tester.hpp │ │ │ │ ├── is_mem_fun_pointer_impl.hpp │ │ │ │ ├── is_mem_fun_pointer_tester.hpp │ │ │ │ ├── mp_defer.hpp │ │ │ │ ├── template_arity_spec.hpp │ │ │ │ └── yes_no_type.hpp │ │ │ ├── extent.hpp │ │ │ ├── floating_point_promotion.hpp │ │ │ ├── function_traits.hpp │ │ │ ├── has_bit_and.hpp │ │ │ ├── has_bit_and_assign.hpp │ │ │ ├── has_bit_or.hpp │ │ │ ├── has_bit_or_assign.hpp │ │ │ ├── has_bit_xor.hpp │ │ │ ├── has_bit_xor_assign.hpp │ │ │ ├── has_complement.hpp │ │ │ ├── has_dereference.hpp │ │ │ ├── has_divides.hpp │ │ │ ├── has_divides_assign.hpp │ │ │ ├── has_equal_to.hpp │ │ │ ├── has_greater.hpp │ │ │ ├── has_greater_equal.hpp │ │ │ ├── has_left_shift.hpp │ │ │ ├── has_left_shift_assign.hpp │ │ │ ├── has_less.hpp │ │ │ ├── has_less_equal.hpp │ │ │ ├── has_logical_and.hpp │ │ │ ├── has_logical_not.hpp │ │ │ ├── has_logical_or.hpp │ │ │ ├── has_minus.hpp │ │ │ ├── has_minus_assign.hpp │ │ │ ├── has_modulus.hpp │ │ │ ├── has_modulus_assign.hpp │ │ │ ├── has_multiplies.hpp │ │ │ ├── has_multiplies_assign.hpp │ │ │ ├── has_negate.hpp │ │ │ ├── has_new_operator.hpp │ │ │ ├── has_not_equal_to.hpp │ │ │ ├── has_nothrow_assign.hpp │ │ │ ├── has_nothrow_constructor.hpp │ │ │ ├── has_nothrow_copy.hpp │ │ │ ├── has_nothrow_destructor.hpp │ │ │ ├── has_operator.hpp │ │ │ ├── has_plus.hpp │ │ │ ├── has_plus_assign.hpp │ │ │ ├── has_post_decrement.hpp │ │ │ ├── has_post_increment.hpp │ │ │ ├── has_pre_decrement.hpp │ │ │ ├── has_pre_increment.hpp │ │ │ ├── has_right_shift.hpp │ │ │ ├── has_right_shift_assign.hpp │ │ │ ├── has_trivial_assign.hpp │ │ │ ├── has_trivial_constructor.hpp │ │ │ ├── has_trivial_copy.hpp │ │ │ ├── has_trivial_destructor.hpp │ │ │ ├── has_trivial_move_assign.hpp │ │ │ ├── has_trivial_move_constructor.hpp │ │ │ ├── has_unary_minus.hpp │ │ │ ├── has_unary_plus.hpp │ │ │ ├── has_virtual_destructor.hpp │ │ │ ├── ice.hpp │ │ │ ├── integral_constant.hpp │ │ │ ├── integral_promotion.hpp │ │ │ ├── intrinsics.hpp │ │ │ ├── is_abstract.hpp │ │ │ ├── is_arithmetic.hpp │ │ │ ├── is_array.hpp │ │ │ ├── is_assignable.hpp │ │ │ ├── is_base_and_derived.hpp │ │ │ ├── is_base_of.hpp │ │ │ ├── is_base_of_tr1.hpp │ │ │ ├── is_class.hpp │ │ │ ├── is_complex.hpp │ │ │ ├── is_compound.hpp │ │ │ ├── is_const.hpp │ │ │ ├── is_constructible.hpp │ │ │ ├── is_convertible.hpp │ │ │ ├── is_copy_assignable.hpp │ │ │ ├── is_copy_constructible.hpp │ │ │ ├── is_default_constructible.hpp │ │ │ ├── is_destructible.hpp │ │ │ ├── is_empty.hpp │ │ │ ├── is_enum.hpp │ │ │ ├── is_final.hpp │ │ │ ├── is_float.hpp │ │ │ ├── is_floating_point.hpp │ │ │ ├── is_function.hpp │ │ │ ├── is_fundamental.hpp │ │ │ ├── is_integral.hpp │ │ │ ├── is_lvalue_reference.hpp │ │ │ ├── is_member_function_pointer.hpp │ │ │ ├── is_member_object_pointer.hpp │ │ │ ├── is_member_pointer.hpp │ │ │ ├── is_nothrow_move_assignable.hpp │ │ │ ├── is_nothrow_move_constructible.hpp │ │ │ ├── is_object.hpp │ │ │ ├── is_pod.hpp │ │ │ ├── is_pointer.hpp │ │ │ ├── is_polymorphic.hpp │ │ │ ├── is_reference.hpp │ │ │ ├── is_rvalue_reference.hpp │ │ │ ├── is_same.hpp │ │ │ ├── is_scalar.hpp │ │ │ ├── is_signed.hpp │ │ │ ├── is_stateless.hpp │ │ │ ├── is_union.hpp │ │ │ ├── is_unsigned.hpp │ │ │ ├── is_virtual_base_of.hpp │ │ │ ├── is_void.hpp │ │ │ ├── is_volatile.hpp │ │ │ ├── make_signed.hpp │ │ │ ├── make_unsigned.hpp │ │ │ ├── object_traits.hpp │ │ │ ├── promote.hpp │ │ │ ├── rank.hpp │ │ │ ├── reference_traits.hpp │ │ │ ├── remove_all_extents.hpp │ │ │ ├── remove_bounds.hpp │ │ │ ├── remove_const.hpp │ │ │ ├── remove_cv.hpp │ │ │ ├── remove_extent.hpp │ │ │ ├── remove_pointer.hpp │ │ │ ├── remove_reference.hpp │ │ │ ├── remove_volatile.hpp │ │ │ ├── same_traits.hpp │ │ │ ├── transform_traits.hpp │ │ │ ├── type_identity.hpp │ │ │ └── type_with_alignment.hpp │ │ ├── utility.hpp │ │ ├── utility │ │ │ ├── addressof.hpp │ │ │ ├── base_from_member.hpp │ │ │ ├── binary.hpp │ │ │ ├── compare_pointees.hpp │ │ │ ├── declval.hpp │ │ │ ├── detail │ │ │ │ ├── in_place_factory_prefix.hpp │ │ │ │ ├── in_place_factory_suffix.hpp │ │ │ │ └── result_of_iterate.hpp │ │ │ ├── empty_deleter.hpp │ │ │ ├── enable_if.hpp │ │ │ ├── explicit_operator_bool.hpp │ │ │ ├── identity_type.hpp │ │ │ ├── in_place_factory.hpp │ │ │ ├── result_of.hpp │ │ │ ├── string_ref.hpp │ │ │ ├── string_ref_fwd.hpp │ │ │ ├── swap.hpp │ │ │ ├── typed_in_place_factory.hpp │ │ │ └── value_init.hpp │ │ └── version.hpp │ └── boost_d.props ├── dlib │ ├── CMakeLists.txt │ ├── Debug │ │ ├── dlib.log │ │ ├── dlib.tlog │ │ │ ├── CL.command.1.tlog │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── Lib-link.read.1.tlog │ │ │ ├── Lib-link.write.1.tlog │ │ │ ├── dlib.lastbuildstate │ │ │ └── lib.command.1.tlog │ │ └── vc140.pdb │ ├── LICENSE.txt │ ├── README.txt │ ├── cmake_find_blas.txt │ ├── dlib.props │ ├── dlib.vcxproj │ ├── dlib.vcxproj.user │ ├── include │ │ └── dlib │ │ │ ├── add_python_module │ │ │ ├── algs.h │ │ │ ├── all │ │ │ └── source.cpp │ │ │ ├── all_console.cpp │ │ │ ├── all_gui.cpp │ │ │ ├── any.h │ │ │ ├── any │ │ │ ├── any.h │ │ │ ├── any_abstract.h │ │ │ ├── any_decision_function.h │ │ │ ├── any_decision_function_abstract.h │ │ │ ├── any_function.h │ │ │ ├── any_function_abstract.h │ │ │ ├── any_function_impl.h │ │ │ ├── any_function_impl2.h │ │ │ ├── any_trainer.h │ │ │ └── any_trainer_abstract.h │ │ │ ├── array.h │ │ │ ├── array │ │ │ ├── array_kernel.h │ │ │ ├── array_kernel_abstract.h │ │ │ ├── array_tools.h │ │ │ └── array_tools_abstract.h │ │ │ ├── array2d.h │ │ │ ├── array2d │ │ │ ├── array2d_generic_image.h │ │ │ ├── array2d_kernel.h │ │ │ ├── array2d_kernel_abstract.h │ │ │ └── serialize_pixel_overloads.h │ │ │ ├── assert.h │ │ │ ├── base64.h │ │ │ ├── base64 │ │ │ ├── base64_kernel_1.cpp │ │ │ ├── base64_kernel_1.h │ │ │ └── base64_kernel_abstract.h │ │ │ ├── bayes_utils.h │ │ │ ├── bayes_utils │ │ │ ├── bayes_utils.h │ │ │ └── bayes_utils_abstract.h │ │ │ ├── bigint.h │ │ │ ├── bigint │ │ │ ├── bigint_kernel_1.cpp │ │ │ ├── bigint_kernel_1.h │ │ │ ├── bigint_kernel_2.cpp │ │ │ ├── bigint_kernel_2.h │ │ │ ├── bigint_kernel_abstract.h │ │ │ └── bigint_kernel_c.h │ │ │ ├── binary_search_tree.h │ │ │ ├── binary_search_tree │ │ │ ├── binary_search_tree_kernel_1.h │ │ │ ├── binary_search_tree_kernel_2.h │ │ │ ├── binary_search_tree_kernel_abstract.h │ │ │ └── binary_search_tree_kernel_c.h │ │ │ ├── bit_stream.h │ │ │ ├── bit_stream │ │ │ ├── bit_stream_kernel_1.cpp │ │ │ ├── bit_stream_kernel_1.h │ │ │ ├── bit_stream_kernel_abstract.h │ │ │ ├── bit_stream_kernel_c.h │ │ │ ├── bit_stream_multi_1.h │ │ │ ├── bit_stream_multi_abstract.h │ │ │ └── bit_stream_multi_c.h │ │ │ ├── bound_function_pointer.h │ │ │ ├── bound_function_pointer │ │ │ ├── bound_function_pointer_kernel_1.h │ │ │ └── bound_function_pointer_kernel_abstract.h │ │ │ ├── bridge.h │ │ │ ├── bridge │ │ │ ├── bridge.h │ │ │ └── bridge_abstract.h │ │ │ ├── bsp.h │ │ │ ├── bsp │ │ │ ├── bsp.cpp │ │ │ ├── bsp.h │ │ │ └── bsp_abstract.h │ │ │ ├── byte_orderer.h │ │ │ ├── byte_orderer │ │ │ ├── byte_orderer_kernel_1.h │ │ │ └── byte_orderer_kernel_abstract.h │ │ │ ├── cassert │ │ │ ├── clustering.h │ │ │ ├── clustering │ │ │ ├── chinese_whispers.h │ │ │ ├── chinese_whispers_abstract.h │ │ │ ├── modularity_clustering.h │ │ │ └── modularity_clustering_abstract.h │ │ │ ├── cmake │ │ │ ├── cmd_line_parser.h │ │ │ ├── cmd_line_parser │ │ │ ├── cmd_line_parser_check_1.h │ │ │ ├── cmd_line_parser_check_c.h │ │ │ ├── cmd_line_parser_kernel_1.h │ │ │ ├── cmd_line_parser_kernel_abstract.h │ │ │ ├── cmd_line_parser_kernel_c.h │ │ │ ├── cmd_line_parser_print_1.h │ │ │ ├── get_option.h │ │ │ └── get_option_abstract.h │ │ │ ├── compress_stream.h │ │ │ ├── compress_stream │ │ │ ├── compress_stream_kernel_1.h │ │ │ ├── compress_stream_kernel_2.h │ │ │ ├── compress_stream_kernel_3.h │ │ │ └── compress_stream_kernel_abstract.h │ │ │ ├── conditioning_class.h │ │ │ ├── conditioning_class │ │ │ ├── conditioning_class_kernel_1.h │ │ │ ├── conditioning_class_kernel_2.h │ │ │ ├── conditioning_class_kernel_3.h │ │ │ ├── conditioning_class_kernel_4.h │ │ │ ├── conditioning_class_kernel_abstract.h │ │ │ └── conditioning_class_kernel_c.h │ │ │ ├── config.h │ │ │ ├── config_reader.h │ │ │ ├── config_reader │ │ │ ├── config_reader_kernel_1.h │ │ │ ├── config_reader_kernel_abstract.h │ │ │ ├── config_reader_thread_safe_1.h │ │ │ └── config_reader_thread_safe_abstract.h │ │ │ ├── console_progress_indicator.h │ │ │ ├── cpp_pretty_printer.h │ │ │ ├── cpp_pretty_printer │ │ │ ├── cpp_pretty_printer_kernel_1.h │ │ │ ├── cpp_pretty_printer_kernel_2.h │ │ │ └── cpp_pretty_printer_kernel_abstract.h │ │ │ ├── cpp_tokenizer.h │ │ │ ├── cpp_tokenizer │ │ │ ├── cpp_tokenizer_kernel_1.h │ │ │ ├── cpp_tokenizer_kernel_abstract.h │ │ │ └── cpp_tokenizer_kernel_c.h │ │ │ ├── crc32.h │ │ │ ├── crc32 │ │ │ ├── crc32_kernel_1.h │ │ │ └── crc32_kernel_abstract.h │ │ │ ├── cstring │ │ │ ├── data_io.h │ │ │ ├── data_io │ │ │ ├── image_dataset_metadata.cpp │ │ │ ├── image_dataset_metadata.h │ │ │ ├── libsvm_io.h │ │ │ ├── libsvm_io_abstract.h │ │ │ ├── load_image_dataset.h │ │ │ └── load_image_dataset_abstract.h │ │ │ ├── dir_nav.h │ │ │ ├── dir_nav │ │ │ ├── dir_nav_extensions.cpp │ │ │ ├── dir_nav_extensions.h │ │ │ ├── dir_nav_extensions_abstract.h │ │ │ ├── dir_nav_kernel_1.cpp │ │ │ ├── dir_nav_kernel_1.h │ │ │ ├── dir_nav_kernel_2.cpp │ │ │ ├── dir_nav_kernel_2.h │ │ │ ├── dir_nav_kernel_abstract.h │ │ │ ├── posix.h │ │ │ └── windows.h │ │ │ ├── directed_graph.h │ │ │ ├── directed_graph │ │ │ ├── directed_graph_kernel_1.h │ │ │ └── directed_graph_kernel_abstract.h │ │ │ ├── disjoint_subsets.h │ │ │ ├── disjoint_subsets │ │ │ ├── disjoint_subsets.h │ │ │ └── disjoint_subsets_abstract.h │ │ │ ├── dlib_include_path_tutorial.txt │ │ │ ├── enable_if.h │ │ │ ├── entropy_decoder.h │ │ │ ├── entropy_decoder │ │ │ ├── entropy_decoder_kernel_1.cpp │ │ │ ├── entropy_decoder_kernel_1.h │ │ │ ├── entropy_decoder_kernel_2.cpp │ │ │ ├── entropy_decoder_kernel_2.h │ │ │ ├── entropy_decoder_kernel_abstract.h │ │ │ └── entropy_decoder_kernel_c.h │ │ │ ├── entropy_decoder_model.h │ │ │ ├── entropy_decoder_model │ │ │ ├── entropy_decoder_model_kernel_1.h │ │ │ ├── entropy_decoder_model_kernel_2.h │ │ │ ├── entropy_decoder_model_kernel_3.h │ │ │ ├── entropy_decoder_model_kernel_4.h │ │ │ ├── entropy_decoder_model_kernel_5.h │ │ │ ├── entropy_decoder_model_kernel_6.h │ │ │ └── entropy_decoder_model_kernel_abstract.h │ │ │ ├── entropy_encoder.h │ │ │ ├── entropy_encoder │ │ │ ├── entropy_encoder_kernel_1.cpp │ │ │ ├── entropy_encoder_kernel_1.h │ │ │ ├── entropy_encoder_kernel_2.cpp │ │ │ ├── entropy_encoder_kernel_2.h │ │ │ ├── entropy_encoder_kernel_abstract.h │ │ │ └── entropy_encoder_kernel_c.h │ │ │ ├── entropy_encoder_model.h │ │ │ ├── entropy_encoder_model │ │ │ ├── entropy_encoder_model_kernel_1.h │ │ │ ├── entropy_encoder_model_kernel_2.h │ │ │ ├── entropy_encoder_model_kernel_3.h │ │ │ ├── entropy_encoder_model_kernel_4.h │ │ │ ├── entropy_encoder_model_kernel_5.h │ │ │ ├── entropy_encoder_model_kernel_6.h │ │ │ ├── entropy_encoder_model_kernel_abstract.h │ │ │ └── entropy_encoder_model_kernel_c.h │ │ │ ├── error.h │ │ │ ├── filtering.h │ │ │ ├── filtering │ │ │ ├── kalman_filter.h │ │ │ ├── kalman_filter_abstract.h │ │ │ ├── rls_filter.h │ │ │ └── rls_filter_abstract.h │ │ │ ├── float_details.h │ │ │ ├── fstream │ │ │ ├── general_hash │ │ │ ├── count_bits.h │ │ │ ├── count_bits_abstract.h │ │ │ ├── general_hash.h │ │ │ ├── hash.h │ │ │ ├── hash_abstract.h │ │ │ ├── murmur_hash3.h │ │ │ ├── murmur_hash3_abstract.h │ │ │ ├── random_hashing.h │ │ │ └── random_hashing_abstract.h │ │ │ ├── geometry.h │ │ │ ├── geometry │ │ │ ├── border_enumerator.h │ │ │ ├── border_enumerator_abstract.h │ │ │ ├── point_transforms.h │ │ │ ├── point_transforms_abstract.h │ │ │ ├── rectangle.h │ │ │ ├── rectangle_abstract.h │ │ │ ├── vector.h │ │ │ └── vector_abstract.h │ │ │ ├── graph.h │ │ │ ├── graph │ │ │ ├── graph_kernel_1.h │ │ │ └── graph_kernel_abstract.h │ │ │ ├── graph_cuts.h │ │ │ ├── graph_cuts │ │ │ ├── find_max_factor_graph_potts.h │ │ │ ├── find_max_factor_graph_potts_abstract.h │ │ │ ├── general_flow_graph.h │ │ │ ├── general_potts_problem.h │ │ │ ├── graph_labeler.h │ │ │ ├── graph_labeler_abstract.h │ │ │ ├── min_cut.h │ │ │ └── min_cut_abstract.h │ │ │ ├── graph_utils.h │ │ │ ├── graph_utils │ │ │ ├── edge_list_graphs.h │ │ │ ├── edge_list_graphs_abstract.h │ │ │ ├── find_k_nearest_neighbors_lsh.h │ │ │ ├── find_k_nearest_neighbors_lsh_abstract.h │ │ │ ├── function_objects.h │ │ │ ├── function_objects_abstract.h │ │ │ ├── graph_utils.h │ │ │ ├── graph_utils_abstract.h │ │ │ ├── ordered_sample_pair.h │ │ │ ├── ordered_sample_pair_abstract.h │ │ │ ├── sample_pair.h │ │ │ └── sample_pair_abstract.h │ │ │ ├── graph_utils_threaded.h │ │ │ ├── gui_core.h │ │ │ ├── gui_core │ │ │ ├── gui_core_kernel_1.cpp │ │ │ ├── gui_core_kernel_1.h │ │ │ ├── gui_core_kernel_2.cpp │ │ │ ├── gui_core_kernel_2.h │ │ │ ├── gui_core_kernel_abstract.h │ │ │ ├── windows.h │ │ │ └── xlib.h │ │ │ ├── gui_widgets.h │ │ │ ├── gui_widgets │ │ │ ├── base_widgets.cpp │ │ │ ├── base_widgets.h │ │ │ ├── base_widgets_abstract.h │ │ │ ├── canvas_drawing.cpp │ │ │ ├── canvas_drawing.h │ │ │ ├── canvas_drawing_abstract.h │ │ │ ├── drawable.cpp │ │ │ ├── drawable.h │ │ │ ├── drawable_abstract.h │ │ │ ├── fonts.cpp │ │ │ ├── fonts.h │ │ │ ├── fonts_abstract.h │ │ │ ├── nativefont.h │ │ │ ├── style.cpp │ │ │ ├── style.h │ │ │ ├── style_abstract.h │ │ │ ├── widgets.cpp │ │ │ ├── widgets.h │ │ │ └── widgets_abstract.h │ │ │ ├── hash.h │ │ │ ├── hash_map.h │ │ │ ├── hash_map │ │ │ ├── hash_map_kernel_1.h │ │ │ ├── hash_map_kernel_abstract.h │ │ │ └── hash_map_kernel_c.h │ │ │ ├── hash_set.h │ │ │ ├── hash_set │ │ │ ├── hash_set_kernel_1.h │ │ │ ├── hash_set_kernel_abstract.h │ │ │ └── hash_set_kernel_c.h │ │ │ ├── hash_table.h │ │ │ ├── hash_table │ │ │ ├── hash_table_kernel_1.h │ │ │ ├── hash_table_kernel_2.h │ │ │ ├── hash_table_kernel_abstract.h │ │ │ └── hash_table_kernel_c.h │ │ │ ├── http_client │ │ │ ├── http_client.cpp │ │ │ ├── http_client.h │ │ │ └── http_client_abstract.h │ │ │ ├── image_io.h │ │ │ ├── image_keypoint.h │ │ │ ├── image_keypoint │ │ │ ├── binned_vector_feature_image.h │ │ │ ├── binned_vector_feature_image_abstract.h │ │ │ ├── build_separable_poly_filters.h │ │ │ ├── draw_surf_points.h │ │ │ ├── draw_surf_points_abstract.h │ │ │ ├── fine_hog_image.h │ │ │ ├── fine_hog_image_abstract.h │ │ │ ├── hashed_feature_image.h │ │ │ ├── hashed_feature_image_abstract.h │ │ │ ├── hessian_pyramid.h │ │ │ ├── hessian_pyramid_abstract.h │ │ │ ├── hog.h │ │ │ ├── hog_abstract.h │ │ │ ├── nearest_neighbor_feature_image.h │ │ │ ├── nearest_neighbor_feature_image_abstract.h │ │ │ ├── poly_image.h │ │ │ ├── poly_image_abstract.h │ │ │ ├── surf.h │ │ │ └── surf_abstract.h │ │ │ ├── image_loader │ │ │ ├── image_loader.h │ │ │ ├── image_loader_abstract.h │ │ │ ├── jpeg_loader.cpp │ │ │ ├── jpeg_loader.h │ │ │ ├── jpeg_loader_abstract.h │ │ │ ├── load_image.h │ │ │ ├── load_image_abstract.h │ │ │ ├── png_loader.cpp │ │ │ ├── png_loader.h │ │ │ └── png_loader_abstract.h │ │ │ ├── image_processing.h │ │ │ ├── image_processing │ │ │ ├── box_overlap_testing.h │ │ │ ├── box_overlap_testing_abstract.h │ │ │ ├── detection_template_tools.h │ │ │ ├── detection_template_tools_abstract.h │ │ │ ├── frontal_face_detector.h │ │ │ ├── frontal_face_detector_abstract.h │ │ │ ├── full_object_detection.h │ │ │ ├── full_object_detection_abstract.h │ │ │ ├── generic_image.h │ │ │ ├── object_detector.h │ │ │ ├── object_detector_abstract.h │ │ │ ├── remove_unobtainable_rectangles.h │ │ │ ├── remove_unobtainable_rectangles_abstract.h │ │ │ ├── render_face_detections.h │ │ │ ├── render_face_detections_abstract.h │ │ │ ├── scan_fhog_pyramid.h │ │ │ ├── scan_fhog_pyramid_abstract.h │ │ │ ├── scan_image.h │ │ │ ├── scan_image_abstract.h │ │ │ ├── scan_image_boxes.h │ │ │ ├── scan_image_boxes_abstract.h │ │ │ ├── scan_image_custom.h │ │ │ ├── scan_image_custom_abstract.h │ │ │ ├── scan_image_pyramid.h │ │ │ ├── scan_image_pyramid_abstract.h │ │ │ ├── scan_image_pyramid_tools.h │ │ │ ├── scan_image_pyramid_tools_abstract.h │ │ │ ├── setup_hashed_features.h │ │ │ ├── setup_hashed_features_abstract.h │ │ │ ├── shape_predictor.h │ │ │ └── shape_predictor_abstract.h │ │ │ ├── image_saver │ │ │ ├── dng_shared.h │ │ │ ├── image_saver.h │ │ │ ├── image_saver_abstract.h │ │ │ ├── save_png.cpp │ │ │ ├── save_png.h │ │ │ └── save_png_abstract.h │ │ │ ├── image_transforms.h │ │ │ ├── image_transforms │ │ │ ├── assign_image.h │ │ │ ├── assign_image_abstract.h │ │ │ ├── colormaps.h │ │ │ ├── colormaps_abstract.h │ │ │ ├── draw.h │ │ │ ├── draw_abstract.h │ │ │ ├── edge_detector.h │ │ │ ├── edge_detector_abstract.h │ │ │ ├── equalize_histogram.h │ │ │ ├── equalize_histogram_abstract.h │ │ │ ├── fhog.h │ │ │ ├── fhog_abstract.h │ │ │ ├── image_pyramid.h │ │ │ ├── image_pyramid_abstract.h │ │ │ ├── integral_image.h │ │ │ ├── integral_image_abstract.h │ │ │ ├── interpolation.h │ │ │ ├── interpolation_abstract.h │ │ │ ├── label_connected_blobs.h │ │ │ ├── label_connected_blobs_abstract.h │ │ │ ├── morphological_operations.h │ │ │ ├── morphological_operations_abstract.h │ │ │ ├── segment_image.h │ │ │ ├── segment_image_abstract.h │ │ │ ├── spatial_filtering.h │ │ │ ├── spatial_filtering_abstract.h │ │ │ ├── thresholding.h │ │ │ └── thresholding_abstract.h │ │ │ ├── interfaces │ │ │ ├── cmd_line_parser_option.h │ │ │ ├── enumerable.h │ │ │ ├── map_pair.h │ │ │ └── remover.h │ │ │ ├── iomanip │ │ │ ├── iosfwd │ │ │ ├── iosockstream.h │ │ │ ├── iosockstream │ │ │ ├── iosockstream.h │ │ │ └── iosockstream_abstract.h │ │ │ ├── iostream │ │ │ ├── is_kind.h │ │ │ ├── istream │ │ │ ├── linker.h │ │ │ ├── linker │ │ │ ├── linker_kernel_1.cpp │ │ │ ├── linker_kernel_1.h │ │ │ └── linker_kernel_abstract.h │ │ │ ├── locale │ │ │ ├── logger.h │ │ │ ├── logger │ │ │ ├── extra_logger_headers.cpp │ │ │ ├── extra_logger_headers.h │ │ │ ├── logger_config_file.cpp │ │ │ ├── logger_config_file.h │ │ │ ├── logger_kernel_1.cpp │ │ │ ├── logger_kernel_1.h │ │ │ └── logger_kernel_abstract.h │ │ │ ├── lsh.h │ │ │ ├── lsh │ │ │ ├── create_random_projection_hash.h │ │ │ ├── create_random_projection_hash_abstract.h │ │ │ ├── hashes.h │ │ │ ├── hashes_abstract.h │ │ │ ├── projection_hash.h │ │ │ └── projection_hash_abstract.h │ │ │ ├── lz77_buffer.h │ │ │ ├── lz77_buffer │ │ │ ├── lz77_buffer_kernel_1.h │ │ │ ├── lz77_buffer_kernel_2.h │ │ │ ├── lz77_buffer_kernel_abstract.h │ │ │ └── lz77_buffer_kernel_c.h │ │ │ ├── lzp_buffer.h │ │ │ ├── lzp_buffer │ │ │ ├── lzp_buffer_kernel_1.h │ │ │ ├── lzp_buffer_kernel_2.h │ │ │ ├── lzp_buffer_kernel_abstract.h │ │ │ └── lzp_buffer_kernel_c.h │ │ │ ├── manifold_regularization.h │ │ │ ├── manifold_regularization │ │ │ ├── linear_manifold_regularizer.h │ │ │ └── linear_manifold_regularizer_abstract.h │ │ │ ├── map.h │ │ │ ├── map │ │ │ ├── map_kernel_1.h │ │ │ ├── map_kernel_abstract.h │ │ │ └── map_kernel_c.h │ │ │ ├── matrix.h │ │ │ ├── matrix │ │ │ ├── cblas_constants.h │ │ │ ├── lapack │ │ │ │ ├── fortran_id.h │ │ │ │ ├── gees.h │ │ │ │ ├── geev.h │ │ │ │ ├── geqrf.h │ │ │ │ ├── gesdd.h │ │ │ │ ├── gesvd.h │ │ │ │ ├── getrf.h │ │ │ │ ├── ormqr.h │ │ │ │ ├── potrf.h │ │ │ │ ├── syev.h │ │ │ │ └── syevr.h │ │ │ ├── matrix.h │ │ │ ├── matrix_abstract.h │ │ │ ├── matrix_assign.h │ │ │ ├── matrix_assign_fwd.h │ │ │ ├── matrix_blas_bindings.h │ │ │ ├── matrix_cholesky.h │ │ │ ├── matrix_conj_trans.h │ │ │ ├── matrix_conv.h │ │ │ ├── matrix_conv_abstract.h │ │ │ ├── matrix_data_layout.h │ │ │ ├── matrix_data_layout_abstract.h │ │ │ ├── matrix_default_mul.h │ │ │ ├── matrix_eigenvalue.h │ │ │ ├── matrix_exp.h │ │ │ ├── matrix_exp_abstract.h │ │ │ ├── matrix_expressions.h │ │ │ ├── matrix_fft.h │ │ │ ├── matrix_fft_abstract.h │ │ │ ├── matrix_fwd.h │ │ │ ├── matrix_generic_image.h │ │ │ ├── matrix_la.h │ │ │ ├── matrix_la_abstract.h │ │ │ ├── matrix_lu.h │ │ │ ├── matrix_mat.h │ │ │ ├── matrix_mat_abstract.h │ │ │ ├── matrix_math_functions.h │ │ │ ├── matrix_math_functions_abstract.h │ │ │ ├── matrix_op.h │ │ │ ├── matrix_qr.h │ │ │ ├── matrix_read_from_istream.h │ │ │ ├── matrix_subexp.h │ │ │ ├── matrix_subexp_abstract.h │ │ │ ├── matrix_trsm.h │ │ │ ├── matrix_utilities.h │ │ │ ├── matrix_utilities_abstract.h │ │ │ ├── symmetric_matrix_cache.h │ │ │ └── symmetric_matrix_cache_abstract.h │ │ │ ├── md5.h │ │ │ ├── md5 │ │ │ ├── md5_kernel_1.cpp │ │ │ ├── md5_kernel_1.h │ │ │ └── md5_kernel_abstract.h │ │ │ ├── member_function_pointer.h │ │ │ ├── member_function_pointer │ │ │ ├── make_mfp.h │ │ │ ├── make_mfp_abstract.h │ │ │ ├── member_function_pointer_kernel_1.h │ │ │ └── member_function_pointer_kernel_abstract.h │ │ │ ├── memory_manager.h │ │ │ ├── memory_manager │ │ │ ├── memory_manager_kernel_1.h │ │ │ ├── memory_manager_kernel_2.h │ │ │ ├── memory_manager_kernel_3.h │ │ │ └── memory_manager_kernel_abstract.h │ │ │ ├── memory_manager_global.h │ │ │ ├── memory_manager_global │ │ │ ├── memory_manager_global_kernel_1.h │ │ │ └── memory_manager_global_kernel_abstract.h │ │ │ ├── memory_manager_stateless.h │ │ │ ├── memory_manager_stateless │ │ │ ├── memory_manager_stateless_kernel_1.h │ │ │ ├── memory_manager_stateless_kernel_2.h │ │ │ └── memory_manager_stateless_kernel_abstract.h │ │ │ ├── misc_api.h │ │ │ ├── misc_api │ │ │ ├── misc_api_kernel_1.cpp │ │ │ ├── misc_api_kernel_1.h │ │ │ ├── misc_api_kernel_2.cpp │ │ │ ├── misc_api_kernel_2.h │ │ │ ├── misc_api_kernel_abstract.h │ │ │ ├── misc_api_shared.h │ │ │ ├── posix.h │ │ │ └── windows.h │ │ │ ├── mlp.h │ │ │ ├── mlp │ │ │ ├── mlp_kernel_1.h │ │ │ ├── mlp_kernel_abstract.h │ │ │ └── mlp_kernel_c.h │ │ │ ├── noncopyable.h │ │ │ ├── numeric_constants.h │ │ │ ├── numerical_integration.h │ │ │ ├── numerical_integration │ │ │ ├── integrate_function_adapt_simpson.h │ │ │ └── integrate_function_adapt_simpson_abstract.h │ │ │ ├── opencv.h │ │ │ ├── opencv │ │ │ ├── cv_image.h │ │ │ ├── cv_image_abstract.h │ │ │ ├── to_open_cv.h │ │ │ └── to_open_cv_abstract.h │ │ │ ├── optimization.h │ │ │ ├── optimization │ │ │ ├── find_max_factor_graph_nmplp.h │ │ │ ├── find_max_factor_graph_nmplp_abstract.h │ │ │ ├── find_max_factor_graph_viterbi.h │ │ │ ├── find_max_factor_graph_viterbi_abstract.h │ │ │ ├── find_max_parse_cky.h │ │ │ ├── find_max_parse_cky_abstract.h │ │ │ ├── max_cost_assignment.h │ │ │ ├── max_cost_assignment_abstract.h │ │ │ ├── max_sum_submatrix.h │ │ │ ├── max_sum_submatrix_abstract.h │ │ │ ├── optimization.h │ │ │ ├── optimization_abstract.h │ │ │ ├── optimization_bobyqa.h │ │ │ ├── optimization_bobyqa_abstract.h │ │ │ ├── optimization_least_squares.h │ │ │ ├── optimization_least_squares_abstract.h │ │ │ ├── optimization_line_search.h │ │ │ ├── optimization_line_search_abstract.h │ │ │ ├── optimization_oca.h │ │ │ ├── optimization_oca_abstract.h │ │ │ ├── optimization_search_strategies.h │ │ │ ├── optimization_search_strategies_abstract.h │ │ │ ├── optimization_solve_qp2_using_smo.h │ │ │ ├── optimization_solve_qp2_using_smo_abstract.h │ │ │ ├── optimization_solve_qp3_using_smo.h │ │ │ ├── optimization_solve_qp3_using_smo_abstract.h │ │ │ ├── optimization_solve_qp_using_smo.h │ │ │ ├── optimization_solve_qp_using_smo_abstract.h │ │ │ ├── optimization_stop_strategies.h │ │ │ ├── optimization_stop_strategies_abstract.h │ │ │ ├── optimization_trust_region.h │ │ │ └── optimization_trust_region_abstract.h │ │ │ ├── ostream │ │ │ ├── pipe.h │ │ │ ├── pipe │ │ │ ├── pipe_kernel_1.h │ │ │ └── pipe_kernel_abstract.h │ │ │ ├── pixel.h │ │ │ ├── platform.h │ │ │ ├── python.h │ │ │ ├── python │ │ │ ├── boost_python_utils.h │ │ │ ├── numpy.h │ │ │ ├── numpy_image.h │ │ │ ├── pyassert.h │ │ │ └── serialize_pickle.h │ │ │ ├── quantum_computing.h │ │ │ ├── quantum_computing │ │ │ ├── quantum_computing.h │ │ │ └── quantum_computing_abstract.h │ │ │ ├── queue.h │ │ │ ├── queue │ │ │ ├── queue_kernel_1.h │ │ │ ├── queue_kernel_2.h │ │ │ ├── queue_kernel_abstract.h │ │ │ ├── queue_kernel_c.h │ │ │ ├── queue_sort_1.h │ │ │ └── queue_sort_abstract.h │ │ │ ├── rand.h │ │ │ ├── rand │ │ │ ├── mersenne_twister.h │ │ │ ├── rand_kernel_1.h │ │ │ └── rand_kernel_abstract.h │ │ │ ├── ref.h │ │ │ ├── reference_counter.h │ │ │ ├── reference_counter │ │ │ ├── reference_counter_kernel_1.h │ │ │ └── reference_counter_kernel_abstract.h │ │ │ ├── release_build_by_default │ │ │ ├── revision.h │ │ │ ├── sequence.h │ │ │ ├── sequence │ │ │ ├── sequence_compare_1.h │ │ │ ├── sequence_compare_abstract.h │ │ │ ├── sequence_kernel_1.h │ │ │ ├── sequence_kernel_2.h │ │ │ ├── sequence_kernel_abstract.h │ │ │ ├── sequence_kernel_c.h │ │ │ ├── sequence_sort_1.h │ │ │ ├── sequence_sort_2.h │ │ │ └── sequence_sort_abstract.h │ │ │ ├── serialize.h │ │ │ ├── server.h │ │ │ ├── server │ │ │ ├── server_http.cpp │ │ │ ├── server_http.h │ │ │ ├── server_http_abstract.h │ │ │ ├── server_iostream.cpp │ │ │ ├── server_iostream.h │ │ │ ├── server_iostream_abstract.h │ │ │ ├── server_kernel.cpp │ │ │ ├── server_kernel.h │ │ │ └── server_kernel_abstract.h │ │ │ ├── set.h │ │ │ ├── set │ │ │ ├── set_compare_1.h │ │ │ ├── set_compare_abstract.h │ │ │ ├── set_kernel_1.h │ │ │ ├── set_kernel_abstract.h │ │ │ └── set_kernel_c.h │ │ │ ├── set_utils.h │ │ │ ├── set_utils │ │ │ ├── set_utils.h │ │ │ └── set_utils_abstract.h │ │ │ ├── simd.h │ │ │ ├── simd │ │ │ ├── simd4f.h │ │ │ ├── simd4i.h │ │ │ ├── simd8f.h │ │ │ ├── simd8i.h │ │ │ └── simd_check.h │ │ │ ├── sliding_buffer.h │ │ │ ├── sliding_buffer │ │ │ ├── circular_buffer.h │ │ │ ├── circular_buffer_abstract.h │ │ │ ├── sliding_buffer_kernel_1.h │ │ │ ├── sliding_buffer_kernel_abstract.h │ │ │ └── sliding_buffer_kernel_c.h │ │ │ ├── smart_pointers.h │ │ │ ├── smart_pointers │ │ │ ├── scoped_ptr.h │ │ │ ├── scoped_ptr_abstract.h │ │ │ ├── shared_ptr.h │ │ │ ├── shared_ptr_abstract.h │ │ │ ├── shared_ptr_thread_safe.h │ │ │ ├── shared_ptr_thread_safe_abstract.h │ │ │ ├── weak_ptr.h │ │ │ └── weak_ptr_abstract.h │ │ │ ├── smart_pointers_thread_safe.h │ │ │ ├── sockets.h │ │ │ ├── sockets │ │ │ ├── posix.h │ │ │ ├── sockets_extensions.cpp │ │ │ ├── sockets_extensions.h │ │ │ ├── sockets_extensions_abstract.h │ │ │ ├── sockets_kernel_1.cpp │ │ │ ├── sockets_kernel_1.h │ │ │ ├── sockets_kernel_2.cpp │ │ │ ├── sockets_kernel_2.h │ │ │ ├── sockets_kernel_abstract.h │ │ │ └── windows.h │ │ │ ├── sockstreambuf.h │ │ │ ├── sockstreambuf │ │ │ ├── sockstreambuf.cpp │ │ │ ├── sockstreambuf.h │ │ │ ├── sockstreambuf_abstract.h │ │ │ ├── sockstreambuf_unbuffered.cpp │ │ │ └── sockstreambuf_unbuffered.h │ │ │ ├── sort.h │ │ │ ├── sparse_vector.h │ │ │ ├── sqlite.h │ │ │ ├── sqlite │ │ │ ├── sqlite.h │ │ │ ├── sqlite_abstract.h │ │ │ ├── sqlite_tools.h │ │ │ └── sqlite_tools_abstract.h │ │ │ ├── sstream │ │ │ ├── stack.h │ │ │ ├── stack │ │ │ ├── stack_kernel_1.h │ │ │ ├── stack_kernel_abstract.h │ │ │ └── stack_kernel_c.h │ │ │ ├── stack_trace.cpp │ │ │ ├── stack_trace.h │ │ │ ├── static_map.h │ │ │ ├── static_map │ │ │ ├── static_map_kernel_1.h │ │ │ ├── static_map_kernel_abstract.h │ │ │ └── static_map_kernel_c.h │ │ │ ├── static_set.h │ │ │ ├── static_set │ │ │ ├── static_set_compare_1.h │ │ │ ├── static_set_compare_abstract.h │ │ │ ├── static_set_kernel_1.h │ │ │ ├── static_set_kernel_abstract.h │ │ │ └── static_set_kernel_c.h │ │ │ ├── statistics.h │ │ │ ├── statistics │ │ │ ├── average_precision.h │ │ │ ├── average_precision_abstract.h │ │ │ ├── cca.h │ │ │ ├── cca_abstract.h │ │ │ ├── dpca.h │ │ │ ├── dpca_abstract.h │ │ │ ├── image_feature_sampling.h │ │ │ ├── image_feature_sampling_abstract.h │ │ │ ├── random_subset_selector.h │ │ │ ├── random_subset_selector_abstract.h │ │ │ ├── sammon.h │ │ │ ├── sammon_abstract.h │ │ │ ├── statistics.h │ │ │ ├── statistics_abstract.h │ │ │ ├── vector_normalizer_frobmetric.h │ │ │ └── vector_normalizer_frobmetric_abstract.h │ │ │ ├── std_allocator.h │ │ │ ├── stl_checked.h │ │ │ ├── stl_checked │ │ │ ├── std_vector_c.h │ │ │ └── std_vector_c_abstract.h │ │ │ ├── string.h │ │ │ ├── string │ │ │ ├── cassert │ │ │ ├── iomanip │ │ │ ├── iosfwd │ │ │ ├── iostream │ │ │ ├── locale │ │ │ ├── string.h │ │ │ └── string_abstract.h │ │ │ ├── svm.h │ │ │ ├── svm │ │ │ ├── active_learning.h │ │ │ ├── active_learning_abstract.h │ │ │ ├── assignment_function.h │ │ │ ├── assignment_function_abstract.h │ │ │ ├── cross_validate_assignment_trainer.h │ │ │ ├── cross_validate_assignment_trainer_abstract.h │ │ │ ├── cross_validate_graph_labeling_trainer.h │ │ │ ├── cross_validate_graph_labeling_trainer_abstract.h │ │ │ ├── cross_validate_multiclass_trainer.h │ │ │ ├── cross_validate_multiclass_trainer_abstract.h │ │ │ ├── cross_validate_object_detection_trainer.h │ │ │ ├── cross_validate_object_detection_trainer_abstract.h │ │ │ ├── cross_validate_regression_trainer.h │ │ │ ├── cross_validate_regression_trainer_abstract.h │ │ │ ├── cross_validate_sequence_labeler.h │ │ │ ├── cross_validate_sequence_labeler_abstract.h │ │ │ ├── cross_validate_sequence_segmenter.h │ │ │ ├── cross_validate_sequence_segmenter_abstract.h │ │ │ ├── cross_validate_track_association_trainer.h │ │ │ ├── cross_validate_track_association_trainer_abstract.h │ │ │ ├── empirical_kernel_map.h │ │ │ ├── empirical_kernel_map_abstract.h │ │ │ ├── feature_ranking.h │ │ │ ├── feature_ranking_abstract.h │ │ │ ├── function.h │ │ │ ├── function_abstract.h │ │ │ ├── kcentroid.h │ │ │ ├── kcentroid_abstract.h │ │ │ ├── kcentroid_overloads.h │ │ │ ├── kernel.h │ │ │ ├── kernel_abstract.h │ │ │ ├── kernel_matrix.h │ │ │ ├── kernel_matrix_abstract.h │ │ │ ├── kkmeans.h │ │ │ ├── kkmeans_abstract.h │ │ │ ├── krls.h │ │ │ ├── krls_abstract.h │ │ │ ├── krr_trainer.h │ │ │ ├── krr_trainer_abstract.h │ │ │ ├── linearly_independent_subset_finder.h │ │ │ ├── linearly_independent_subset_finder_abstract.h │ │ │ ├── multiclass_tools.h │ │ │ ├── multiclass_tools_abstract.h │ │ │ ├── null_df.h │ │ │ ├── null_trainer.h │ │ │ ├── null_trainer_abstract.h │ │ │ ├── num_nonnegative_weights.h │ │ │ ├── one_vs_all_decision_function.h │ │ │ ├── one_vs_all_decision_function_abstract.h │ │ │ ├── one_vs_all_trainer.h │ │ │ ├── one_vs_all_trainer_abstract.h │ │ │ ├── one_vs_one_decision_function.h │ │ │ ├── one_vs_one_decision_function_abstract.h │ │ │ ├── one_vs_one_trainer.h │ │ │ ├── one_vs_one_trainer_abstract.h │ │ │ ├── pegasos.h │ │ │ ├── pegasos_abstract.h │ │ │ ├── ranking_tools.h │ │ │ ├── ranking_tools_abstract.h │ │ │ ├── rbf_network.h │ │ │ ├── rbf_network_abstract.h │ │ │ ├── reduced.h │ │ │ ├── reduced_abstract.h │ │ │ ├── rls.h │ │ │ ├── rls_abstract.h │ │ │ ├── roc_trainer.h │ │ │ ├── roc_trainer_abstract.h │ │ │ ├── rr_trainer.h │ │ │ ├── rr_trainer_abstract.h │ │ │ ├── rvm.h │ │ │ ├── rvm_abstract.h │ │ │ ├── sequence_labeler.h │ │ │ ├── sequence_labeler_abstract.h │ │ │ ├── sequence_segmenter.h │ │ │ ├── sequence_segmenter_abstract.h │ │ │ ├── simplify_linear_decision_function.h │ │ │ ├── simplify_linear_decision_function_abstract.h │ │ │ ├── sort_basis_vectors.h │ │ │ ├── sort_basis_vectors_abstract.h │ │ │ ├── sparse_kernel.h │ │ │ ├── sparse_kernel_abstract.h │ │ │ ├── sparse_vector.h │ │ │ ├── sparse_vector_abstract.h │ │ │ ├── structural_assignment_trainer.h │ │ │ ├── structural_assignment_trainer_abstract.h │ │ │ ├── structural_graph_labeling_trainer.h │ │ │ ├── structural_graph_labeling_trainer_abstract.h │ │ │ ├── structural_object_detection_trainer.h │ │ │ ├── structural_object_detection_trainer_abstract.h │ │ │ ├── structural_sequence_labeling_trainer.h │ │ │ ├── structural_sequence_labeling_trainer_abstract.h │ │ │ ├── structural_sequence_segmentation_trainer.h │ │ │ ├── structural_sequence_segmentation_trainer_abstract.h │ │ │ ├── structural_svm_assignment_problem.h │ │ │ ├── structural_svm_assignment_problem_abstract.h │ │ │ ├── structural_svm_distributed.h │ │ │ ├── structural_svm_distributed_abstract.h │ │ │ ├── structural_svm_graph_labeling_problem.h │ │ │ ├── structural_svm_graph_labeling_problem_abstract.h │ │ │ ├── structural_svm_object_detection_problem.h │ │ │ ├── structural_svm_object_detection_problem_abstract.h │ │ │ ├── structural_svm_problem.h │ │ │ ├── structural_svm_problem_abstract.h │ │ │ ├── structural_svm_problem_threaded.h │ │ │ ├── structural_svm_problem_threaded_abstract.h │ │ │ ├── structural_svm_sequence_labeling_problem.h │ │ │ ├── structural_svm_sequence_labeling_problem_abstract.h │ │ │ ├── structural_track_association_trainer.h │ │ │ ├── structural_track_association_trainer_abstract.h │ │ │ ├── svm.h │ │ │ ├── svm_abstract.h │ │ │ ├── svm_c_ekm_trainer.h │ │ │ ├── svm_c_ekm_trainer_abstract.h │ │ │ ├── svm_c_linear_dcd_trainer.h │ │ │ ├── svm_c_linear_dcd_trainer_abstract.h │ │ │ ├── svm_c_linear_trainer.h │ │ │ ├── svm_c_linear_trainer_abstract.h │ │ │ ├── svm_c_trainer.h │ │ │ ├── svm_c_trainer_abstract.h │ │ │ ├── svm_multiclass_linear_trainer.h │ │ │ ├── svm_multiclass_linear_trainer_abstract.h │ │ │ ├── svm_nu_trainer.h │ │ │ ├── svm_nu_trainer_abstract.h │ │ │ ├── svm_one_class_trainer.h │ │ │ ├── svm_one_class_trainer_abstract.h │ │ │ ├── svm_rank_trainer.h │ │ │ ├── svm_rank_trainer_abstract.h │ │ │ ├── svm_threaded.h │ │ │ ├── svm_threaded_abstract.h │ │ │ ├── svr_linear_trainer.h │ │ │ ├── svr_linear_trainer_abstract.h │ │ │ ├── svr_trainer.h │ │ │ ├── svr_trainer_abstract.h │ │ │ ├── track_association_function.h │ │ │ └── track_association_function_abstract.h │ │ │ ├── svm_threaded.h │ │ │ ├── sync_extension.h │ │ │ ├── sync_extension │ │ │ ├── sync_extension_kernel_1.h │ │ │ └── sync_extension_kernel_abstract.h │ │ │ ├── test │ │ │ ├── CMakeLists.txt │ │ │ ├── active_learning.cpp │ │ │ ├── any.cpp │ │ │ ├── any_function.cpp │ │ │ ├── array.cpp │ │ │ ├── array2d.cpp │ │ │ ├── assignment_learning.cpp │ │ │ ├── base64.cpp │ │ │ ├── bayes_nets.cpp │ │ │ ├── bigint.cpp │ │ │ ├── binary_search_tree.h │ │ │ ├── binary_search_tree_kernel_1a.cpp │ │ │ ├── binary_search_tree_kernel_2a.cpp │ │ │ ├── binary_search_tree_mm1.cpp │ │ │ ├── binary_search_tree_mm2.cpp │ │ │ ├── blas_bindings │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── blas_bindings_dot.cpp │ │ │ │ ├── blas_bindings_gemm.cpp │ │ │ │ ├── blas_bindings_gemv.cpp │ │ │ │ ├── blas_bindings_ger.cpp │ │ │ │ ├── blas_bindings_scal_axpy.cpp │ │ │ │ └── vector.cpp │ │ │ ├── bridge.cpp │ │ │ ├── bsp.cpp │ │ │ ├── byte_orderer.cpp │ │ │ ├── cca.cpp │ │ │ ├── checkerboard.h │ │ │ ├── clustering.cpp │ │ │ ├── cmd_line_parser.cpp │ │ │ ├── cmd_line_parser.h │ │ │ ├── cmd_line_parser_wchar_t.cpp │ │ │ ├── compress_stream.cpp │ │ │ ├── conditioning_class.cpp │ │ │ ├── conditioning_class.h │ │ │ ├── conditioning_class_c.cpp │ │ │ ├── config_reader.cpp │ │ │ ├── crc32.cpp │ │ │ ├── create_iris_datafile.cpp │ │ │ ├── create_iris_datafile.h │ │ │ ├── data_io.cpp │ │ │ ├── directed_graph.cpp │ │ │ ├── discriminant_pca.cpp │ │ │ ├── disjoint_subsets.cpp │ │ │ ├── ekm_and_lisf.cpp │ │ │ ├── empirical_kernel_map.cpp │ │ │ ├── entropy_coder.cpp │ │ │ ├── entropy_encoder_model.cpp │ │ │ ├── example.cpp │ │ │ ├── example_args.cpp │ │ │ ├── examples │ │ │ │ └── CMakeLists.txt │ │ │ ├── face.cpp │ │ │ ├── fft.cpp │ │ │ ├── fhog.cpp │ │ │ ├── filtering.cpp │ │ │ ├── find_max_factor_graph_nmplp.cpp │ │ │ ├── find_max_factor_graph_viterbi.cpp │ │ │ ├── geometry.cpp │ │ │ ├── graph.cpp │ │ │ ├── graph_cuts.cpp │ │ │ ├── graph_labeler.cpp │ │ │ ├── gui │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── main.cpp │ │ │ ├── hash.cpp │ │ │ ├── hash_map.cpp │ │ │ ├── hash_set.cpp │ │ │ ├── hash_table.cpp │ │ │ ├── hog_image.cpp │ │ │ ├── image.cpp │ │ │ ├── iosockstream.cpp │ │ │ ├── is_same_object.cpp │ │ │ ├── kcentroid.cpp │ │ │ ├── kernel_matrix.cpp │ │ │ ├── kmeans.cpp │ │ │ ├── learning_to_track.cpp │ │ │ ├── least_squares.cpp │ │ │ ├── linear_manifold_regularizer.cpp │ │ │ ├── lz77_buffer.cpp │ │ │ ├── main.cpp │ │ │ ├── makefile │ │ │ ├── map.cpp │ │ │ ├── matrix.cpp │ │ │ ├── matrix2.cpp │ │ │ ├── matrix3.cpp │ │ │ ├── matrix4.cpp │ │ │ ├── matrix_chol.cpp │ │ │ ├── matrix_eig.cpp │ │ │ ├── matrix_lu.cpp │ │ │ ├── matrix_qr.cpp │ │ │ ├── max_cost_assignment.cpp │ │ │ ├── max_sum_submatrix.cpp │ │ │ ├── md5.cpp │ │ │ ├── member_function_pointer.cpp │ │ │ ├── metaprogramming.cpp │ │ │ ├── multithreaded_object.cpp │ │ │ ├── numerical_integration.cpp │ │ │ ├── object_detector.cpp │ │ │ ├── oca.cpp │ │ │ ├── one_vs_all_trainer.cpp │ │ │ ├── one_vs_one_trainer.cpp │ │ │ ├── opt_qp_solver.cpp │ │ │ ├── optimization.cpp │ │ │ ├── optimization_test_functions.cpp │ │ │ ├── optimization_test_functions.h │ │ │ ├── parallel_for.cpp │ │ │ ├── parse.cpp │ │ │ ├── pipe.cpp │ │ │ ├── pixel.cpp │ │ │ ├── probabilistic.cpp │ │ │ ├── pyramid_down.cpp │ │ │ ├── queue.cpp │ │ │ ├── rand.cpp │ │ │ ├── ranking.cpp │ │ │ ├── read_write_mutex.cpp │ │ │ ├── reference_counter.cpp │ │ │ ├── rls.cpp │ │ │ ├── sammon.cpp │ │ │ ├── scan_image.cpp │ │ │ ├── sequence.cpp │ │ │ ├── sequence_labeler.cpp │ │ │ ├── sequence_segmenter.cpp │ │ │ ├── serialize.cpp │ │ │ ├── set.cpp │ │ │ ├── sldf.cpp │ │ │ ├── sliding_buffer.cpp │ │ │ ├── smart_pointers.cpp │ │ │ ├── sockets.cpp │ │ │ ├── sockets2.cpp │ │ │ ├── sockstreambuf.cpp │ │ │ ├── sparse_vector.cpp │ │ │ ├── stack.cpp │ │ │ ├── static_map.cpp │ │ │ ├── static_set.cpp │ │ │ ├── statistics.cpp │ │ │ ├── std_vector_c.cpp │ │ │ ├── string.cpp │ │ │ ├── svm.cpp │ │ │ ├── svm_c_linear.cpp │ │ │ ├── svm_c_linear_dcd.cpp │ │ │ ├── svm_multiclass_linear.cpp │ │ │ ├── svm_struct.cpp │ │ │ ├── svr_linear_trainer.cpp │ │ │ ├── symmetric_matrix_cache.cpp │ │ │ ├── tester.cpp │ │ │ ├── tester.h │ │ │ ├── thread_pool.cpp │ │ │ ├── threads.cpp │ │ │ ├── timer.cpp │ │ │ ├── tokenizer.cpp │ │ │ ├── trust_region.cpp │ │ │ ├── tuple.cpp │ │ │ ├── type_safe_union.cpp │ │ │ └── vectorstream.cpp │ │ │ ├── threads.h │ │ │ ├── threads │ │ │ ├── auto_mutex_extension.h │ │ │ ├── auto_mutex_extension_abstract.h │ │ │ ├── auto_unlock_extension.h │ │ │ ├── auto_unlock_extension_abstract.h │ │ │ ├── create_new_thread_extension.h │ │ │ ├── create_new_thread_extension_abstract.h │ │ │ ├── multithreaded_object_extension.cpp │ │ │ ├── multithreaded_object_extension.h │ │ │ ├── multithreaded_object_extension_abstract.h │ │ │ ├── parallel_for_extension.h │ │ │ ├── parallel_for_extension_abstract.h │ │ │ ├── posix.h │ │ │ ├── read_write_mutex_extension.h │ │ │ ├── read_write_mutex_extension_abstract.h │ │ │ ├── rmutex_extension.h │ │ │ ├── rmutex_extension_abstract.h │ │ │ ├── rsignaler_extension.h │ │ │ ├── rsignaler_extension_abstract.h │ │ │ ├── thread_function_extension.h │ │ │ ├── thread_function_extension_abstract.h │ │ │ ├── thread_pool_extension.cpp │ │ │ ├── thread_pool_extension.h │ │ │ ├── thread_pool_extension_abstract.h │ │ │ ├── thread_specific_data_extension.h │ │ │ ├── thread_specific_data_extension_abstract.h │ │ │ ├── threaded_object_extension.cpp │ │ │ ├── threaded_object_extension.h │ │ │ ├── threaded_object_extension_abstract.h │ │ │ ├── threads_kernel.h │ │ │ ├── threads_kernel_1.cpp │ │ │ ├── threads_kernel_1.h │ │ │ ├── threads_kernel_2.cpp │ │ │ ├── threads_kernel_2.h │ │ │ ├── threads_kernel_abstract.h │ │ │ ├── threads_kernel_shared.cpp │ │ │ ├── threads_kernel_shared.h │ │ │ └── windows.h │ │ │ ├── time_this.h │ │ │ ├── timeout.h │ │ │ ├── timeout │ │ │ ├── timeout.h │ │ │ └── timeout_abstract.h │ │ │ ├── timer.h │ │ │ ├── timer │ │ │ ├── timer.cpp │ │ │ ├── timer.h │ │ │ ├── timer_abstract.h │ │ │ └── timer_heavy.h │ │ │ ├── timing.h │ │ │ ├── tokenizer.h │ │ │ ├── tokenizer │ │ │ ├── tokenizer_kernel_1.cpp │ │ │ ├── tokenizer_kernel_1.h │ │ │ ├── tokenizer_kernel_abstract.h │ │ │ └── tokenizer_kernel_c.h │ │ │ ├── tuple.h │ │ │ ├── tuple │ │ │ ├── tuple.h │ │ │ └── tuple_abstract.h │ │ │ ├── type_safe_union.h │ │ │ ├── type_safe_union │ │ │ ├── type_safe_union_kernel.h │ │ │ └── type_safe_union_kernel_abstract.h │ │ │ ├── uintn.h │ │ │ ├── unicode.h │ │ │ ├── unicode │ │ │ ├── unicode.cpp │ │ │ ├── unicode.h │ │ │ └── unicode_abstract.h │ │ │ ├── unordered_pair.h │ │ │ ├── vectorstream.h │ │ │ ├── vectorstream │ │ │ ├── vectorstream.h │ │ │ └── vectorstream_abstract.h │ │ │ ├── windows_magic.h │ │ │ ├── xml_parser.h │ │ │ └── xml_parser │ │ │ ├── xml_parser_kernel_1.h │ │ │ ├── xml_parser_kernel_abstract.h │ │ │ └── xml_parser_kernel_interfaces.h │ └── x64 │ │ └── Release │ │ ├── dlib.Build.CppClean.log │ │ ├── dlib.log │ │ └── dlib.tlog │ │ ├── CL.command.1.tlog │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── Lib-link.read.1.tlog │ │ ├── Lib-link.write.1.tlog │ │ ├── dlib.lastbuildstate │ │ └── lib.command.1.tlog └── tbb │ ├── CHANGES │ ├── COPYING │ ├── README │ ├── include │ ├── index.html │ ├── serial │ │ └── tbb │ │ │ ├── parallel_for.h │ │ │ └── tbb_annotate.h │ └── tbb │ │ ├── aggregator.h │ │ ├── aligned_space.h │ │ ├── atomic.h │ │ ├── blocked_range.h │ │ ├── blocked_range2d.h │ │ ├── blocked_range3d.h │ │ ├── cache_aligned_allocator.h │ │ ├── combinable.h │ │ ├── compat │ │ ├── condition_variable │ │ ├── ppl.h │ │ ├── thread │ │ └── tuple │ │ ├── concurrent_hash_map.h │ │ ├── concurrent_lru_cache.h │ │ ├── concurrent_priority_queue.h │ │ ├── concurrent_queue.h │ │ ├── concurrent_unordered_map.h │ │ ├── concurrent_unordered_set.h │ │ ├── concurrent_vector.h │ │ ├── critical_section.h │ │ ├── enumerable_thread_specific.h │ │ ├── flow_graph.h │ │ ├── flow_graph_opencl_node.h │ │ ├── global_control.h │ │ ├── index.html │ │ ├── internal │ │ ├── _aggregator_impl.h │ │ ├── _concurrent_queue_impl.h │ │ ├── _concurrent_unordered_impl.h │ │ ├── _flow_graph_impl.h │ │ ├── _flow_graph_indexer_impl.h │ │ ├── _flow_graph_item_buffer_impl.h │ │ ├── _flow_graph_join_impl.h │ │ ├── _flow_graph_node_impl.h │ │ ├── _flow_graph_tagged_buffer_impl.h │ │ ├── _flow_graph_trace_impl.h │ │ ├── _flow_graph_types_impl.h │ │ ├── _mutex_padding.h │ │ ├── _range_iterator.h │ │ ├── _tbb_hash_compare_impl.h │ │ ├── _tbb_strings.h │ │ ├── _tbb_windef.h │ │ ├── _template_helpers.h │ │ ├── _x86_eliding_mutex_impl.h │ │ └── _x86_rtm_rw_mutex_impl.h │ │ ├── machine │ │ ├── gcc_armv7.h │ │ ├── gcc_generic.h │ │ ├── gcc_ia32_common.h │ │ ├── gcc_itsx.h │ │ ├── ibm_aix51.h │ │ ├── icc_generic.h │ │ ├── linux_common.h │ │ ├── linux_ia32.h │ │ ├── linux_ia64.h │ │ ├── linux_intel64.h │ │ ├── mac_ppc.h │ │ ├── macos_common.h │ │ ├── mic_common.h │ │ ├── msvc_armv7.h │ │ ├── msvc_ia32_common.h │ │ ├── sunos_sparc.h │ │ ├── windows_api.h │ │ ├── windows_ia32.h │ │ ├── windows_intel64.h │ │ └── xbox360_ppc.h │ │ ├── memory_pool.h │ │ ├── mutex.h │ │ ├── null_mutex.h │ │ ├── null_rw_mutex.h │ │ ├── parallel_do.h │ │ ├── parallel_for.h │ │ ├── parallel_for_each.h │ │ ├── parallel_invoke.h │ │ ├── parallel_reduce.h │ │ ├── parallel_scan.h │ │ ├── parallel_sort.h │ │ ├── parallel_while.h │ │ ├── partitioner.h │ │ ├── pipeline.h │ │ ├── queuing_mutex.h │ │ ├── queuing_rw_mutex.h │ │ ├── reader_writer_lock.h │ │ ├── recursive_mutex.h │ │ ├── runtime_loader.h │ │ ├── scalable_allocator.h │ │ ├── spin_mutex.h │ │ ├── spin_rw_mutex.h │ │ ├── task.h │ │ ├── task_arena.h │ │ ├── task_group.h │ │ ├── task_scheduler_init.h │ │ ├── task_scheduler_observer.h │ │ ├── tbb.h │ │ ├── tbb_allocator.h │ │ ├── tbb_config.h │ │ ├── tbb_exception.h │ │ ├── tbb_machine.h │ │ ├── tbb_profiling.h │ │ ├── tbb_stddef.h │ │ ├── tbb_thread.h │ │ ├── tbbmalloc_proxy.h │ │ └── tick_count.h │ ├── index.html │ ├── lib │ ├── x64 │ │ └── v140 │ │ │ ├── tbb.def │ │ │ └── tbbmalloc.def │ └── x86 │ │ └── v140 │ │ ├── tbb.def │ │ └── tbbmalloc.def │ ├── tbb-license.txt │ ├── tbb.props │ └── tbb_d.props └── img ├── OpenFACE_AU.png ├── OpenFACE_AU2.png └── Screenshot_20180113-041047.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/.gitignore -------------------------------------------------------------------------------- /Binaries/Win64/AU_predictors/AU_all_best.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/Binaries/Win64/AU_predictors/AU_all_best.txt -------------------------------------------------------------------------------- /Binaries/Win64/AU_predictors/AU_all_static.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/Binaries/Win64/AU_predictors/AU_all_static.txt -------------------------------------------------------------------------------- /Binaries/Win64/AU_predictors/tris_68_full.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/Binaries/Win64/AU_predictors/tris_68_full.txt -------------------------------------------------------------------------------- /Binaries/Win64/model/clm_general.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/Binaries/Win64/model/clm_general.txt -------------------------------------------------------------------------------- /Binaries/Win64/model/clm_wild.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/Binaries/Win64/model/clm_wild.txt -------------------------------------------------------------------------------- /Binaries/Win64/model/clnf_general.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/Binaries/Win64/model/clnf_general.txt -------------------------------------------------------------------------------- /Binaries/Win64/model/clnf_wild.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/Binaries/Win64/model/clnf_wild.txt -------------------------------------------------------------------------------- /Binaries/Win64/model/haarAlign.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/Binaries/Win64/model/haarAlign.txt -------------------------------------------------------------------------------- /Binaries/Win64/model/main_clm_general.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/Binaries/Win64/model/main_clm_general.txt -------------------------------------------------------------------------------- /Binaries/Win64/model/main_clm_wild.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/Binaries/Win64/model/main_clm_wild.txt -------------------------------------------------------------------------------- /Binaries/Win64/model/main_clnf_general.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/Binaries/Win64/model/main_clnf_general.txt -------------------------------------------------------------------------------- /Binaries/Win64/model/main_clnf_wild.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/Binaries/Win64/model/main_clnf_wild.txt -------------------------------------------------------------------------------- /Binaries/Win64/model/model_eye/main_clnf_synth_left.txt: -------------------------------------------------------------------------------- 1 | LandmarkDetector clnf_left_synth.txt -------------------------------------------------------------------------------- /Binaries/Win64/model/model_eye/main_clnf_synth_right.txt: -------------------------------------------------------------------------------- 1 | LandmarkDetector clnf_right_synth.txt -------------------------------------------------------------------------------- /Binaries/Win64/model/model_inner/main_clnf_inner.txt: -------------------------------------------------------------------------------- 1 | LandmarkDetector clnf_inner.txt -------------------------------------------------------------------------------- /Binaries/Win64/model/tris_68.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/Binaries/Win64/model/tris_68.txt -------------------------------------------------------------------------------- /Binaries/Win64/model/tris_68_full.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/Binaries/Win64/model/tris_68_full.txt -------------------------------------------------------------------------------- /OpenFaceUE.uplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/OpenFaceUE.uplugin -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/Resources/Icon128.png -------------------------------------------------------------------------------- /Source/OpenFace.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/Source/OpenFace.Build.cs -------------------------------------------------------------------------------- /ThirdParty/FaceAnalyser/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/FaceAnalyser/CMakeLists.txt -------------------------------------------------------------------------------- /ThirdParty/FaceAnalyser/Debug/FaceAnalyser.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/FaceAnalyser/Debug/FaceAnalyser.idb -------------------------------------------------------------------------------- /ThirdParty/FaceAnalyser/Debug/FaceAnalyser.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/FaceAnalyser/Debug/FaceAnalyser.log -------------------------------------------------------------------------------- /ThirdParty/FaceAnalyser/Debug/FaceAnalyser.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/FaceAnalyser/Debug/FaceAnalyser.pdb -------------------------------------------------------------------------------- /ThirdParty/FaceAnalyser/FaceAnalyser.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/FaceAnalyser/FaceAnalyser.vcxproj -------------------------------------------------------------------------------- /ThirdParty/FaceAnalyser/include/FaceAnalyser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/FaceAnalyser/include/FaceAnalyser.h -------------------------------------------------------------------------------- /ThirdParty/FaceAnalyser/include/Face_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/FaceAnalyser/include/Face_utils.h -------------------------------------------------------------------------------- /ThirdParty/FaceAnalyser/include/PAW.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/FaceAnalyser/include/PAW.h -------------------------------------------------------------------------------- /ThirdParty/FaceAnalyser/include/PDM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/FaceAnalyser/include/PDM.h -------------------------------------------------------------------------------- /ThirdParty/FaceAnalyser/src/FaceAnalyser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/FaceAnalyser/src/FaceAnalyser.cpp -------------------------------------------------------------------------------- /ThirdParty/FaceAnalyser/src/Face_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/FaceAnalyser/src/Face_utils.cpp -------------------------------------------------------------------------------- /ThirdParty/FaceAnalyser/src/PAW.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/FaceAnalyser/src/PAW.cpp -------------------------------------------------------------------------------- /ThirdParty/FaceAnalyser/src/PDM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/FaceAnalyser/src/PDM.cpp -------------------------------------------------------------------------------- /ThirdParty/FaceAnalyser/src/SVM_static_lin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/FaceAnalyser/src/SVM_static_lin.cpp -------------------------------------------------------------------------------- /ThirdParty/GazeAnalyser/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/GazeAnalyser/CMakeLists.txt -------------------------------------------------------------------------------- /ThirdParty/GazeAnalyser/Debug/GazeAnalyser.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/GazeAnalyser/Debug/GazeAnalyser.idb -------------------------------------------------------------------------------- /ThirdParty/GazeAnalyser/Debug/GazeAnalyser.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/GazeAnalyser/Debug/GazeAnalyser.log -------------------------------------------------------------------------------- /ThirdParty/GazeAnalyser/Debug/GazeAnalyser.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/GazeAnalyser/Debug/GazeAnalyser.pdb -------------------------------------------------------------------------------- /ThirdParty/GazeAnalyser/GazeAnalyser.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/GazeAnalyser/GazeAnalyser.vcxproj -------------------------------------------------------------------------------- /ThirdParty/GazeAnalyser/src/GazeEstimation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/GazeAnalyser/src/GazeEstimation.cpp -------------------------------------------------------------------------------- /ThirdParty/LandmarkDetector/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/LandmarkDetector/CMakeLists.txt -------------------------------------------------------------------------------- /ThirdParty/LandmarkDetector/include/PAW.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/LandmarkDetector/include/PAW.h -------------------------------------------------------------------------------- /ThirdParty/LandmarkDetector/include/PDM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/LandmarkDetector/include/PDM.h -------------------------------------------------------------------------------- /ThirdParty/LandmarkDetector/include/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/LandmarkDetector/include/stdafx.h -------------------------------------------------------------------------------- /ThirdParty/LandmarkDetector/model/clm_wild.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/LandmarkDetector/model/clm_wild.txt -------------------------------------------------------------------------------- /ThirdParty/LandmarkDetector/model/model_eye/main_clnf_synth_left.txt: -------------------------------------------------------------------------------- 1 | LandmarkDetector clnf_left_synth.txt -------------------------------------------------------------------------------- /ThirdParty/LandmarkDetector/model/model_eye/main_clnf_synth_right.txt: -------------------------------------------------------------------------------- 1 | LandmarkDetector clnf_right_synth.txt -------------------------------------------------------------------------------- /ThirdParty/LandmarkDetector/model/model_inner/main_clnf_inner.txt: -------------------------------------------------------------------------------- 1 | LandmarkDetector clnf_inner.txt -------------------------------------------------------------------------------- /ThirdParty/LandmarkDetector/model/tris_68.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/LandmarkDetector/model/tris_68.txt -------------------------------------------------------------------------------- /ThirdParty/LandmarkDetector/src/PAW.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/LandmarkDetector/src/PAW.cpp -------------------------------------------------------------------------------- /ThirdParty/LandmarkDetector/src/PDM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/LandmarkDetector/src/PDM.cpp -------------------------------------------------------------------------------- /ThirdParty/LandmarkDetector/src/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/LandmarkDetector/src/stdafx.cpp -------------------------------------------------------------------------------- /ThirdParty/OpenBLAS/OpenBLAS.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/OpenBLAS/OpenBLAS.props -------------------------------------------------------------------------------- /ThirdParty/OpenBLAS/include/cblas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/OpenBLAS/include/cblas.h -------------------------------------------------------------------------------- /ThirdParty/OpenBLAS/include/f77blas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/OpenBLAS/include/f77blas.h -------------------------------------------------------------------------------- /ThirdParty/OpenBLAS/include/lapacke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/OpenBLAS/include/lapacke.h -------------------------------------------------------------------------------- /ThirdParty/OpenBLAS/include/lapacke_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/OpenBLAS/include/lapacke_config.h -------------------------------------------------------------------------------- /ThirdParty/OpenBLAS/include/lapacke_mangling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/OpenBLAS/include/lapacke_mangling.h -------------------------------------------------------------------------------- /ThirdParty/OpenBLAS/include/lapacke_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/OpenBLAS/include/lapacke_utils.h -------------------------------------------------------------------------------- /ThirdParty/OpenBLAS/include/openblas_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/OpenBLAS/include/openblas_config.h -------------------------------------------------------------------------------- /ThirdParty/OpenBLAS/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/OpenBLAS/readme.txt -------------------------------------------------------------------------------- /ThirdParty/OpenBLAS/readme_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/OpenBLAS/readme_2.txt -------------------------------------------------------------------------------- /ThirdParty/OpenCV/Includes/opencv/cv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/OpenCV/Includes/opencv/cv.h -------------------------------------------------------------------------------- /ThirdParty/OpenCV/Includes/opencv/cv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/OpenCV/Includes/opencv/cv.hpp -------------------------------------------------------------------------------- /ThirdParty/OpenCV/Includes/opencv/cvaux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/OpenCV/Includes/opencv/cvaux.h -------------------------------------------------------------------------------- /ThirdParty/OpenCV/Includes/opencv/cvaux.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/OpenCV/Includes/opencv/cvaux.hpp -------------------------------------------------------------------------------- /ThirdParty/OpenCV/Includes/opencv/cvwimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/OpenCV/Includes/opencv/cvwimage.h -------------------------------------------------------------------------------- /ThirdParty/OpenCV/Includes/opencv/cxcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/OpenCV/Includes/opencv/cxcore.h -------------------------------------------------------------------------------- /ThirdParty/OpenCV/Includes/opencv/cxcore.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/OpenCV/Includes/opencv/cxcore.hpp -------------------------------------------------------------------------------- /ThirdParty/OpenCV/Includes/opencv/cxeigen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/OpenCV/Includes/opencv/cxeigen.hpp -------------------------------------------------------------------------------- /ThirdParty/OpenCV/Includes/opencv/cxmisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/OpenCV/Includes/opencv/cxmisc.h -------------------------------------------------------------------------------- /ThirdParty/OpenCV/Includes/opencv/highgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/OpenCV/Includes/opencv/highgui.h -------------------------------------------------------------------------------- /ThirdParty/OpenCV/Includes/opencv/ml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/OpenCV/Includes/opencv/ml.h -------------------------------------------------------------------------------- /ThirdParty/OpenCV/Includes/opencv2/calib3d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/OpenCV/Includes/opencv2/calib3d.hpp -------------------------------------------------------------------------------- /ThirdParty/OpenCV/Includes/opencv2/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/OpenCV/Includes/opencv2/core.hpp -------------------------------------------------------------------------------- /ThirdParty/OpenCV/Includes/opencv2/cvconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/OpenCV/Includes/opencv2/cvconfig.h -------------------------------------------------------------------------------- /ThirdParty/OpenCV/Includes/opencv2/flann.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/OpenCV/Includes/opencv2/flann.hpp -------------------------------------------------------------------------------- /ThirdParty/OpenCV/Includes/opencv2/flann/any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/OpenCV/Includes/opencv2/flann/any.h -------------------------------------------------------------------------------- /ThirdParty/OpenCV/Includes/opencv2/highgui.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/OpenCV/Includes/opencv2/highgui.hpp -------------------------------------------------------------------------------- /ThirdParty/OpenCV/Includes/opencv2/imgproc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/OpenCV/Includes/opencv2/imgproc.hpp -------------------------------------------------------------------------------- /ThirdParty/OpenCV/Includes/opencv2/ml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/OpenCV/Includes/opencv2/ml.hpp -------------------------------------------------------------------------------- /ThirdParty/OpenCV/Includes/opencv2/ml/ml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/OpenCV/Includes/opencv2/ml/ml.hpp -------------------------------------------------------------------------------- /ThirdParty/OpenCV/Includes/opencv2/opencv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/OpenCV/Includes/opencv2/opencv.hpp -------------------------------------------------------------------------------- /ThirdParty/OpenCV/Includes/opencv2/photo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/OpenCV/Includes/opencv2/photo.hpp -------------------------------------------------------------------------------- /ThirdParty/OpenCV/Includes/opencv2/shape.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/OpenCV/Includes/opencv2/shape.hpp -------------------------------------------------------------------------------- /ThirdParty/OpenCV/Includes/opencv2/video.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/OpenCV/Includes/opencv2/video.hpp -------------------------------------------------------------------------------- /ThirdParty/OpenCV/Includes/opencv2/videoio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/OpenCV/Includes/opencv2/videoio.hpp -------------------------------------------------------------------------------- /ThirdParty/OpenCV/Includes/opencv2/world.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/OpenCV/Includes/opencv2/world.hpp -------------------------------------------------------------------------------- /ThirdParty/OpenCV/Libraries/Win64/tbb.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/OpenCV/Libraries/Win64/tbb.def -------------------------------------------------------------------------------- /ThirdParty/boost/LICENSE_1_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/LICENSE_1_0.txt -------------------------------------------------------------------------------- /ThirdParty/boost/boost.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost.props -------------------------------------------------------------------------------- /ThirdParty/boost/boost/algorithm/algorithm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/algorithm/algorithm.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/algorithm/clamp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/algorithm/clamp.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/algorithm/gather.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/algorithm/gather.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/algorithm/hex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/algorithm/hex.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/algorithm/minmax.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/algorithm/minmax.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/algorithm/string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/algorithm/string.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/assert.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/bind/apply.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/bind/apply.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/bind/arg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/bind/arg.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/bind/bind.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/bind/bind.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/bind/bind_cc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/bind/bind_cc.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/bind/bind_mf2_cc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/bind/bind_mf2_cc.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/bind/bind_mf_cc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/bind/bind_mf_cc.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/bind/bind_template.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/bind/bind_template.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/bind/make_adaptable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/bind/make_adaptable.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/bind/mem_fn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/bind/mem_fn.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/bind/mem_fn_cc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/bind/mem_fn_cc.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/bind/mem_fn_vw.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/bind/mem_fn_vw.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/bind/placeholders.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/bind/placeholders.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/bind/protect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/bind/protect.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/bind/storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/bind/storage.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/cerrno.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/cerrno.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/checked_delete.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/checked_delete.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/concept/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/concept/assert.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/concept/detail/msvc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/concept/detail/msvc.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/concept/requires.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/concept/requires.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/concept/usage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/concept/usage.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/concept_check.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/concept_check.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/config.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/config/abi_prefix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/config/abi_prefix.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/config/abi_suffix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/config/abi_suffix.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/config/auto_link.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/config/auto_link.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/config/compiler/gcc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/config/compiler/gcc.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/config/compiler/kai.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/config/compiler/kai.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/config/compiler/mpw.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/config/compiler/mpw.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/config/compiler/pgi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/config/compiler/pgi.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/config/no_tr1/cmath.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/config/no_tr1/cmath.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/config/platform/aix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/config/platform/aix.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/config/platform/bsd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/config/platform/bsd.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/config/platform/vms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/config/platform/vms.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/config/stdlib/msl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/config/stdlib/msl.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/config/stdlib/sgi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/config/stdlib/sgi.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/config/stdlib/vacpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/config/stdlib/vacpp.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/config/suffix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/config/suffix.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/config/user.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/config/user.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/core/addressof.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/core/addressof.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/core/checked_delete.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/core/checked_delete.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/core/demangle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/core/demangle.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/core/enable_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/core/enable_if.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/core/ignore_unused.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/core/ignore_unused.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/core/is_same.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/core/is_same.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/core/noncopyable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/core/noncopyable.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/core/null_deleter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/core/null_deleter.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/core/ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/core/ref.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/core/scoped_enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/core/scoped_enum.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/core/swap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/core/swap.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/core/typeinfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/core/typeinfo.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/cstdint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/cstdint.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/current_function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/current_function.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/detail/algorithm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/detail/algorithm.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/detail/atomic_count.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/detail/atomic_count.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/detail/bitmask.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/detail/bitmask.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/detail/call_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/detail/call_traits.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/detail/endian.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/detail/endian.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/detail/fenv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/detail/fenv.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/detail/identifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/detail/identifier.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/detail/interlocked.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/detail/interlocked.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/detail/is_sorted.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/detail/is_sorted.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/detail/is_xxx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/detail/is_xxx.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/detail/iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/detail/iterator.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/detail/select_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/detail/select_type.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/detail/sp_typeinfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/detail/sp_typeinfo.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/detail/winapi/apc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/detail/winapi/apc.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/detail/winapi/crypt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/detail/winapi/crypt.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/detail/winapi/dll.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/detail/winapi/dll.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/detail/winapi/event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/detail/winapi/event.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/detail/winapi/mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/detail/winapi/mutex.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/detail/winapi/time.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/detail/winapi/time.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/detail/winapi/tls.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/detail/winapi/tls.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/detail/winapi/wait.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/detail/winapi/wait.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/detail/workaround.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/detail/workaround.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/exception/N3757.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/exception/N3757.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/exception/all.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/exception/all.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/exception/exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/exception/exception.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/exception/info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/exception/info.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/exception/to_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/exception/to_string.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/filesystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/filesystem.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/filesystem/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/filesystem/config.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/filesystem/fstream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/filesystem/fstream.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/filesystem/path.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/filesystem/path.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/function.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/function/function0.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/function/function0.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/function/function1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/function/function1.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/function/function10.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/function/function10.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/function/function2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/function/function2.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/function/function3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/function/function3.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/function/function4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/function/function4.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/function/function5.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/function/function5.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/function/function6.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/function/function6.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/function/function7.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/function/function7.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/function/function8.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/function/function8.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/function/function9.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/function/function9.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/function_equal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/function_equal.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/functional/factory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/functional/factory.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/functional/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/functional/hash.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/functional/hash_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/functional/hash_fwd.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/get_pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/get_pointer.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/integer.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/integer_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/integer_fwd.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/integer_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/integer_traits.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/io/ios_state.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/io/ios_state.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/io_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/io_fwd.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/iterator.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/limits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/limits.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mem_fn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mem_fn.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/memory_order.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/memory_order.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/move/adl_move_swap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/move/adl_move_swap.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/move/algorithm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/move/algorithm.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/move/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/move/core.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/move/default_delete.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/move/default_delete.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/move/iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/move/iterator.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/move/make_unique.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/move/make_unique.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/move/move.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/move/move.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/move/traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/move/traits.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/move/unique_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/move/unique_ptr.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/move/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/move/utility.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/move/utility_core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/move/utility_core.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/O1_size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/O1_size.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/O1_size_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/O1_size_fwd.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/accumulate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/accumulate.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/advance.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/advance.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/advance_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/advance_fwd.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/alias.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/alias.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/always.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/always.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/and.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/and.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/apply.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/apply.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/apply_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/apply_fwd.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/apply_wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/apply_wrap.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/arg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/arg.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/arg_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/arg_fwd.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/arithmetic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/arithmetic.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/as_sequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/as_sequence.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/assert.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/at.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/at.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/at_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/at_fwd.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/aux_/apply_1st.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/aux_/apply_1st.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/aux_/arity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/aux_/arity.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/aux_/arity_spec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/aux_/arity_spec.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/aux_/at_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/aux_/at_impl.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/aux_/back_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/aux_/back_impl.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/aux_/basic_bind.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/aux_/basic_bind.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/aux_/clear_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/aux_/clear_impl.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/aux_/config/adl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/aux_/config/adl.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/aux_/config/bcc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/aux_/config/bcc.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/aux_/config/dtp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/aux_/config/dtp.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/aux_/config/eti.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/aux_/config/eti.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/aux_/config/gcc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/aux_/config/gcc.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/aux_/config/gpu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/aux_/config/gpu.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/aux_/config/ttp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/aux_/config/ttp.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/aux_/count_args.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/aux_/count_args.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/aux_/count_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/aux_/count_impl.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/aux_/empty_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/aux_/empty_impl.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/aux_/erase_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/aux_/erase_impl.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/aux_/fold_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/aux_/fold_impl.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/aux_/fold_op.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/aux_/fold_op.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/aux_/fold_pred.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/aux_/fold_pred.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/aux_/front_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/aux_/front_impl.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/aux_/has_apply.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/aux_/has_apply.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/aux_/has_begin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/aux_/has_begin.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/aux_/has_rebind.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/aux_/has_rebind.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/aux_/has_size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/aux_/has_size.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/aux_/has_tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/aux_/has_tag.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/aux_/has_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/aux_/has_type.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/aux_/iter_apply.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/aux_/iter_apply.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/aux_/joint_iter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/aux_/joint_iter.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/aux_/logical_op.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/aux_/logical_op.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/aux_/msvc_dtw.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/aux_/msvc_dtw.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/aux_/msvc_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/aux_/msvc_type.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/aux_/na.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/aux_/na.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/aux_/na_assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/aux_/na_assert.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/aux_/na_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/aux_/na_fwd.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/aux_/na_spec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/aux_/na_spec.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/aux_/nttp_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/aux_/nttp_decl.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/aux_/numeric_op.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/aux_/numeric_op.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/aux_/order_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/aux_/order_impl.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/aux_/ptr_to_ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/aux_/ptr_to_ref.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/aux_/shift_op.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/aux_/shift_op.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/aux_/size_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/aux_/size_impl.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/aux_/sort_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/aux_/sort_impl.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/aux_/test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/aux_/test.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/aux_/test/data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/aux_/test/data.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/aux_/unwrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/aux_/unwrap.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/aux_/value_wknd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/aux_/value_wknd.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/aux_/yes_no.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/aux_/yes_no.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/back.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/back.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/back_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/back_fwd.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/back_inserter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/back_inserter.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/base.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/begin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/begin.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/begin_end.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/begin_end.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/begin_end_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/begin_end_fwd.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/bind.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/bind.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/bind_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/bind_fwd.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/bitand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/bitand.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/bitor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/bitor.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/bitwise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/bitwise.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/bitxor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/bitxor.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/bool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/bool.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/bool_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/bool_fwd.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/char.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/char.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/char_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/char_fwd.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/clear.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/clear.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/clear_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/clear_fwd.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/comparison.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/comparison.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/contains.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/contains.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/contains_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/contains_fwd.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/copy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/copy.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/copy_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/copy_if.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/count.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/count.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/count_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/count_fwd.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/count_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/count_if.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/deque.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/deque.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/deref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/deref.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/distance.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/distance.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/distance_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/distance_fwd.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/divides.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/divides.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/empty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/empty.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/empty_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/empty_base.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/empty_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/empty_fwd.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/empty_sequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/empty_sequence.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/end.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/end.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/equal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/equal.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/equal_to.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/equal_to.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/erase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/erase.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/erase_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/erase_fwd.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/erase_key.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/erase_key.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/erase_key_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/erase_key_fwd.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/eval_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/eval_if.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/filter_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/filter_view.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/find.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/find.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/find_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/find_if.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/fold.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/fold.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/for_each.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/for_each.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/front.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/front.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/front_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/front_fwd.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/front_inserter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/front_inserter.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/greater.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/greater.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/greater_equal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/greater_equal.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/has_key.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/has_key.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/has_key_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/has_key_fwd.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/has_xxx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/has_xxx.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/identity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/identity.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/if.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/index_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/index_if.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/index_of.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/index_of.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/inherit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/inherit.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/insert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/insert.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/insert_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/insert_fwd.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/insert_range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/insert_range.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/inserter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/inserter.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/int.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/int.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/int_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/int_fwd.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/integral_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/integral_c.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/integral_c_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/integral_c_fwd.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/integral_c_tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/integral_c_tag.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/is_placeholder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/is_placeholder.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/is_sequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/is_sequence.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/iter_fold.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/iter_fold.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/iter_fold_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/iter_fold_if.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/iterator_range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/iterator_range.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/iterator_tags.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/iterator_tags.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/joint_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/joint_view.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/key_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/key_type.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/key_type_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/key_type_fwd.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/lambda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/lambda.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/lambda_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/lambda_fwd.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/less.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/less.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/less_equal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/less_equal.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/limits/arity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/limits/arity.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/limits/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/limits/list.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/limits/map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/limits/map.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/limits/set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/limits/set.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/limits/string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/limits/string.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/limits/vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/limits/vector.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/list.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/list/aux_/clear.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/list/aux_/clear.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/list/aux_/empty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/list/aux_/empty.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/list/aux_/front.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/list/aux_/front.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/list/aux_/item.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/list/aux_/item.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/list/aux_/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/list/aux_/size.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/list/aux_/tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/list/aux_/tag.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/list/list0.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/list/list0.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/list/list0_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/list/list0_c.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/list/list10.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/list/list10.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/list/list10_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/list/list10_c.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/list/list20.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/list/list20.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/list/list20_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/list/list20_c.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/list/list30.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/list/list30.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/list/list30_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/list/list30_c.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/list/list40.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/list/list40.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/list/list40_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/list/list40_c.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/list/list50.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/list/list50.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/list/list50_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/list/list50_c.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/list_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/list_c.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/logical.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/logical.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/long.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/long.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/long_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/long_fwd.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/lower_bound.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/lower_bound.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/map.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/map/aux_/item.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/map/aux_/item.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/map/aux_/map0.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/map/aux_/map0.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/map/aux_/tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/map/aux_/tag.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/map/map0.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/map/map0.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/map/map10.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/map/map10.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/map/map20.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/map/map20.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/map/map30.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/map/map30.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/map/map40.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/map/map40.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/map/map50.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/map/map50.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/math/fixed_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/math/fixed_c.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/math/is_even.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/math/is_even.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/math/rational_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/math/rational_c.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/max.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/max_element.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/max_element.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/min.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/min.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/min_element.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/min_element.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/min_max.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/minus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/minus.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/modulus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/modulus.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/multiplies.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/multiplies.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/negate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/negate.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/next.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/next.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/next_prior.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/next_prior.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/not.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/not.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/not_equal_to.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/not_equal_to.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/numeric_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/numeric_cast.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/or.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/or.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/order.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/order.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/order_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/order_fwd.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/pair.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/pair.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/pair_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/pair_view.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/partition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/partition.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/placeholders.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/placeholders.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/plus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/plus.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/pop_back.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/pop_back.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/pop_back_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/pop_back_fwd.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/pop_front.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/pop_front.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/pop_front_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/pop_front_fwd.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/print.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/print.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/prior.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/prior.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/protect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/protect.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/push_back.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/push_back.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/push_back_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/push_back_fwd.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/push_front.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/push_front.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/push_front_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/push_front_fwd.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/quote.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/quote.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/range_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/range_c.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/remove.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/remove.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/remove_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/remove_if.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/replace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/replace.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/replace_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/replace_if.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/reverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/reverse.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/reverse_fold.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/reverse_fold.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/same_as.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/same_as.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/sequence_tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/sequence_tag.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/set.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/set/aux_/item.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/set/aux_/item.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/set/aux_/set0.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/set/aux_/set0.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/set/aux_/tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/set/aux_/tag.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/set/set0.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/set/set0.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/set/set0_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/set/set0_c.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/set/set10.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/set/set10.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/set/set10_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/set/set10_c.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/set/set20.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/set/set20.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/set/set20_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/set/set20_c.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/set/set30.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/set/set30.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/set/set30_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/set/set30_c.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/set/set40.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/set/set40.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/set/set40_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/set/set40_c.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/set/set50.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/set/set50.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/set/set50_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/set/set50_c.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/set_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/set_c.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/shift_left.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/shift_left.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/shift_right.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/shift_right.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/single_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/single_view.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/size.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/size_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/size_fwd.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/size_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/size_t.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/size_t_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/size_t_fwd.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/sizeof.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/sizeof.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/sort.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/sort.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/string.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/switch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/switch.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/tag.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/times.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/times.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/transform.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/transform_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/transform_view.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/unique.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/unique.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/unpack_args.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/unpack_args.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/upper_bound.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/upper_bound.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/value_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/value_type.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/value_type_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/value_type_fwd.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/vector.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/vector/aux_/at.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/vector/aux_/at.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/vector_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/vector_c.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/void.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/void.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/void_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/void_fwd.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/mpl/zip_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/mpl/zip_view.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/next_prior.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/next_prior.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/noncopyable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/noncopyable.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/operators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/operators.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/predef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/predef.h -------------------------------------------------------------------------------- /ThirdParty/boost/boost/predef/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/predef/compiler.h -------------------------------------------------------------------------------- /ThirdParty/boost/boost/predef/detail/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/predef/detail/test.h -------------------------------------------------------------------------------- /ThirdParty/boost/boost/predef/hardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/predef/hardware.h -------------------------------------------------------------------------------- /ThirdParty/boost/boost/predef/language.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/predef/language.h -------------------------------------------------------------------------------- /ThirdParty/boost/boost/predef/library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/predef/library.h -------------------------------------------------------------------------------- /ThirdParty/boost/boost/predef/library/c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/predef/library/c.h -------------------------------------------------------------------------------- /ThirdParty/boost/boost/predef/library/std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/predef/library/std.h -------------------------------------------------------------------------------- /ThirdParty/boost/boost/predef/make.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/predef/make.h -------------------------------------------------------------------------------- /ThirdParty/boost/boost/predef/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/predef/os.h -------------------------------------------------------------------------------- /ThirdParty/boost/boost/predef/os/aix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/predef/os/aix.h -------------------------------------------------------------------------------- /ThirdParty/boost/boost/predef/os/amigaos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/predef/os/amigaos.h -------------------------------------------------------------------------------- /ThirdParty/boost/boost/predef/os/android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/predef/os/android.h -------------------------------------------------------------------------------- /ThirdParty/boost/boost/predef/os/beos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/predef/os/beos.h -------------------------------------------------------------------------------- /ThirdParty/boost/boost/predef/os/bsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/predef/os/bsd.h -------------------------------------------------------------------------------- /ThirdParty/boost/boost/predef/os/bsd/bsdi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/predef/os/bsd/bsdi.h -------------------------------------------------------------------------------- /ThirdParty/boost/boost/predef/os/bsd/free.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/predef/os/bsd/free.h -------------------------------------------------------------------------------- /ThirdParty/boost/boost/predef/os/bsd/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/predef/os/bsd/net.h -------------------------------------------------------------------------------- /ThirdParty/boost/boost/predef/os/bsd/open.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/predef/os/bsd/open.h -------------------------------------------------------------------------------- /ThirdParty/boost/boost/predef/os/cygwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/predef/os/cygwin.h -------------------------------------------------------------------------------- /ThirdParty/boost/boost/predef/os/haiku.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/predef/os/haiku.h -------------------------------------------------------------------------------- /ThirdParty/boost/boost/predef/os/hpux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/predef/os/hpux.h -------------------------------------------------------------------------------- /ThirdParty/boost/boost/predef/os/ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/predef/os/ios.h -------------------------------------------------------------------------------- /ThirdParty/boost/boost/predef/os/irix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/predef/os/irix.h -------------------------------------------------------------------------------- /ThirdParty/boost/boost/predef/os/linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/predef/os/linux.h -------------------------------------------------------------------------------- /ThirdParty/boost/boost/predef/os/macos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/predef/os/macos.h -------------------------------------------------------------------------------- /ThirdParty/boost/boost/predef/os/os400.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/predef/os/os400.h -------------------------------------------------------------------------------- /ThirdParty/boost/boost/predef/os/qnxnto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/predef/os/qnxnto.h -------------------------------------------------------------------------------- /ThirdParty/boost/boost/predef/os/solaris.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/predef/os/solaris.h -------------------------------------------------------------------------------- /ThirdParty/boost/boost/predef/os/unix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/predef/os/unix.h -------------------------------------------------------------------------------- /ThirdParty/boost/boost/predef/os/vms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/predef/os/vms.h -------------------------------------------------------------------------------- /ThirdParty/boost/boost/predef/os/windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/predef/os/windows.h -------------------------------------------------------------------------------- /ThirdParty/boost/boost/predef/other.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/predef/other.h -------------------------------------------------------------------------------- /ThirdParty/boost/boost/predef/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/predef/platform.h -------------------------------------------------------------------------------- /ThirdParty/boost/boost/predef/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/predef/version.h -------------------------------------------------------------------------------- /ThirdParty/boost/boost/preprocessor/cat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/preprocessor/cat.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/preprocessor/dec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/preprocessor/dec.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/preprocessor/for.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/preprocessor/for.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/preprocessor/if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/preprocessor/if.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/preprocessor/inc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/preprocessor/inc.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/preprocessor/max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/preprocessor/max.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/preprocessor/min.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/preprocessor/min.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/preprocessor/seq.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/preprocessor/seq.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/range/adaptors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/range/adaptors.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/range/algorithm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/range/algorithm.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/range/any_range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/range/any_range.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/range/as_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/range/as_array.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/range/as_literal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/range/as_literal.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/range/atl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/range/atl.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/range/begin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/range/begin.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/range/category.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/range/category.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/range/combine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/range/combine.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/range/concepts.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/range/concepts.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/range/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/range/config.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/range/detail/end.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/range/detail/end.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/range/distance.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/range/distance.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/range/empty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/range/empty.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/range/end.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/range/end.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/range/functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/range/functions.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/range/irange.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/range/irange.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/range/iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/range/iterator.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/range/join.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/range/join.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/range/mfc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/range/mfc.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/range/mfc_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/range/mfc_map.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/range/numeric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/range/numeric.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/range/pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/range/pointer.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/range/range_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/range/range_fwd.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/range/rbegin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/range/rbegin.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/range/reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/range/reference.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/range/rend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/range/rend.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/range/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/range/size.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/range/size_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/range/size_type.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/range/sub_range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/range/sub_range.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/range/traversal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/range/traversal.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/range/value_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/range/value_type.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/ref.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/shared_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/shared_ptr.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/static_assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/static_assert.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/system/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/system/config.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/throw_exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/throw_exception.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/token_functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/token_functions.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/token_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/token_iterator.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/tokenizer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/tokenizer.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/type_traits/ice.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/type_traits/ice.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/type_traits/rank.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/type_traits/rank.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/utility.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/utility/binary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/utility/binary.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/utility/declval.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/utility/declval.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/utility/swap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/utility/swap.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost/version.hpp -------------------------------------------------------------------------------- /ThirdParty/boost/boost_d.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/boost/boost_d.props -------------------------------------------------------------------------------- /ThirdParty/dlib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/CMakeLists.txt -------------------------------------------------------------------------------- /ThirdParty/dlib/Debug/dlib.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/Debug/dlib.log -------------------------------------------------------------------------------- /ThirdParty/dlib/Debug/vc140.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/Debug/vc140.pdb -------------------------------------------------------------------------------- /ThirdParty/dlib/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/LICENSE.txt -------------------------------------------------------------------------------- /ThirdParty/dlib/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/README.txt -------------------------------------------------------------------------------- /ThirdParty/dlib/cmake_find_blas.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/cmake_find_blas.txt -------------------------------------------------------------------------------- /ThirdParty/dlib/dlib.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/dlib.props -------------------------------------------------------------------------------- /ThirdParty/dlib/dlib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/dlib.vcxproj -------------------------------------------------------------------------------- /ThirdParty/dlib/dlib.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/dlib.vcxproj.user -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/algs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/algs.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/all/source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/all/source.cpp -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/all_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/all_gui.cpp -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/any.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/any/any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/any/any.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/array.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/array2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/array2d.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/assert.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/base64.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/bayes_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/bayes_utils.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/bigint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/bigint.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/bit_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/bit_stream.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/bridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/bridge.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/bsp.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/bsp/bsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/bsp/bsp.cpp -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/bsp/bsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/bsp/bsp.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/byte_orderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/byte_orderer.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/cassert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/cassert -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/clustering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/clustering.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/cmake -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/config.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/crc32.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/cstring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/cstring -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/data_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/data_io.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/dir_nav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/dir_nav.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/enable_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/enable_if.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/error.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/filtering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/filtering.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/fstream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/fstream -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/geometry.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/graph.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/graph_cuts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/graph_cuts.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/graph_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/graph_utils.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/gui_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/gui_core.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/gui_widgets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/gui_widgets.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/hash.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/hash_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/hash_map.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/hash_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/hash_set.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/hash_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/hash_table.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/image_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/image_io.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/iomanip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/iomanip -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/iosfwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/iosfwd -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/iosockstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/iosockstream.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/iostream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/iostream -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/is_kind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/is_kind.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/istream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/istream -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/linker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/linker.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/locale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/locale -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/logger.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/lsh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/lsh.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/lsh/hashes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/lsh/hashes.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/lz77_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/lz77_buffer.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/lzp_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/lzp_buffer.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/map.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/matrix.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/md5.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/misc_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/misc_api.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/mlp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/mlp.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/noncopyable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/noncopyable.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/opencv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/opencv.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/optimization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/optimization.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/ostream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/ostream -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/pipe.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/pixel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/pixel.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/platform.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/python.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/python.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/python/numpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/python/numpy.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/queue.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/rand.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/ref.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/revision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/revision.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/sequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/sequence.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/serialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/serialize.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/server.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/set.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/set_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/set_utils.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/simd.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/simd/simd4f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/simd/simd4f.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/simd/simd4i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/simd/simd4i.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/simd/simd8f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/simd/simd8f.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/simd/simd8i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/simd/simd8i.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/sockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/sockets.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/sort.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/sqlite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/sqlite.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/sstream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/sstream -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/stack.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/stack_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/stack_trace.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/static_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/static_map.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/static_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/static_set.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/statistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/statistics.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/stl_checked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/stl_checked.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/string.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/string/cassert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/string/cassert -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/string/iomanip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/string/iomanip -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/string/iosfwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/string/iosfwd -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/string/locale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/string/locale -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/svm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/svm.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/svm/function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/svm/function.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/svm/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/svm/kernel.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/svm/kkmeans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/svm/kkmeans.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/svm/krls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/svm/krls.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/svm/null_df.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/svm/null_df.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/svm/pegasos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/svm/pegasos.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/svm/reduced.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/svm/reduced.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/svm/rls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/svm/rls.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/svm/rvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/svm/rvm.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/svm/svm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/svm/svm.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/svm_threaded.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/svm_threaded.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/test/any.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/test/any.cpp -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/test/array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/test/array.cpp -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/test/bsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/test/bsp.cpp -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/test/cca.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/test/cca.cpp -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/test/crc32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/test/crc32.cpp -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/test/face.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/test/face.cpp -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/test/fft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/test/fft.cpp -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/test/fhog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/test/fhog.cpp -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/test/graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/test/graph.cpp -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/test/hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/test/hash.cpp -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/test/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/test/image.cpp -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/test/main.cpp -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/test/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/test/makefile -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/test/map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/test/map.cpp -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/test/md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/test/md5.cpp -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/test/oca.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/test/oca.cpp -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/test/parse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/test/parse.cpp -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/test/pipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/test/pipe.cpp -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/test/pixel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/test/pixel.cpp -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/test/queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/test/queue.cpp -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/test/rand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/test/rand.cpp -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/test/rls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/test/rls.cpp -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/test/set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/test/set.cpp -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/test/sldf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/test/sldf.cpp -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/test/stack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/test/stack.cpp -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/test/svm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/test/svm.cpp -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/test/tester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/test/tester.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/test/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/test/timer.cpp -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/test/tuple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/test/tuple.cpp -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/threads.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/time_this.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/time_this.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/timeout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/timeout.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/timer.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/timer/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/timer/timer.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/timing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/timing.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/tokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/tokenizer.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/tuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/tuple.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/tuple/tuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/tuple/tuple.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/uintn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/uintn.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/unicode.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/vectorstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/vectorstream.h -------------------------------------------------------------------------------- /ThirdParty/dlib/include/dlib/xml_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/include/dlib/xml_parser.h -------------------------------------------------------------------------------- /ThirdParty/dlib/x64/Release/dlib.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/dlib/x64/Release/dlib.log -------------------------------------------------------------------------------- /ThirdParty/tbb/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/tbb/CHANGES -------------------------------------------------------------------------------- /ThirdParty/tbb/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/tbb/COPYING -------------------------------------------------------------------------------- /ThirdParty/tbb/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/tbb/README -------------------------------------------------------------------------------- /ThirdParty/tbb/include/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/tbb/include/index.html -------------------------------------------------------------------------------- /ThirdParty/tbb/include/tbb/aggregator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/tbb/include/tbb/aggregator.h -------------------------------------------------------------------------------- /ThirdParty/tbb/include/tbb/aligned_space.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/tbb/include/tbb/aligned_space.h -------------------------------------------------------------------------------- /ThirdParty/tbb/include/tbb/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/tbb/include/tbb/atomic.h -------------------------------------------------------------------------------- /ThirdParty/tbb/include/tbb/blocked_range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/tbb/include/tbb/blocked_range.h -------------------------------------------------------------------------------- /ThirdParty/tbb/include/tbb/combinable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/tbb/include/tbb/combinable.h -------------------------------------------------------------------------------- /ThirdParty/tbb/include/tbb/compat/ppl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/tbb/include/tbb/compat/ppl.h -------------------------------------------------------------------------------- /ThirdParty/tbb/include/tbb/compat/thread: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/tbb/include/tbb/compat/thread -------------------------------------------------------------------------------- /ThirdParty/tbb/include/tbb/compat/tuple: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/tbb/include/tbb/compat/tuple -------------------------------------------------------------------------------- /ThirdParty/tbb/include/tbb/flow_graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/tbb/include/tbb/flow_graph.h -------------------------------------------------------------------------------- /ThirdParty/tbb/include/tbb/global_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/tbb/include/tbb/global_control.h -------------------------------------------------------------------------------- /ThirdParty/tbb/include/tbb/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/tbb/include/tbb/index.html -------------------------------------------------------------------------------- /ThirdParty/tbb/include/tbb/memory_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/tbb/include/tbb/memory_pool.h -------------------------------------------------------------------------------- /ThirdParty/tbb/include/tbb/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/tbb/include/tbb/mutex.h -------------------------------------------------------------------------------- /ThirdParty/tbb/include/tbb/null_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/tbb/include/tbb/null_mutex.h -------------------------------------------------------------------------------- /ThirdParty/tbb/include/tbb/null_rw_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/tbb/include/tbb/null_rw_mutex.h -------------------------------------------------------------------------------- /ThirdParty/tbb/include/tbb/parallel_do.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/tbb/include/tbb/parallel_do.h -------------------------------------------------------------------------------- /ThirdParty/tbb/include/tbb/parallel_for.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/tbb/include/tbb/parallel_for.h -------------------------------------------------------------------------------- /ThirdParty/tbb/include/tbb/parallel_scan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/tbb/include/tbb/parallel_scan.h -------------------------------------------------------------------------------- /ThirdParty/tbb/include/tbb/parallel_sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/tbb/include/tbb/parallel_sort.h -------------------------------------------------------------------------------- /ThirdParty/tbb/include/tbb/parallel_while.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/tbb/include/tbb/parallel_while.h -------------------------------------------------------------------------------- /ThirdParty/tbb/include/tbb/partitioner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/tbb/include/tbb/partitioner.h -------------------------------------------------------------------------------- /ThirdParty/tbb/include/tbb/pipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/tbb/include/tbb/pipeline.h -------------------------------------------------------------------------------- /ThirdParty/tbb/include/tbb/queuing_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/tbb/include/tbb/queuing_mutex.h -------------------------------------------------------------------------------- /ThirdParty/tbb/include/tbb/runtime_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/tbb/include/tbb/runtime_loader.h -------------------------------------------------------------------------------- /ThirdParty/tbb/include/tbb/spin_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/tbb/include/tbb/spin_mutex.h -------------------------------------------------------------------------------- /ThirdParty/tbb/include/tbb/spin_rw_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/tbb/include/tbb/spin_rw_mutex.h -------------------------------------------------------------------------------- /ThirdParty/tbb/include/tbb/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/tbb/include/tbb/task.h -------------------------------------------------------------------------------- /ThirdParty/tbb/include/tbb/task_arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/tbb/include/tbb/task_arena.h -------------------------------------------------------------------------------- /ThirdParty/tbb/include/tbb/task_group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/tbb/include/tbb/task_group.h -------------------------------------------------------------------------------- /ThirdParty/tbb/include/tbb/tbb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/tbb/include/tbb/tbb.h -------------------------------------------------------------------------------- /ThirdParty/tbb/include/tbb/tbb_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/tbb/include/tbb/tbb_allocator.h -------------------------------------------------------------------------------- /ThirdParty/tbb/include/tbb/tbb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/tbb/include/tbb/tbb_config.h -------------------------------------------------------------------------------- /ThirdParty/tbb/include/tbb/tbb_exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/tbb/include/tbb/tbb_exception.h -------------------------------------------------------------------------------- /ThirdParty/tbb/include/tbb/tbb_machine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/tbb/include/tbb/tbb_machine.h -------------------------------------------------------------------------------- /ThirdParty/tbb/include/tbb/tbb_profiling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/tbb/include/tbb/tbb_profiling.h -------------------------------------------------------------------------------- /ThirdParty/tbb/include/tbb/tbb_stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/tbb/include/tbb/tbb_stddef.h -------------------------------------------------------------------------------- /ThirdParty/tbb/include/tbb/tbb_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/tbb/include/tbb/tbb_thread.h -------------------------------------------------------------------------------- /ThirdParty/tbb/include/tbb/tick_count.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/tbb/include/tbb/tick_count.h -------------------------------------------------------------------------------- /ThirdParty/tbb/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/tbb/index.html -------------------------------------------------------------------------------- /ThirdParty/tbb/lib/x64/v140/tbb.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/tbb/lib/x64/v140/tbb.def -------------------------------------------------------------------------------- /ThirdParty/tbb/lib/x64/v140/tbbmalloc.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/tbb/lib/x64/v140/tbbmalloc.def -------------------------------------------------------------------------------- /ThirdParty/tbb/lib/x86/v140/tbb.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/tbb/lib/x86/v140/tbb.def -------------------------------------------------------------------------------- /ThirdParty/tbb/lib/x86/v140/tbbmalloc.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/tbb/lib/x86/v140/tbbmalloc.def -------------------------------------------------------------------------------- /ThirdParty/tbb/tbb-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/tbb/tbb-license.txt -------------------------------------------------------------------------------- /ThirdParty/tbb/tbb.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/tbb/tbb.props -------------------------------------------------------------------------------- /ThirdParty/tbb/tbb_d.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/ThirdParty/tbb/tbb_d.props -------------------------------------------------------------------------------- /img/OpenFACE_AU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/img/OpenFACE_AU.png -------------------------------------------------------------------------------- /img/OpenFACE_AU2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/img/OpenFACE_AU2.png -------------------------------------------------------------------------------- /img/Screenshot_20180113-041047.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarbanti/OpenFaceUE/HEAD/img/Screenshot_20180113-041047.png --------------------------------------------------------------------------------