├── OpenMoCap ├── .cproject ├── .externalToolBuilders │ └── Qt Moc.launch ├── .gitignore ├── .project ├── .settings │ ├── org.eclipse.cdt.codan.core.prefs │ ├── org.eclipse.cdt.core.prefs │ ├── org.eclipse.cdt.managedbuilder.core.prefs │ └── org.eclipse.ltk.core.refactoring.prefs ├── Docs │ ├── OpenCV-2.2-Compile.txt │ ├── buildingProblems.txt │ ├── codeGuidelines.txt │ ├── develop.txt │ ├── documentation.txt │ └── knownIssues.txt ├── OpenMoCap.log ├── Resources │ ├── camera │ │ └── cameraProperties.ini │ ├── docs │ │ └── Mocap.doxyfile │ ├── imageGUI │ │ └── icons │ │ │ ├── about64.png │ │ │ ├── cam48.png │ │ │ ├── configure64.png │ │ │ ├── start64.png │ │ │ └── stop64.png │ ├── reconstruction │ │ ├── 2points.txt │ │ └── points.txt │ ├── skeleton │ │ ├── chessboard.bvh │ │ └── default.bvh │ ├── tests │ │ ├── 1280bM1.png │ │ ├── 1280bM10.png │ │ ├── 1280bM5.png │ │ ├── 320bM1.png │ │ ├── 320bM10.png │ │ ├── 320bM5.png │ │ ├── 640bM1.png │ │ ├── 640bM10.png │ │ ├── 640bM5.png │ │ ├── a.avi │ │ ├── calibPattern2cm.png │ │ ├── identificacao.jpg │ │ ├── identificacao2.jpg │ │ ├── marker.png │ │ ├── marker2.png │ │ └── p.jpg │ └── vx7000 │ │ ├── vx7000_cal_p01.jpg │ │ ├── vx7000_cal_p02.jpg │ │ ├── vx7000_cal_p03.jpg │ │ ├── vx7000_cal_p04.jpg │ │ ├── vx7000_cal_p05.jpg │ │ ├── vx7000_cal_p06.jpg │ │ ├── vx7000_cal_p07.jpg │ │ ├── vx7000_cal_p08.jpg │ │ ├── vx7000_cal_p09.jpg │ │ ├── vx7000_cal_p10.jpg │ │ ├── vx7000_cal_p11.jpg │ │ ├── vx7000_cal_p12.jpg │ │ └── vx7000_cal_p13.jpg ├── Vendor │ ├── compiler │ │ └── MinGW-gcc440_1.zip │ ├── microsoft │ │ └── lib │ │ │ ├── strmbasd.lib │ │ │ └── strmbase.lib │ ├── mingw │ │ └── winbase.h │ ├── naturalPoint │ │ ├── OptiTrack_1.3.035.exe │ │ └── optitrack.h │ ├── pantheios │ │ ├── backend.h │ │ ├── backends │ │ │ ├── be.N.h │ │ │ ├── be.lrsplit.h │ │ │ ├── bec.ACE.h │ │ │ ├── bec.COMErrorObject.h │ │ │ ├── bec.WindowsConsole.h │ │ │ ├── bec.WindowsDebugger.h │ │ │ ├── bec.WindowsEventLog.h │ │ │ ├── bec.WindowsMessageBox.h │ │ │ ├── bec.WindowsSyslog.h │ │ │ ├── bec.console.h │ │ │ ├── bec.fail.h │ │ │ ├── bec.file.h │ │ │ ├── bec.fprintf.h │ │ │ ├── bec.null.h │ │ │ ├── bec.speech.h │ │ │ ├── bec.syslog.h │ │ │ └── bec.test.h │ │ ├── internal │ │ │ ├── generated │ │ │ │ ├── log_dispatch_functions.h │ │ │ │ ├── log_dispatch_functions.hpp │ │ │ │ ├── log_functions.c │ │ │ │ ├── log_functions.h │ │ │ │ ├── log_functions.hpp │ │ │ │ └── log_sev_functions.hpp │ │ │ ├── initialiser.hpp │ │ │ ├── lean.h │ │ │ ├── nox.h │ │ │ ├── safestr.h │ │ │ ├── stock_levels.hpp │ │ │ ├── string_encoding.h │ │ │ ├── threading.h │ │ │ └── winlean.h │ │ ├── lib │ │ │ ├── libpantheios.1.be.lrsplit.gcc44.mt.a │ │ │ ├── libpantheios.1.bec.file.WithCallback.gcc44.mt.a │ │ │ ├── libpantheios.1.bec.fprintf.WithCallback.gcc44.mt.a │ │ │ ├── libpantheios.1.bel.file.gcc44.mt.a │ │ │ ├── libpantheios.1.ber.fprintf.gcc44.mt.a │ │ │ ├── libpantheios.1.core.gcc44.mt.a │ │ │ └── libpantheios.1.util.gcc44.mt.a │ │ ├── pantheios.h │ │ ├── pantheios.hpp │ │ ├── quality │ │ │ └── contract.h │ │ ├── severity │ │ │ └── levels.hpp │ │ └── util │ │ │ ├── backends │ │ │ ├── arguments.h │ │ │ └── context.hpp │ │ │ ├── com │ │ │ └── exception_helpers.hpp │ │ │ ├── core │ │ │ └── apidefs.hpp │ │ │ ├── memory │ │ │ ├── auto_buffer_selector.hpp │ │ │ └── inserters.hpp │ │ │ ├── severity │ │ │ ├── ACE.h │ │ │ ├── WindowsEventLog.h │ │ │ └── syslog.h │ │ │ ├── string │ │ │ ├── snprintf.h │ │ │ └── strdup.h │ │ │ ├── system │ │ │ ├── hostname.h │ │ │ ├── processid.h │ │ │ └── threadid.h │ │ │ ├── test │ │ │ ├── compiler_warnings_suppression.first_include.h │ │ │ └── compiler_warnings_suppression.last_include.h │ │ │ └── time │ │ │ └── currenttime.h │ ├── stlsoft │ │ ├── comstl │ │ │ ├── collections │ │ │ │ ├── collection_sequence.hpp │ │ │ │ ├── enumeration_policies.hpp │ │ │ │ ├── enumerator_sequence.hpp │ │ │ │ ├── safearray_sequence.hpp │ │ │ │ └── unittest │ │ │ │ │ └── _recls_COM_decl_.h │ │ │ ├── comstl.h │ │ │ ├── conversion │ │ │ │ ├── interface_cast.hpp │ │ │ │ └── method_cast.hpp │ │ │ ├── error │ │ │ │ ├── bad_interface_cast.hpp │ │ │ │ ├── errorinfo_desc.hpp │ │ │ │ ├── errorinfo_functions.h │ │ │ │ ├── excepinfo_functions.h │ │ │ │ └── exceptions.hpp │ │ │ ├── functional │ │ │ │ ├── com_predicate_adaptors.hpp │ │ │ │ ├── functionals.hpp │ │ │ │ ├── interface_functionals.hpp │ │ │ │ └── type_functionals.hpp │ │ │ ├── interface │ │ │ │ ├── bad_interface_cast.hpp │ │ │ │ ├── interface_cast.hpp │ │ │ │ └── interface_traits.hpp │ │ │ ├── internal │ │ │ │ └── interface_traits_std.hpp │ │ │ ├── memory │ │ │ │ ├── functions.h │ │ │ │ └── task_allocator.hpp │ │ │ ├── security │ │ │ │ └── security_initialisers.hpp │ │ │ ├── shims │ │ │ │ └── access │ │ │ │ │ ├── string.hpp │ │ │ │ │ └── string │ │ │ │ │ ├── guid.hpp │ │ │ │ │ └── variant.hpp │ │ │ ├── smartptr │ │ │ │ └── interface_ptr.hpp │ │ │ ├── speech │ │ │ │ └── sapi_util.hpp │ │ │ ├── string │ │ │ │ ├── BSTR_functions.h │ │ │ │ ├── bstr.hpp │ │ │ │ └── olestring_functions.h │ │ │ └── util │ │ │ │ ├── CY_functions.h │ │ │ │ ├── DECIMAL_functions.h │ │ │ │ ├── VARIANT_functions.h │ │ │ │ ├── acyclic_connector.hpp │ │ │ │ ├── creation_functions.hpp │ │ │ │ ├── guid.hpp │ │ │ │ ├── initialisers.hpp │ │ │ │ ├── interface_traits.hpp │ │ │ │ ├── object_functions.h │ │ │ │ ├── refcount_functions.h │ │ │ │ ├── rot_functions.h │ │ │ │ ├── stream_functions.h │ │ │ │ ├── thread_marshal.hpp │ │ │ │ ├── value_policies.hpp │ │ │ │ └── variant.hpp │ │ ├── platformstl │ │ │ ├── dl │ │ │ │ └── module.hpp │ │ │ ├── error │ │ │ │ ├── error_desc.hpp │ │ │ │ └── exceptions.hpp │ │ │ ├── filesystem │ │ │ │ ├── current_directory.hpp │ │ │ │ ├── current_directory_scope.hpp │ │ │ │ ├── cwd_stack.hpp │ │ │ │ ├── directory_functions.hpp │ │ │ │ ├── file_lines.hpp │ │ │ │ ├── file_path_buffer.hpp │ │ │ │ ├── filesystem_traits.hpp │ │ │ │ ├── memory_mapped_file.hpp │ │ │ │ ├── path.hpp │ │ │ │ ├── path_functions.hpp │ │ │ │ ├── pipe.hpp │ │ │ │ └── readdir_sequence.hpp │ │ │ ├── performance │ │ │ │ ├── performance_counter.hpp │ │ │ │ └── processtimes_counter.hpp │ │ │ ├── platformstl.h │ │ │ ├── platformstl.hpp │ │ │ ├── synch │ │ │ │ ├── atomic_functions.h │ │ │ │ ├── atomic_types.h │ │ │ │ ├── process_mutex.hpp │ │ │ │ ├── semaphore.hpp │ │ │ │ ├── sleep_functions.h │ │ │ │ ├── spin_mutex.hpp │ │ │ │ ├── thread_mutex.hpp │ │ │ │ ├── tss_index.hpp │ │ │ │ └── util │ │ │ │ │ └── features.h │ │ │ └── system │ │ │ │ ├── environment_map.hpp │ │ │ │ ├── environment_variable_traits.hpp │ │ │ │ └── system_traits.hpp │ │ ├── stlsoft │ │ │ ├── algorithms.hpp │ │ │ ├── algorithms │ │ │ │ ├── bounded.hpp │ │ │ │ ├── collection.hpp │ │ │ │ ├── debug.hpp │ │ │ │ ├── deprecated.hpp │ │ │ │ ├── pod.hpp │ │ │ │ ├── std │ │ │ │ │ ├── alt.hpp │ │ │ │ │ └── ext.hpp │ │ │ │ └── unordered.hpp │ │ │ ├── collections │ │ │ │ ├── array_proxy.hpp │ │ │ │ ├── array_view.hpp │ │ │ │ ├── associative_adaptor_sequences.hpp │ │ │ │ ├── associative_container_veneer.hpp │ │ │ │ ├── associative_key_sequence.hpp │ │ │ │ ├── associative_mapped_type_detector.hpp │ │ │ │ ├── associative_value_sequence.hpp │ │ │ │ ├── collections.hpp │ │ │ │ ├── functions.hpp │ │ │ │ ├── sequence_container_veneer.hpp │ │ │ │ └── util │ │ │ │ │ ├── associative_mapped_type_detector.hpp │ │ │ │ │ └── collections.hpp │ │ │ ├── containers │ │ │ │ ├── array_policies.hpp │ │ │ │ ├── environment_block.hpp │ │ │ │ ├── fixed_array.hpp │ │ │ │ ├── frequency_map.hpp │ │ │ │ ├── pod_vector.hpp │ │ │ │ ├── static_array.hpp │ │ │ │ ├── unsorted_map.hpp │ │ │ │ └── util │ │ │ │ │ └── array_policies.hpp │ │ │ ├── conversion │ │ │ │ ├── any_cast.hpp │ │ │ │ ├── byte_format_functions.hpp │ │ │ │ ├── char_conversions.hpp │ │ │ │ ├── explicit_cast.hpp │ │ │ │ ├── integer_to_string.hpp │ │ │ │ ├── internal │ │ │ │ │ └── explicit_cast_specialisations.hpp │ │ │ │ ├── literal_cast.hpp │ │ │ │ ├── m2w.hpp │ │ │ │ ├── number │ │ │ │ │ └── grouping_functions.hpp │ │ │ │ ├── ptr_cast.hpp │ │ │ │ ├── sap_cast.hpp │ │ │ │ ├── truncation_cast.hpp │ │ │ │ ├── truncation_test.hpp │ │ │ │ ├── union_cast.hpp │ │ │ │ └── w2m.hpp │ │ │ ├── error │ │ │ │ ├── active_end_iterator_exhaustion.hpp │ │ │ │ ├── contract_violation.hpp │ │ │ │ ├── conversion_error.hpp │ │ │ │ ├── errno_scope.hpp │ │ │ │ ├── error_desc.hpp │ │ │ │ ├── exceptions.hpp │ │ │ │ ├── external_iterator_invalidation.hpp │ │ │ │ ├── iteration_interruption.hpp │ │ │ │ ├── os_exception.hpp │ │ │ │ ├── project_exception.hpp │ │ │ │ ├── throw_policies.hpp │ │ │ │ └── unrecoverable.hpp │ │ │ ├── exceptions │ │ │ │ ├── active_end_iterator_exhaustion.hpp │ │ │ │ ├── contract_violation.hpp │ │ │ │ ├── external_iterator_invalidation.hpp │ │ │ │ ├── iteration_interruption.hpp │ │ │ │ └── unrecoverable.hpp │ │ │ ├── filesystem │ │ │ │ ├── io_functions.hpp │ │ │ │ ├── read_line.hpp │ │ │ │ └── searchspec_sequence.hpp │ │ │ ├── function_adaptors │ │ │ │ └── ref2ptr.hpp │ │ │ ├── functional │ │ │ │ ├── access_predicates.hpp │ │ │ │ ├── composite_predicates.hpp │ │ │ │ ├── equal_ptr.hpp │ │ │ │ ├── function_adaptors.hpp │ │ │ │ ├── function_pointer_adaptors.hpp │ │ │ │ ├── indirect_function_pointer_adaptors.hpp │ │ │ │ ├── method_adaptors.hpp │ │ │ │ ├── noop.hpp │ │ │ │ └── procedure_adaptors.hpp │ │ │ ├── internal │ │ │ │ ├── _undefs.h │ │ │ │ ├── cccap │ │ │ │ │ ├── borland.h │ │ │ │ │ ├── como.h │ │ │ │ │ ├── dmc.h │ │ │ │ │ ├── gcc.h │ │ │ │ │ ├── intel.h │ │ │ │ │ ├── msvc.h │ │ │ │ │ ├── mwerks.h │ │ │ │ │ ├── obsolete.h │ │ │ │ │ ├── sunpro.h │ │ │ │ │ ├── unknown.h │ │ │ │ │ ├── vectorc.h │ │ │ │ │ └── watcom.h │ │ │ │ └── safestr.h │ │ │ ├── iterators │ │ │ │ ├── adapted_iterator_traits.hpp │ │ │ │ ├── associative_select_iterator.hpp │ │ │ │ ├── c_str_inserter.hpp │ │ │ │ ├── common │ │ │ │ │ └── string_concatenation_flags.hpp │ │ │ │ ├── contiguous_diluter_iterator.hpp │ │ │ │ ├── cstring_concatenator_iterator.hpp │ │ │ │ ├── filter_iterator.hpp │ │ │ │ ├── filter_transform_iterator.hpp │ │ │ │ ├── index_iterator.hpp │ │ │ │ ├── indirect_reverse_iterator.hpp │ │ │ │ ├── member_selector_iterator.hpp │ │ │ │ ├── null_output_iterator.hpp │ │ │ │ ├── ostream_iterator.hpp │ │ │ │ ├── string_concatenator_iterator.hpp │ │ │ │ ├── transform_filter_iterator.hpp │ │ │ │ ├── transform_iterator.hpp │ │ │ │ └── unary_function_output_iterator_adaptor.hpp │ │ │ ├── memory │ │ │ │ ├── allocator_base.hpp │ │ │ │ ├── allocator_features.hpp │ │ │ │ ├── allocator_selector.hpp │ │ │ │ ├── auto_buffer.hpp │ │ │ │ ├── auto_destructor.hpp │ │ │ │ ├── malloc_allocator.hpp │ │ │ │ ├── new_allocator.hpp │ │ │ │ └── null_allocator.hpp │ │ │ ├── meta │ │ │ │ ├── add_qualifier.hpp │ │ │ │ ├── base_type_traits.hpp │ │ │ │ ├── capabilities.hpp │ │ │ │ ├── detector │ │ │ │ │ ├── has_const_iterator.hpp │ │ │ │ │ ├── has_const_pointer.hpp │ │ │ │ │ ├── has_const_reference.hpp │ │ │ │ │ ├── has_difference_type.hpp │ │ │ │ │ ├── has_distance_type.hpp │ │ │ │ │ ├── has_iterator.hpp │ │ │ │ │ ├── has_iterator_category.hpp │ │ │ │ │ ├── has_key_type.hpp │ │ │ │ │ ├── has_mapped_type.hpp │ │ │ │ │ ├── has_pointer.hpp │ │ │ │ │ ├── has_pointer_type.hpp │ │ │ │ │ ├── has_reference.hpp │ │ │ │ │ ├── has_reference_type.hpp │ │ │ │ │ ├── has_referent_type.hpp │ │ │ │ │ └── has_value_type.hpp │ │ │ │ ├── detectors.hpp │ │ │ │ ├── is_array_type.hpp │ │ │ │ ├── is_bool_type.hpp │ │ │ │ ├── is_character_type.hpp │ │ │ │ ├── is_class_type.hpp │ │ │ │ ├── is_compound_type.hpp │ │ │ │ ├── is_const_type.hpp │ │ │ │ ├── is_floating_point_type.hpp │ │ │ │ ├── is_function_pointer_type.hpp │ │ │ │ ├── is_fundamental_type.hpp │ │ │ │ ├── is_integral_type.hpp │ │ │ │ ├── is_numeric_type.hpp │ │ │ │ ├── is_pointer_type.hpp │ │ │ │ ├── is_same_type.hpp │ │ │ │ ├── is_signed_type.hpp │ │ │ │ ├── is_void_type.hpp │ │ │ │ ├── is_volatile_type.hpp │ │ │ │ ├── make_value_type.hpp │ │ │ │ ├── member_traits.hpp │ │ │ │ ├── n_types.hpp │ │ │ │ ├── select_first_type_if.hpp │ │ │ │ ├── size_of.hpp │ │ │ │ ├── typefixer │ │ │ │ │ ├── difference_type.hpp │ │ │ │ │ ├── iterator.hpp │ │ │ │ │ ├── mapped_type.hpp │ │ │ │ │ ├── pointer.hpp │ │ │ │ │ ├── pointer_type.hpp │ │ │ │ │ ├── reference.hpp │ │ │ │ │ ├── reference_type.hpp │ │ │ │ │ ├── referent_type.hpp │ │ │ │ │ └── typefixer.hpp │ │ │ │ ├── typefixers.hpp │ │ │ │ ├── util │ │ │ │ │ └── meta_.hpp │ │ │ │ └── yesno.hpp │ │ │ ├── obsolete │ │ │ │ ├── address_hiding_veneer.hpp │ │ │ │ ├── container_base.hpp │ │ │ │ ├── conversion_veneer.hpp │ │ │ │ ├── explicit_inheritance_veneer.hpp │ │ │ │ ├── first_class_promoter.hpp │ │ │ │ ├── functional.hpp │ │ │ │ ├── functionals.hpp │ │ │ │ ├── inheritance_disambiguator.hpp │ │ │ │ ├── meta.hpp │ │ │ │ ├── outer_initialiser.hpp │ │ │ │ ├── proxy_iterator.hpp │ │ │ │ └── proxy_sequence.hpp │ │ │ ├── performance │ │ │ │ ├── performance_counter_init.hpp │ │ │ │ └── performance_counter_scope.hpp │ │ │ ├── properties │ │ │ │ ├── field_properties.hpp │ │ │ │ └── method_properties.hpp │ │ │ ├── shims │ │ │ │ ├── access │ │ │ │ │ ├── string.hpp │ │ │ │ │ └── string │ │ │ │ │ │ ├── fwd.h │ │ │ │ │ │ └── std │ │ │ │ │ │ ├── basic_string.hpp │ │ │ │ │ │ ├── c_string.h │ │ │ │ │ │ ├── exception.hpp │ │ │ │ │ │ └── time.hpp │ │ │ │ ├── attribute │ │ │ │ │ ├── get_FILE_ptr.hpp │ │ │ │ │ ├── get_FILE_ptr │ │ │ │ │ │ └── std │ │ │ │ │ │ │ └── fundamental.h │ │ │ │ │ ├── get_ptr.hpp │ │ │ │ │ └── get_ptr │ │ │ │ │ │ └── std │ │ │ │ │ │ ├── auto_ptr.hpp │ │ │ │ │ │ └── fundamental.hpp │ │ │ │ ├── conversion │ │ │ │ │ ├── to_uint64.hpp │ │ │ │ │ └── to_uint64 │ │ │ │ │ │ ├── degenerate.hpp │ │ │ │ │ │ └── std │ │ │ │ │ │ └── fundamental.hpp │ │ │ │ └── logical │ │ │ │ │ ├── is_empty.hpp │ │ │ │ │ └── is_empty │ │ │ │ │ ├── std │ │ │ │ │ └── container.hpp │ │ │ │ │ └── util │ │ │ │ │ └── features.hpp │ │ │ ├── smartptr │ │ │ │ ├── proxy_ptr.hpp │ │ │ │ ├── ref_ptr.hpp │ │ │ │ ├── scoped_handle.hpp │ │ │ │ ├── scoped_handle_borland_.hpp │ │ │ │ └── shared_ptr.hpp │ │ │ ├── std │ │ │ │ ├── cbase_.hpp │ │ │ │ ├── cstdlib.hpp │ │ │ │ └── cstring.hpp │ │ │ ├── stlsoft.h │ │ │ ├── string │ │ │ │ ├── case_functions.hpp │ │ │ │ ├── char_alt_traits.hpp │ │ │ │ ├── char_traits.hpp │ │ │ │ ├── charset_tokeniser.hpp │ │ │ │ ├── container_slice_functions.hpp │ │ │ │ ├── copy_functions.hpp │ │ │ │ ├── cstring_functions.hpp │ │ │ │ ├── cstring_maker.hpp │ │ │ │ ├── ctype_traits.hpp │ │ │ │ ├── fast_string_concatenator.hpp │ │ │ │ ├── functionals.hpp │ │ │ │ ├── shim_string.hpp │ │ │ │ ├── shim_string_vc5_.hpp │ │ │ │ ├── simple_string.hpp │ │ │ │ ├── slice_functions.hpp │ │ │ │ ├── special_string_instance.hpp │ │ │ │ ├── split_functions.hpp │ │ │ │ ├── static_string.hpp │ │ │ │ ├── string_tokeniser.hpp │ │ │ │ ├── string_traits.hpp │ │ │ │ ├── string_traits_fwd.hpp │ │ │ │ ├── string_view.hpp │ │ │ │ ├── tokeniser_functions.hpp │ │ │ │ ├── trim_functions.hpp │ │ │ │ └── view_slice_functions.hpp │ │ │ ├── synch │ │ │ │ ├── checkout_token.hpp │ │ │ │ ├── concepts.hpp │ │ │ │ ├── lock_scope.hpp │ │ │ │ ├── null_mutex.hpp │ │ │ │ ├── singlethreaded_tss_index.hpp │ │ │ │ └── spin_policies.hpp │ │ │ ├── system │ │ │ │ ├── cmdargs.hpp │ │ │ │ └── commandline_parser.hpp │ │ │ └── util │ │ │ │ ├── 64bit_integers.hpp │ │ │ │ ├── argument_proxies.hpp │ │ │ │ ├── compiler_optimisation_traits.hpp │ │ │ │ ├── constraints.hpp │ │ │ │ ├── exception_string.hpp │ │ │ │ ├── forward_enums.hpp │ │ │ │ ├── inert.hpp │ │ │ │ ├── integral_printf_traits.hpp │ │ │ │ ├── limit_traits.h │ │ │ │ ├── minmax.hpp │ │ │ │ ├── must_init.hpp │ │ │ │ ├── null.hpp │ │ │ │ ├── nulldef.h │ │ │ │ ├── operator_bool.hpp │ │ │ │ ├── operator_bool_adaptor.hpp │ │ │ │ ├── options_verifier.hpp │ │ │ │ ├── pair.hpp │ │ │ │ ├── placement_aid.hpp │ │ │ │ ├── pod_veneer.hpp │ │ │ │ ├── printf_traits.hpp │ │ │ │ ├── remove_from_scope.hpp │ │ │ │ ├── sign_traits.hpp │ │ │ │ ├── size_traits.hpp │ │ │ │ ├── static_initialisers.hpp │ │ │ │ ├── std │ │ │ │ ├── algorithm.hpp │ │ │ │ ├── dinkumware_iterator_traits.hpp │ │ │ │ ├── iterator_category_limiters.hpp │ │ │ │ ├── iterator_generators.hpp │ │ │ │ ├── iterator_helper.hpp │ │ │ │ ├── library_discriminator.hpp │ │ │ │ ├── stdio_overload_detectors.hpp │ │ │ │ └── utility.hpp │ │ │ │ ├── std_swap.hpp │ │ │ │ ├── trip_bool.hpp │ │ │ │ ├── true_typedef.hpp │ │ │ │ ├── unused_return_value_monitor.hpp │ │ │ │ ├── zero.hpp │ │ │ │ └── zerodef.h │ │ └── winstl │ │ │ ├── clipboard │ │ │ ├── clipboard_format_sequence.hpp │ │ │ ├── clipboard_scope.hpp │ │ │ ├── error │ │ │ │ └── exceptions.hpp │ │ │ └── exceptions.hpp │ │ │ ├── control_panel │ │ │ ├── applet_module.hpp │ │ │ ├── error │ │ │ │ └── exceptions.hpp │ │ │ ├── exceptions.hpp │ │ │ └── functions.h │ │ │ ├── controls │ │ │ ├── combobox_sequence.hpp │ │ │ ├── commctrl_functionals.hpp │ │ │ ├── commctrl_functions.h │ │ │ ├── creation_functions.h │ │ │ ├── dialog_functionals.hpp │ │ │ ├── edit_line_sequence.hpp │ │ │ ├── functionals.hpp │ │ │ ├── functions.h │ │ │ ├── listbox_const_iterator.hpp │ │ │ ├── listbox_data_const_iterator.hpp │ │ │ ├── listbox_data_sequence.hpp │ │ │ ├── listbox_sequence.hpp │ │ │ ├── listview_sequence.hpp │ │ │ └── treeview_sequence.hpp │ │ │ ├── conversion │ │ │ ├── char_conversions.hpp │ │ │ ├── int_to_string.hpp │ │ │ ├── number │ │ │ │ └── grouping_functions.hpp │ │ │ ├── resource_id.hpp │ │ │ ├── w2m.hpp │ │ │ └── windows_type_conversions.hpp │ │ │ ├── dl │ │ │ ├── dl_call.hpp │ │ │ └── module.hpp │ │ │ ├── error │ │ │ ├── conversion_error.hpp │ │ │ ├── error_desc.hpp │ │ │ ├── error_functions.h │ │ │ ├── exceptions.hpp │ │ │ └── last_error_scope.hpp │ │ │ ├── filesystem │ │ │ ├── absolute_path.hpp │ │ │ ├── current_directory.hpp │ │ │ ├── current_directory_scope.hpp │ │ │ ├── directory_functions.hpp │ │ │ ├── file_creation_functions.h │ │ │ ├── file_functions.hpp │ │ │ ├── file_path_buffer.hpp │ │ │ ├── filesystem_traits.hpp │ │ │ ├── findfile_sequence.hpp │ │ │ ├── findvolume_sequence.hpp │ │ │ ├── functionals.hpp │ │ │ ├── memory_mapped_file.hpp │ │ │ ├── path.hpp │ │ │ ├── path_functions.hpp │ │ │ └── pipe.hpp │ │ │ ├── functional │ │ │ ├── message.hpp │ │ │ └── window.hpp │ │ │ ├── memory │ │ │ ├── global_allocator.hpp │ │ │ ├── heapwalk_sequence.hpp │ │ │ ├── netapi_allocator.hpp │ │ │ ├── processheap_allocator.hpp │ │ │ └── shell_allocator.hpp │ │ │ ├── performance │ │ │ ├── highperformance_counter.hpp │ │ │ ├── multimedia_counter.hpp │ │ │ ├── performance_counter.hpp │ │ │ ├── processtimes_counter.hpp │ │ │ ├── systemtime_counter.hpp │ │ │ ├── threadtimes_counter.hpp │ │ │ └── tick_counter.hpp │ │ │ ├── process │ │ │ └── functions.h │ │ │ ├── registry │ │ │ ├── defs.hpp │ │ │ ├── error │ │ │ │ └── exceptions.hpp │ │ │ ├── exceptions.hpp │ │ │ ├── functions.hpp │ │ │ ├── reg_key.hpp │ │ │ ├── reg_key_sequence.hpp │ │ │ ├── reg_traits.hpp │ │ │ ├── reg_value.hpp │ │ │ ├── reg_value_sequence.hpp │ │ │ ├── regfwd.hpp │ │ │ ├── registry.hpp │ │ │ ├── shared_handles.hpp │ │ │ └── util │ │ │ │ ├── defs.hpp │ │ │ │ └── shared_handles.hpp │ │ │ ├── security │ │ │ ├── acl_sequence.hpp │ │ │ └── token_information.hpp │ │ │ ├── shell │ │ │ ├── browse_for_folder.hpp │ │ │ ├── drophandle_sequence.hpp │ │ │ ├── file_operations.hpp │ │ │ ├── memory │ │ │ │ └── functions.h │ │ │ └── memory_functions.h │ │ │ ├── shims │ │ │ ├── access │ │ │ │ ├── string.hpp │ │ │ │ └── string │ │ │ │ │ ├── HWND.hpp │ │ │ │ │ ├── LSA_UNICODE_STRING.hpp │ │ │ │ │ └── time.hpp │ │ │ ├── attribute │ │ │ │ ├── get_HKEY.hpp │ │ │ │ ├── get_HWND.hpp │ │ │ │ ├── get_kernel_handle.hpp │ │ │ │ └── get_synch_handle.hpp │ │ │ └── conversion │ │ │ │ ├── to_DATE.hpp │ │ │ │ ├── to_DATE │ │ │ │ ├── DATE.hpp │ │ │ │ ├── FILETIME.hpp │ │ │ │ ├── SYSTEMTIME.hpp │ │ │ │ └── UDATE.hpp │ │ │ │ ├── to_FILETIME.hpp │ │ │ │ ├── to_FILETIME │ │ │ │ ├── DATE.hpp │ │ │ │ ├── FILETIME.hpp │ │ │ │ ├── SYSTEMTIME.hpp │ │ │ │ └── UDATE.hpp │ │ │ │ ├── to_SYSTEMTIME.hpp │ │ │ │ ├── to_SYSTEMTIME │ │ │ │ ├── DATE.hpp │ │ │ │ ├── FILETIME.hpp │ │ │ │ ├── SYSTEMTIME.hpp │ │ │ │ └── UDATE.hpp │ │ │ │ ├── to_uint64.hpp │ │ │ │ └── to_uint64 │ │ │ │ ├── ULARGE_INTEGER.hpp │ │ │ │ └── WIN32_FIND_DATA.hpp │ │ │ ├── string │ │ │ └── resource_string.hpp │ │ │ ├── synch │ │ │ ├── atomic_functions.h │ │ │ ├── atomic_types.h │ │ │ ├── error │ │ │ │ └── exceptions.hpp │ │ │ ├── event.hpp │ │ │ ├── exceptions.hpp │ │ │ ├── functions.hpp │ │ │ ├── process_mutex.hpp │ │ │ ├── semaphore.hpp │ │ │ ├── sleep_functions.h │ │ │ ├── spin_mutex.hpp │ │ │ ├── synchfwd.hpp │ │ │ ├── thread_mutex.hpp │ │ │ ├── tss_index.hpp │ │ │ └── wait_functions.hpp │ │ │ ├── system │ │ │ ├── commandline_parser.hpp │ │ │ ├── console_colour_scope.hpp │ │ │ ├── console_ctrl_handler_scope.hpp │ │ │ ├── console_functions.h │ │ │ ├── environment_block.hpp │ │ │ ├── environment_sequence.hpp │ │ │ ├── environment_variable.hpp │ │ │ ├── module_directory.hpp │ │ │ ├── module_filename.hpp │ │ │ ├── pid_sequence.hpp │ │ │ ├── process_module_sequence.hpp │ │ │ ├── searchpath_sequence.hpp │ │ │ ├── system_directory.hpp │ │ │ ├── system_info.hpp │ │ │ ├── system_traits.hpp │ │ │ ├── system_version.hpp │ │ │ ├── version_info.hpp │ │ │ └── windows_directory.hpp │ │ │ ├── time │ │ │ ├── comparison_functions.h │ │ │ ├── conversion_functions.h │ │ │ ├── format_functions.h │ │ │ ├── format_functions.hpp │ │ │ └── functions.h │ │ │ ├── toolhelp │ │ │ ├── error │ │ │ │ └── exceptions.hpp │ │ │ ├── exceptions.hpp │ │ │ ├── heap_sequence.hpp │ │ │ ├── module_sequence.hpp │ │ │ ├── process_sequence.hpp │ │ │ ├── sequence_base.hpp │ │ │ ├── sequence_value_traits.hpp │ │ │ └── thread_sequence.hpp │ │ │ ├── util │ │ │ ├── struct_initialisers.hpp │ │ │ └── undocumented.hpp │ │ │ ├── window │ │ │ ├── colour_constants.h │ │ │ ├── creation_functions.h │ │ │ ├── font_functions.h │ │ │ ├── functions.h │ │ │ ├── gdi_functions.h │ │ │ ├── hdc_scope.hpp │ │ │ ├── menu_functions.h │ │ │ ├── message_functions.h │ │ │ ├── scale_functions.h │ │ │ ├── setcursor_scope.hpp │ │ │ ├── setfocus_scope.hpp │ │ │ ├── textmetrics_functions.h │ │ │ ├── util │ │ │ │ └── ident_.hpp │ │ │ ├── window_enable_scope.hpp │ │ │ ├── window_icon_scope.hpp │ │ │ ├── window_redraw_scope.hpp │ │ │ ├── window_text_scope.hpp │ │ │ ├── window_traits.hpp │ │ │ ├── window_update_scope.hpp │ │ │ ├── window_visible_scope.hpp │ │ │ ├── zorder_iterator.hpp │ │ │ └── zorder_sequences.hpp │ │ │ └── winstl.h │ └── videoInput │ │ ├── lib │ │ └── libvideoInput.a │ │ └── videoInput.h ├── saida.txt └── src │ ├── Calibration │ ├── AbstractCalibrator.h │ ├── DifferentialEvolutionCalibrator.cpp │ ├── DifferentialEvolutionCalibrator.h │ ├── Individual.cpp │ ├── Individual.h │ ├── ZhangCalibrator.cpp │ └── ZhangCalibrator.h │ ├── Controllers │ ├── CaptureController.cpp │ ├── CaptureController.h │ ├── VideoController.cpp │ └── VideoController.h │ ├── Entities │ ├── AbstractCamera.cpp │ ├── AbstractCamera.h │ ├── DirectShowCamera.cpp │ ├── DirectShowCamera.h │ ├── DummyCamera.cpp │ ├── DummyCamera.h │ ├── Joint.cpp │ ├── Joint.h │ ├── OptiTrackCamera.cpp │ ├── OptiTrackCamera.h │ ├── POI.cpp │ ├── POI.h │ ├── Skeleton.cpp │ ├── Skeleton.h │ ├── VideoCamera.cpp │ └── VideoCamera.h │ ├── Enums │ ├── AbstractEnum.h │ ├── CalibrationAlgorithmEnum.cpp │ ├── CalibrationAlgorithmEnum.h │ ├── CalibrationResultEnum.cpp │ ├── CalibrationResultEnum.h │ ├── CaptureStatusEnum.cpp │ ├── CaptureStatusEnum.h │ ├── POIFinderAlgorithmEnum.cpp │ ├── POIFinderAlgorithmEnum.h │ ├── ReconstructionAlgorithmEnum.cpp │ ├── ReconstructionAlgorithmEnum.h │ ├── TrackingAlgorithmEnum.cpp │ ├── TrackingAlgorithmEnum.h │ ├── VideoStatusEnum.cpp │ └── VideoStatusEnum.h │ ├── Gui │ ├── Dialogs │ │ ├── CameraInformationDialog.cpp │ │ ├── CameraInformationDialog.h │ │ ├── CameraInformationDialog.moc │ │ ├── POISemanticSelectionDialog.cpp │ │ ├── POISemanticSelectionDialog.h │ │ ├── POISemanticSelectionDialog.moc │ │ ├── PreviewUndistortDialog.cpp │ │ ├── PreviewUndistortDialog.h │ │ ├── PreviewUndistortDialog.moc │ │ ├── StereoVisionCalibrationDialog.cpp │ │ ├── StereoVisionCalibrationDialog.h │ │ └── StereoVisionCalibrationDialog.moc │ ├── MainWindow.cpp │ ├── MainWindow.h │ ├── MainWindow.moc │ ├── Makefile │ ├── Widgets │ │ ├── CameraComboBox.cpp │ │ ├── CameraComboBox.h │ │ ├── CameraComboBox.moc │ │ ├── CameraWidget.cpp │ │ ├── CameraWidget.h │ │ ├── CameraWidget.moc │ │ ├── ImageWidget.cpp │ │ ├── ImageWidget.h │ │ ├── ImageWidget.moc │ │ ├── POIsImageWidget.cpp │ │ ├── POIsImageWidget.h │ │ ├── POIsImageWidget.moc │ │ ├── ThreeDWidget.cpp │ │ ├── ThreeDWidget.h │ │ └── ThreeDWidget.moc │ └── application.qrc │ ├── Input │ ├── BvhReader.cpp │ └── BvhReader.h │ ├── Mocap.cpp │ ├── Mocap.h │ ├── Output │ ├── AbstractOutputWriter.h │ ├── TrcFileWriter.cpp │ └── TrcFileWriter.h │ ├── Reconstruction │ ├── AbstractReconstructor.cpp │ ├── AbstractReconstructor.h │ ├── BasicReconstructor.cpp │ └── BasicReconstructor.h │ ├── Tracking │ ├── AbstractPOIFinder.cpp │ ├── AbstractPOIFinder.h │ ├── AbstractTracker.cpp │ ├── AbstractTracker.h │ ├── AlphaBetaGammaFilter.cpp │ ├── AlphaBetaGammaFilter.h │ ├── Blob.cpp │ ├── Blob.h │ ├── BlobExtractor.cpp │ ├── BlobExtractor.h │ ├── Condensation.cpp │ ├── Condensation.h │ ├── KalmanFilter.cpp │ └── KalmanFilter.h │ └── Utils │ ├── AbstractThread.cpp │ ├── AbstractThread.h │ ├── Debug.cpp │ ├── Debug.h │ ├── Image.h │ ├── Log.cpp │ ├── Log.h │ ├── Timer.cpp │ ├── Timer.h │ └── Utils.h └── README.md /OpenMoCap/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/.cproject -------------------------------------------------------------------------------- /OpenMoCap/.externalToolBuilders/Qt Moc.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/.externalToolBuilders/Qt Moc.launch -------------------------------------------------------------------------------- /OpenMoCap/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /OpenMoCap/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/.project -------------------------------------------------------------------------------- /OpenMoCap/.settings/org.eclipse.cdt.codan.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/.settings/org.eclipse.cdt.codan.core.prefs -------------------------------------------------------------------------------- /OpenMoCap/.settings/org.eclipse.cdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/.settings/org.eclipse.cdt.core.prefs -------------------------------------------------------------------------------- /OpenMoCap/.settings/org.eclipse.cdt.managedbuilder.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/.settings/org.eclipse.cdt.managedbuilder.core.prefs -------------------------------------------------------------------------------- /OpenMoCap/.settings/org.eclipse.ltk.core.refactoring.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/.settings/org.eclipse.ltk.core.refactoring.prefs -------------------------------------------------------------------------------- /OpenMoCap/Docs/OpenCV-2.2-Compile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Docs/OpenCV-2.2-Compile.txt -------------------------------------------------------------------------------- /OpenMoCap/Docs/buildingProblems.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Docs/buildingProblems.txt -------------------------------------------------------------------------------- /OpenMoCap/Docs/codeGuidelines.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Docs/codeGuidelines.txt -------------------------------------------------------------------------------- /OpenMoCap/Docs/develop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Docs/develop.txt -------------------------------------------------------------------------------- /OpenMoCap/Docs/documentation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Docs/documentation.txt -------------------------------------------------------------------------------- /OpenMoCap/Docs/knownIssues.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Docs/knownIssues.txt -------------------------------------------------------------------------------- /OpenMoCap/OpenMoCap.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/OpenMoCap.log -------------------------------------------------------------------------------- /OpenMoCap/Resources/camera/cameraProperties.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Resources/camera/cameraProperties.ini -------------------------------------------------------------------------------- /OpenMoCap/Resources/docs/Mocap.doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Resources/docs/Mocap.doxyfile -------------------------------------------------------------------------------- /OpenMoCap/Resources/imageGUI/icons/about64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Resources/imageGUI/icons/about64.png -------------------------------------------------------------------------------- /OpenMoCap/Resources/imageGUI/icons/cam48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Resources/imageGUI/icons/cam48.png -------------------------------------------------------------------------------- /OpenMoCap/Resources/imageGUI/icons/configure64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Resources/imageGUI/icons/configure64.png -------------------------------------------------------------------------------- /OpenMoCap/Resources/imageGUI/icons/start64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Resources/imageGUI/icons/start64.png -------------------------------------------------------------------------------- /OpenMoCap/Resources/imageGUI/icons/stop64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Resources/imageGUI/icons/stop64.png -------------------------------------------------------------------------------- /OpenMoCap/Resources/reconstruction/2points.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Resources/reconstruction/2points.txt -------------------------------------------------------------------------------- /OpenMoCap/Resources/reconstruction/points.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Resources/reconstruction/points.txt -------------------------------------------------------------------------------- /OpenMoCap/Resources/skeleton/chessboard.bvh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Resources/skeleton/chessboard.bvh -------------------------------------------------------------------------------- /OpenMoCap/Resources/skeleton/default.bvh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Resources/skeleton/default.bvh -------------------------------------------------------------------------------- /OpenMoCap/Resources/tests/1280bM1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Resources/tests/1280bM1.png -------------------------------------------------------------------------------- /OpenMoCap/Resources/tests/1280bM10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Resources/tests/1280bM10.png -------------------------------------------------------------------------------- /OpenMoCap/Resources/tests/1280bM5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Resources/tests/1280bM5.png -------------------------------------------------------------------------------- /OpenMoCap/Resources/tests/320bM1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Resources/tests/320bM1.png -------------------------------------------------------------------------------- /OpenMoCap/Resources/tests/320bM10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Resources/tests/320bM10.png -------------------------------------------------------------------------------- /OpenMoCap/Resources/tests/320bM5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Resources/tests/320bM5.png -------------------------------------------------------------------------------- /OpenMoCap/Resources/tests/640bM1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Resources/tests/640bM1.png -------------------------------------------------------------------------------- /OpenMoCap/Resources/tests/640bM10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Resources/tests/640bM10.png -------------------------------------------------------------------------------- /OpenMoCap/Resources/tests/640bM5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Resources/tests/640bM5.png -------------------------------------------------------------------------------- /OpenMoCap/Resources/tests/a.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Resources/tests/a.avi -------------------------------------------------------------------------------- /OpenMoCap/Resources/tests/calibPattern2cm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Resources/tests/calibPattern2cm.png -------------------------------------------------------------------------------- /OpenMoCap/Resources/tests/identificacao.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Resources/tests/identificacao.jpg -------------------------------------------------------------------------------- /OpenMoCap/Resources/tests/identificacao2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Resources/tests/identificacao2.jpg -------------------------------------------------------------------------------- /OpenMoCap/Resources/tests/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Resources/tests/marker.png -------------------------------------------------------------------------------- /OpenMoCap/Resources/tests/marker2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Resources/tests/marker2.png -------------------------------------------------------------------------------- /OpenMoCap/Resources/tests/p.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Resources/tests/p.jpg -------------------------------------------------------------------------------- /OpenMoCap/Resources/vx7000/vx7000_cal_p01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Resources/vx7000/vx7000_cal_p01.jpg -------------------------------------------------------------------------------- /OpenMoCap/Resources/vx7000/vx7000_cal_p02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Resources/vx7000/vx7000_cal_p02.jpg -------------------------------------------------------------------------------- /OpenMoCap/Resources/vx7000/vx7000_cal_p03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Resources/vx7000/vx7000_cal_p03.jpg -------------------------------------------------------------------------------- /OpenMoCap/Resources/vx7000/vx7000_cal_p04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Resources/vx7000/vx7000_cal_p04.jpg -------------------------------------------------------------------------------- /OpenMoCap/Resources/vx7000/vx7000_cal_p05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Resources/vx7000/vx7000_cal_p05.jpg -------------------------------------------------------------------------------- /OpenMoCap/Resources/vx7000/vx7000_cal_p06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Resources/vx7000/vx7000_cal_p06.jpg -------------------------------------------------------------------------------- /OpenMoCap/Resources/vx7000/vx7000_cal_p07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Resources/vx7000/vx7000_cal_p07.jpg -------------------------------------------------------------------------------- /OpenMoCap/Resources/vx7000/vx7000_cal_p08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Resources/vx7000/vx7000_cal_p08.jpg -------------------------------------------------------------------------------- /OpenMoCap/Resources/vx7000/vx7000_cal_p09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Resources/vx7000/vx7000_cal_p09.jpg -------------------------------------------------------------------------------- /OpenMoCap/Resources/vx7000/vx7000_cal_p10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Resources/vx7000/vx7000_cal_p10.jpg -------------------------------------------------------------------------------- /OpenMoCap/Resources/vx7000/vx7000_cal_p11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Resources/vx7000/vx7000_cal_p11.jpg -------------------------------------------------------------------------------- /OpenMoCap/Resources/vx7000/vx7000_cal_p12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Resources/vx7000/vx7000_cal_p12.jpg -------------------------------------------------------------------------------- /OpenMoCap/Resources/vx7000/vx7000_cal_p13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Resources/vx7000/vx7000_cal_p13.jpg -------------------------------------------------------------------------------- /OpenMoCap/Vendor/compiler/MinGW-gcc440_1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/compiler/MinGW-gcc440_1.zip -------------------------------------------------------------------------------- /OpenMoCap/Vendor/microsoft/lib/strmbasd.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/microsoft/lib/strmbasd.lib -------------------------------------------------------------------------------- /OpenMoCap/Vendor/microsoft/lib/strmbase.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/microsoft/lib/strmbase.lib -------------------------------------------------------------------------------- /OpenMoCap/Vendor/mingw/winbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/mingw/winbase.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/naturalPoint/OptiTrack_1.3.035.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/naturalPoint/OptiTrack_1.3.035.exe -------------------------------------------------------------------------------- /OpenMoCap/Vendor/naturalPoint/optitrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/naturalPoint/optitrack.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/pantheios/backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/pantheios/backend.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/pantheios/backends/be.N.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/pantheios/backends/be.N.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/pantheios/backends/be.lrsplit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/pantheios/backends/be.lrsplit.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/pantheios/backends/bec.ACE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/pantheios/backends/bec.ACE.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/pantheios/backends/bec.COMErrorObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/pantheios/backends/bec.COMErrorObject.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/pantheios/backends/bec.WindowsConsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/pantheios/backends/bec.WindowsConsole.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/pantheios/backends/bec.WindowsDebugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/pantheios/backends/bec.WindowsDebugger.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/pantheios/backends/bec.WindowsEventLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/pantheios/backends/bec.WindowsEventLog.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/pantheios/backends/bec.WindowsMessageBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/pantheios/backends/bec.WindowsMessageBox.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/pantheios/backends/bec.WindowsSyslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/pantheios/backends/bec.WindowsSyslog.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/pantheios/backends/bec.console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/pantheios/backends/bec.console.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/pantheios/backends/bec.fail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/pantheios/backends/bec.fail.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/pantheios/backends/bec.file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/pantheios/backends/bec.file.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/pantheios/backends/bec.fprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/pantheios/backends/bec.fprintf.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/pantheios/backends/bec.null.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/pantheios/backends/bec.null.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/pantheios/backends/bec.speech.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/pantheios/backends/bec.speech.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/pantheios/backends/bec.syslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/pantheios/backends/bec.syslog.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/pantheios/backends/bec.test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/pantheios/backends/bec.test.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/pantheios/internal/generated/log_dispatch_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/pantheios/internal/generated/log_dispatch_functions.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/pantheios/internal/generated/log_dispatch_functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/pantheios/internal/generated/log_dispatch_functions.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/pantheios/internal/generated/log_functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/pantheios/internal/generated/log_functions.c -------------------------------------------------------------------------------- /OpenMoCap/Vendor/pantheios/internal/generated/log_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/pantheios/internal/generated/log_functions.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/pantheios/internal/generated/log_functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/pantheios/internal/generated/log_functions.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/pantheios/internal/generated/log_sev_functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/pantheios/internal/generated/log_sev_functions.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/pantheios/internal/initialiser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/pantheios/internal/initialiser.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/pantheios/internal/lean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/pantheios/internal/lean.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/pantheios/internal/nox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/pantheios/internal/nox.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/pantheios/internal/safestr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/pantheios/internal/safestr.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/pantheios/internal/stock_levels.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/pantheios/internal/stock_levels.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/pantheios/internal/string_encoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/pantheios/internal/string_encoding.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/pantheios/internal/threading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/pantheios/internal/threading.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/pantheios/internal/winlean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/pantheios/internal/winlean.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/pantheios/lib/libpantheios.1.be.lrsplit.gcc44.mt.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/pantheios/lib/libpantheios.1.be.lrsplit.gcc44.mt.a -------------------------------------------------------------------------------- /OpenMoCap/Vendor/pantheios/lib/libpantheios.1.bel.file.gcc44.mt.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/pantheios/lib/libpantheios.1.bel.file.gcc44.mt.a -------------------------------------------------------------------------------- /OpenMoCap/Vendor/pantheios/lib/libpantheios.1.ber.fprintf.gcc44.mt.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/pantheios/lib/libpantheios.1.ber.fprintf.gcc44.mt.a -------------------------------------------------------------------------------- /OpenMoCap/Vendor/pantheios/lib/libpantheios.1.core.gcc44.mt.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/pantheios/lib/libpantheios.1.core.gcc44.mt.a -------------------------------------------------------------------------------- /OpenMoCap/Vendor/pantheios/lib/libpantheios.1.util.gcc44.mt.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/pantheios/lib/libpantheios.1.util.gcc44.mt.a -------------------------------------------------------------------------------- /OpenMoCap/Vendor/pantheios/pantheios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/pantheios/pantheios.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/pantheios/pantheios.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/pantheios/pantheios.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/pantheios/quality/contract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/pantheios/quality/contract.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/pantheios/severity/levels.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/pantheios/severity/levels.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/pantheios/util/backends/arguments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/pantheios/util/backends/arguments.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/pantheios/util/backends/context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/pantheios/util/backends/context.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/pantheios/util/com/exception_helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/pantheios/util/com/exception_helpers.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/pantheios/util/core/apidefs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/pantheios/util/core/apidefs.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/pantheios/util/memory/auto_buffer_selector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/pantheios/util/memory/auto_buffer_selector.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/pantheios/util/memory/inserters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/pantheios/util/memory/inserters.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/pantheios/util/severity/ACE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/pantheios/util/severity/ACE.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/pantheios/util/severity/WindowsEventLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/pantheios/util/severity/WindowsEventLog.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/pantheios/util/severity/syslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/pantheios/util/severity/syslog.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/pantheios/util/string/snprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/pantheios/util/string/snprintf.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/pantheios/util/string/strdup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/pantheios/util/string/strdup.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/pantheios/util/system/hostname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/pantheios/util/system/hostname.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/pantheios/util/system/processid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/pantheios/util/system/processid.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/pantheios/util/system/threadid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/pantheios/util/system/threadid.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/pantheios/util/time/currenttime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/pantheios/util/time/currenttime.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/comstl/collections/collection_sequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/comstl/collections/collection_sequence.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/comstl/collections/enumeration_policies.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/comstl/collections/enumeration_policies.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/comstl/collections/enumerator_sequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/comstl/collections/enumerator_sequence.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/comstl/collections/safearray_sequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/comstl/collections/safearray_sequence.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/comstl/collections/unittest/_recls_COM_decl_.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/comstl/collections/unittest/_recls_COM_decl_.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/comstl/comstl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/comstl/comstl.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/comstl/conversion/interface_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/comstl/conversion/interface_cast.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/comstl/conversion/method_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/comstl/conversion/method_cast.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/comstl/error/bad_interface_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/comstl/error/bad_interface_cast.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/comstl/error/errorinfo_desc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/comstl/error/errorinfo_desc.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/comstl/error/errorinfo_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/comstl/error/errorinfo_functions.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/comstl/error/excepinfo_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/comstl/error/excepinfo_functions.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/comstl/error/exceptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/comstl/error/exceptions.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/comstl/functional/com_predicate_adaptors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/comstl/functional/com_predicate_adaptors.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/comstl/functional/functionals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/comstl/functional/functionals.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/comstl/functional/interface_functionals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/comstl/functional/interface_functionals.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/comstl/functional/type_functionals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/comstl/functional/type_functionals.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/comstl/interface/bad_interface_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/comstl/interface/bad_interface_cast.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/comstl/interface/interface_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/comstl/interface/interface_cast.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/comstl/interface/interface_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/comstl/interface/interface_traits.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/comstl/internal/interface_traits_std.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/comstl/internal/interface_traits_std.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/comstl/memory/functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/comstl/memory/functions.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/comstl/memory/task_allocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/comstl/memory/task_allocator.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/comstl/security/security_initialisers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/comstl/security/security_initialisers.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/comstl/shims/access/string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/comstl/shims/access/string.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/comstl/shims/access/string/guid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/comstl/shims/access/string/guid.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/comstl/shims/access/string/variant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/comstl/shims/access/string/variant.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/comstl/smartptr/interface_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/comstl/smartptr/interface_ptr.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/comstl/speech/sapi_util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/comstl/speech/sapi_util.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/comstl/string/BSTR_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/comstl/string/BSTR_functions.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/comstl/string/bstr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/comstl/string/bstr.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/comstl/string/olestring_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/comstl/string/olestring_functions.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/comstl/util/CY_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/comstl/util/CY_functions.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/comstl/util/DECIMAL_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/comstl/util/DECIMAL_functions.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/comstl/util/VARIANT_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/comstl/util/VARIANT_functions.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/comstl/util/acyclic_connector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/comstl/util/acyclic_connector.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/comstl/util/creation_functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/comstl/util/creation_functions.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/comstl/util/guid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/comstl/util/guid.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/comstl/util/initialisers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/comstl/util/initialisers.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/comstl/util/interface_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/comstl/util/interface_traits.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/comstl/util/object_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/comstl/util/object_functions.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/comstl/util/refcount_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/comstl/util/refcount_functions.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/comstl/util/rot_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/comstl/util/rot_functions.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/comstl/util/stream_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/comstl/util/stream_functions.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/comstl/util/thread_marshal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/comstl/util/thread_marshal.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/comstl/util/value_policies.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/comstl/util/value_policies.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/comstl/util/variant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/comstl/util/variant.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/platformstl/dl/module.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/platformstl/dl/module.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/platformstl/error/error_desc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/platformstl/error/error_desc.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/platformstl/error/exceptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/platformstl/error/exceptions.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/platformstl/filesystem/current_directory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/platformstl/filesystem/current_directory.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/platformstl/filesystem/cwd_stack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/platformstl/filesystem/cwd_stack.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/platformstl/filesystem/directory_functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/platformstl/filesystem/directory_functions.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/platformstl/filesystem/file_lines.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/platformstl/filesystem/file_lines.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/platformstl/filesystem/file_path_buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/platformstl/filesystem/file_path_buffer.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/platformstl/filesystem/filesystem_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/platformstl/filesystem/filesystem_traits.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/platformstl/filesystem/memory_mapped_file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/platformstl/filesystem/memory_mapped_file.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/platformstl/filesystem/path.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/platformstl/filesystem/path.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/platformstl/filesystem/path_functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/platformstl/filesystem/path_functions.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/platformstl/filesystem/pipe.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/platformstl/filesystem/pipe.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/platformstl/filesystem/readdir_sequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/platformstl/filesystem/readdir_sequence.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/platformstl/performance/performance_counter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/platformstl/performance/performance_counter.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/platformstl/performance/processtimes_counter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/platformstl/performance/processtimes_counter.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/platformstl/platformstl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/platformstl/platformstl.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/platformstl/platformstl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/platformstl/platformstl.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/platformstl/synch/atomic_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/platformstl/synch/atomic_functions.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/platformstl/synch/atomic_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/platformstl/synch/atomic_types.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/platformstl/synch/process_mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/platformstl/synch/process_mutex.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/platformstl/synch/semaphore.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/platformstl/synch/semaphore.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/platformstl/synch/sleep_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/platformstl/synch/sleep_functions.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/platformstl/synch/spin_mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/platformstl/synch/spin_mutex.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/platformstl/synch/thread_mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/platformstl/synch/thread_mutex.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/platformstl/synch/tss_index.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/platformstl/synch/tss_index.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/platformstl/synch/util/features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/platformstl/synch/util/features.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/platformstl/system/environment_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/platformstl/system/environment_map.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/platformstl/system/system_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/platformstl/system/system_traits.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/algorithms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/algorithms.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/algorithms/bounded.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/algorithms/bounded.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/algorithms/collection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/algorithms/collection.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/algorithms/debug.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/algorithms/debug.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/algorithms/deprecated.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/algorithms/deprecated.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/algorithms/pod.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/algorithms/pod.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/algorithms/std/alt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/algorithms/std/alt.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/algorithms/std/ext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/algorithms/std/ext.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/algorithms/unordered.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/algorithms/unordered.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/collections/array_proxy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/collections/array_proxy.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/collections/array_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/collections/array_view.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/collections/associative_key_sequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/collections/associative_key_sequence.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/collections/collections.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/collections/collections.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/collections/functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/collections/functions.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/collections/sequence_container_veneer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/collections/sequence_container_veneer.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/collections/util/collections.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/collections/util/collections.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/containers/array_policies.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/containers/array_policies.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/containers/environment_block.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/containers/environment_block.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/containers/fixed_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/containers/fixed_array.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/containers/frequency_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/containers/frequency_map.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/containers/pod_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/containers/pod_vector.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/containers/static_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/containers/static_array.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/containers/unsorted_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/containers/unsorted_map.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/containers/util/array_policies.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/containers/util/array_policies.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/conversion/any_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/conversion/any_cast.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/conversion/byte_format_functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/conversion/byte_format_functions.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/conversion/char_conversions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/conversion/char_conversions.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/conversion/explicit_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/conversion/explicit_cast.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/conversion/integer_to_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/conversion/integer_to_string.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/conversion/literal_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/conversion/literal_cast.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/conversion/m2w.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/conversion/m2w.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/conversion/number/grouping_functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/conversion/number/grouping_functions.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/conversion/ptr_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/conversion/ptr_cast.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/conversion/sap_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/conversion/sap_cast.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/conversion/truncation_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/conversion/truncation_cast.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/conversion/truncation_test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/conversion/truncation_test.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/conversion/union_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/conversion/union_cast.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/conversion/w2m.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/conversion/w2m.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/error/active_end_iterator_exhaustion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/error/active_end_iterator_exhaustion.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/error/contract_violation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/error/contract_violation.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/error/conversion_error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/error/conversion_error.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/error/errno_scope.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/error/errno_scope.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/error/error_desc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/error/error_desc.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/error/exceptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/error/exceptions.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/error/external_iterator_invalidation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/error/external_iterator_invalidation.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/error/iteration_interruption.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/error/iteration_interruption.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/error/os_exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/error/os_exception.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/error/project_exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/error/project_exception.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/error/throw_policies.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/error/throw_policies.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/error/unrecoverable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/error/unrecoverable.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/exceptions/contract_violation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/exceptions/contract_violation.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/exceptions/iteration_interruption.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/exceptions/iteration_interruption.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/exceptions/unrecoverable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/exceptions/unrecoverable.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/filesystem/io_functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/filesystem/io_functions.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/filesystem/read_line.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/filesystem/read_line.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/filesystem/searchspec_sequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/filesystem/searchspec_sequence.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/function_adaptors/ref2ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/function_adaptors/ref2ptr.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/functional/access_predicates.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/functional/access_predicates.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/functional/composite_predicates.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/functional/composite_predicates.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/functional/equal_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/functional/equal_ptr.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/functional/function_adaptors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/functional/function_adaptors.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/functional/function_pointer_adaptors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/functional/function_pointer_adaptors.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/functional/method_adaptors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/functional/method_adaptors.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/functional/noop.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/functional/noop.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/functional/procedure_adaptors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/functional/procedure_adaptors.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/internal/_undefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/internal/_undefs.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/internal/cccap/borland.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/internal/cccap/borland.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/internal/cccap/como.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/internal/cccap/como.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/internal/cccap/dmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/internal/cccap/dmc.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/internal/cccap/gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/internal/cccap/gcc.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/internal/cccap/intel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/internal/cccap/intel.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/internal/cccap/msvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/internal/cccap/msvc.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/internal/cccap/mwerks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/internal/cccap/mwerks.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/internal/cccap/obsolete.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/internal/cccap/obsolete.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/internal/cccap/sunpro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/internal/cccap/sunpro.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/internal/cccap/unknown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/internal/cccap/unknown.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/internal/cccap/vectorc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/internal/cccap/vectorc.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/internal/cccap/watcom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/internal/cccap/watcom.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/internal/safestr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/internal/safestr.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/iterators/adapted_iterator_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/iterators/adapted_iterator_traits.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/iterators/associative_select_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/iterators/associative_select_iterator.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/iterators/c_str_inserter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/iterators/c_str_inserter.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/iterators/contiguous_diluter_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/iterators/contiguous_diluter_iterator.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/iterators/filter_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/iterators/filter_iterator.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/iterators/filter_transform_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/iterators/filter_transform_iterator.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/iterators/index_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/iterators/index_iterator.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/iterators/indirect_reverse_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/iterators/indirect_reverse_iterator.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/iterators/member_selector_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/iterators/member_selector_iterator.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/iterators/null_output_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/iterators/null_output_iterator.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/iterators/ostream_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/iterators/ostream_iterator.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/iterators/transform_filter_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/iterators/transform_filter_iterator.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/iterators/transform_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/iterators/transform_iterator.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/memory/allocator_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/memory/allocator_base.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/memory/allocator_features.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/memory/allocator_features.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/memory/allocator_selector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/memory/allocator_selector.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/memory/auto_buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/memory/auto_buffer.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/memory/auto_destructor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/memory/auto_destructor.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/memory/malloc_allocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/memory/malloc_allocator.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/memory/new_allocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/memory/new_allocator.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/memory/null_allocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/memory/null_allocator.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/meta/add_qualifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/meta/add_qualifier.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/meta/base_type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/meta/base_type_traits.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/meta/capabilities.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/meta/capabilities.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/meta/detector/has_const_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/meta/detector/has_const_iterator.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/meta/detector/has_const_pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/meta/detector/has_const_pointer.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/meta/detector/has_const_reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/meta/detector/has_const_reference.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/meta/detector/has_difference_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/meta/detector/has_difference_type.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/meta/detector/has_distance_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/meta/detector/has_distance_type.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/meta/detector/has_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/meta/detector/has_iterator.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/meta/detector/has_iterator_category.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/meta/detector/has_iterator_category.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/meta/detector/has_key_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/meta/detector/has_key_type.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/meta/detector/has_mapped_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/meta/detector/has_mapped_type.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/meta/detector/has_pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/meta/detector/has_pointer.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/meta/detector/has_pointer_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/meta/detector/has_pointer_type.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/meta/detector/has_reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/meta/detector/has_reference.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/meta/detector/has_reference_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/meta/detector/has_reference_type.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/meta/detector/has_referent_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/meta/detector/has_referent_type.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/meta/detector/has_value_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/meta/detector/has_value_type.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/meta/detectors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/meta/detectors.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/meta/is_array_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/meta/is_array_type.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/meta/is_bool_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/meta/is_bool_type.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/meta/is_character_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/meta/is_character_type.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/meta/is_class_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/meta/is_class_type.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/meta/is_compound_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/meta/is_compound_type.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/meta/is_const_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/meta/is_const_type.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/meta/is_floating_point_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/meta/is_floating_point_type.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/meta/is_function_pointer_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/meta/is_function_pointer_type.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/meta/is_fundamental_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/meta/is_fundamental_type.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/meta/is_integral_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/meta/is_integral_type.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/meta/is_numeric_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/meta/is_numeric_type.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/meta/is_pointer_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/meta/is_pointer_type.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/meta/is_same_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/meta/is_same_type.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/meta/is_signed_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/meta/is_signed_type.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/meta/is_void_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/meta/is_void_type.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/meta/is_volatile_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/meta/is_volatile_type.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/meta/make_value_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/meta/make_value_type.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/meta/member_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/meta/member_traits.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/meta/n_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/meta/n_types.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/meta/select_first_type_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/meta/select_first_type_if.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/meta/size_of.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/meta/size_of.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/meta/typefixer/difference_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/meta/typefixer/difference_type.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/meta/typefixer/iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/meta/typefixer/iterator.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/meta/typefixer/mapped_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/meta/typefixer/mapped_type.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/meta/typefixer/pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/meta/typefixer/pointer.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/meta/typefixer/pointer_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/meta/typefixer/pointer_type.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/meta/typefixer/reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/meta/typefixer/reference.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/meta/typefixer/reference_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/meta/typefixer/reference_type.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/meta/typefixer/referent_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/meta/typefixer/referent_type.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/meta/typefixer/typefixer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/meta/typefixer/typefixer.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/meta/typefixers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/meta/typefixers.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/meta/util/meta_.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/meta/util/meta_.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/meta/yesno.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/meta/yesno.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/obsolete/address_hiding_veneer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/obsolete/address_hiding_veneer.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/obsolete/container_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/obsolete/container_base.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/obsolete/conversion_veneer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/obsolete/conversion_veneer.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/obsolete/explicit_inheritance_veneer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/obsolete/explicit_inheritance_veneer.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/obsolete/first_class_promoter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/obsolete/first_class_promoter.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/obsolete/functional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/obsolete/functional.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/obsolete/functionals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/obsolete/functionals.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/obsolete/inheritance_disambiguator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/obsolete/inheritance_disambiguator.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/obsolete/meta.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/obsolete/meta.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/obsolete/outer_initialiser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/obsolete/outer_initialiser.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/obsolete/proxy_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/obsolete/proxy_iterator.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/obsolete/proxy_sequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/obsolete/proxy_sequence.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/performance/performance_counter_init.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/performance/performance_counter_init.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/performance/performance_counter_scope.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/performance/performance_counter_scope.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/properties/field_properties.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/properties/field_properties.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/properties/method_properties.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/properties/method_properties.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/shims/access/string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/shims/access/string.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/shims/access/string/fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/shims/access/string/fwd.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/shims/access/string/std/basic_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/shims/access/string/std/basic_string.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/shims/access/string/std/c_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/shims/access/string/std/c_string.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/shims/access/string/std/exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/shims/access/string/std/exception.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/shims/access/string/std/time.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/shims/access/string/std/time.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/shims/attribute/get_FILE_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/shims/attribute/get_FILE_ptr.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/shims/attribute/get_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/shims/attribute/get_ptr.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/shims/attribute/get_ptr/std/auto_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/shims/attribute/get_ptr/std/auto_ptr.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/shims/conversion/to_uint64.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/shims/conversion/to_uint64.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/shims/conversion/to_uint64/degenerate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/shims/conversion/to_uint64/degenerate.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/shims/logical/is_empty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/shims/logical/is_empty.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/shims/logical/is_empty/std/container.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/shims/logical/is_empty/std/container.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/shims/logical/is_empty/util/features.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/shims/logical/is_empty/util/features.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/smartptr/proxy_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/smartptr/proxy_ptr.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/smartptr/ref_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/smartptr/ref_ptr.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/smartptr/scoped_handle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/smartptr/scoped_handle.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/smartptr/scoped_handle_borland_.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/smartptr/scoped_handle_borland_.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/smartptr/shared_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/smartptr/shared_ptr.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/std/cbase_.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/std/cbase_.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/std/cstdlib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/std/cstdlib.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/std/cstring.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/std/cstring.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/stlsoft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/stlsoft.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/string/case_functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/string/case_functions.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/string/char_alt_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/string/char_alt_traits.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/string/char_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/string/char_traits.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/string/charset_tokeniser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/string/charset_tokeniser.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/string/container_slice_functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/string/container_slice_functions.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/string/copy_functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/string/copy_functions.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/string/cstring_functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/string/cstring_functions.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/string/cstring_maker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/string/cstring_maker.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/string/ctype_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/string/ctype_traits.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/string/fast_string_concatenator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/string/fast_string_concatenator.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/string/functionals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/string/functionals.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/string/shim_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/string/shim_string.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/string/shim_string_vc5_.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/string/shim_string_vc5_.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/string/simple_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/string/simple_string.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/string/slice_functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/string/slice_functions.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/string/special_string_instance.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/string/special_string_instance.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/string/split_functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/string/split_functions.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/string/static_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/string/static_string.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/string/string_tokeniser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/string/string_tokeniser.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/string/string_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/string/string_traits.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/string/string_traits_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/string/string_traits_fwd.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/string/string_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/string/string_view.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/string/tokeniser_functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/string/tokeniser_functions.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/string/trim_functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/string/trim_functions.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/string/view_slice_functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/string/view_slice_functions.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/synch/checkout_token.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/synch/checkout_token.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/synch/concepts.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/synch/concepts.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/synch/lock_scope.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/synch/lock_scope.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/synch/null_mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/synch/null_mutex.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/synch/singlethreaded_tss_index.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/synch/singlethreaded_tss_index.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/synch/spin_policies.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/synch/spin_policies.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/system/cmdargs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/system/cmdargs.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/system/commandline_parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/system/commandline_parser.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/util/64bit_integers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/util/64bit_integers.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/util/argument_proxies.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/util/argument_proxies.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/util/compiler_optimisation_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/util/compiler_optimisation_traits.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/util/constraints.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/util/constraints.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/util/exception_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/util/exception_string.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/util/forward_enums.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/util/forward_enums.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/util/inert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/util/inert.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/util/integral_printf_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/util/integral_printf_traits.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/util/limit_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/util/limit_traits.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/util/minmax.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/util/minmax.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/util/must_init.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/util/must_init.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/util/null.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/util/null.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/util/nulldef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/util/nulldef.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/util/operator_bool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/util/operator_bool.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/util/operator_bool_adaptor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/util/operator_bool_adaptor.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/util/options_verifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/util/options_verifier.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/util/pair.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/util/pair.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/util/placement_aid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/util/placement_aid.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/util/pod_veneer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/util/pod_veneer.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/util/printf_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/util/printf_traits.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/util/remove_from_scope.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/util/remove_from_scope.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/util/sign_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/util/sign_traits.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/util/size_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/util/size_traits.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/util/static_initialisers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/util/static_initialisers.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/util/std/algorithm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/util/std/algorithm.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/util/std/iterator_generators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/util/std/iterator_generators.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/util/std/iterator_helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/util/std/iterator_helper.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/util/std/library_discriminator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/util/std/library_discriminator.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/util/std/stdio_overload_detectors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/util/std/stdio_overload_detectors.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/util/std/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/util/std/utility.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/util/std_swap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/util/std_swap.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/util/trip_bool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/util/trip_bool.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/util/true_typedef.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/util/true_typedef.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/util/unused_return_value_monitor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/util/unused_return_value_monitor.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/util/zero.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/util/zero.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/stlsoft/util/zerodef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/stlsoft/util/zerodef.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/clipboard/clipboard_format_sequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/clipboard/clipboard_format_sequence.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/clipboard/clipboard_scope.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/clipboard/clipboard_scope.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/clipboard/error/exceptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/clipboard/error/exceptions.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/clipboard/exceptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/clipboard/exceptions.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/control_panel/applet_module.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/control_panel/applet_module.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/control_panel/error/exceptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/control_panel/error/exceptions.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/control_panel/exceptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/control_panel/exceptions.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/control_panel/functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/control_panel/functions.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/controls/combobox_sequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/controls/combobox_sequence.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/controls/commctrl_functionals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/controls/commctrl_functionals.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/controls/commctrl_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/controls/commctrl_functions.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/controls/creation_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/controls/creation_functions.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/controls/dialog_functionals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/controls/dialog_functionals.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/controls/edit_line_sequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/controls/edit_line_sequence.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/controls/functionals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/controls/functionals.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/controls/functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/controls/functions.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/controls/listbox_const_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/controls/listbox_const_iterator.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/controls/listbox_data_sequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/controls/listbox_data_sequence.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/controls/listbox_sequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/controls/listbox_sequence.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/controls/listview_sequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/controls/listview_sequence.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/controls/treeview_sequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/controls/treeview_sequence.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/conversion/char_conversions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/conversion/char_conversions.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/conversion/int_to_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/conversion/int_to_string.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/conversion/resource_id.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/conversion/resource_id.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/conversion/w2m.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/conversion/w2m.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/conversion/windows_type_conversions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/conversion/windows_type_conversions.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/dl/dl_call.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/dl/dl_call.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/dl/module.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/dl/module.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/error/conversion_error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/error/conversion_error.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/error/error_desc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/error/error_desc.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/error/error_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/error/error_functions.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/error/exceptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/error/exceptions.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/error/last_error_scope.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/error/last_error_scope.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/filesystem/absolute_path.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/filesystem/absolute_path.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/filesystem/current_directory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/filesystem/current_directory.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/filesystem/current_directory_scope.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/filesystem/current_directory_scope.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/filesystem/directory_functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/filesystem/directory_functions.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/filesystem/file_creation_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/filesystem/file_creation_functions.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/filesystem/file_functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/filesystem/file_functions.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/filesystem/file_path_buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/filesystem/file_path_buffer.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/filesystem/filesystem_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/filesystem/filesystem_traits.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/filesystem/findfile_sequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/filesystem/findfile_sequence.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/filesystem/findvolume_sequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/filesystem/findvolume_sequence.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/filesystem/functionals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/filesystem/functionals.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/filesystem/memory_mapped_file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/filesystem/memory_mapped_file.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/filesystem/path.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/filesystem/path.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/filesystem/path_functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/filesystem/path_functions.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/filesystem/pipe.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/filesystem/pipe.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/functional/message.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/functional/message.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/functional/window.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/functional/window.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/memory/global_allocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/memory/global_allocator.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/memory/heapwalk_sequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/memory/heapwalk_sequence.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/memory/netapi_allocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/memory/netapi_allocator.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/memory/processheap_allocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/memory/processheap_allocator.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/memory/shell_allocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/memory/shell_allocator.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/performance/highperformance_counter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/performance/highperformance_counter.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/performance/multimedia_counter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/performance/multimedia_counter.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/performance/performance_counter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/performance/performance_counter.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/performance/processtimes_counter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/performance/processtimes_counter.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/performance/systemtime_counter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/performance/systemtime_counter.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/performance/threadtimes_counter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/performance/threadtimes_counter.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/performance/tick_counter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/performance/tick_counter.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/process/functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/process/functions.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/registry/defs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/registry/defs.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/registry/error/exceptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/registry/error/exceptions.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/registry/exceptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/registry/exceptions.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/registry/functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/registry/functions.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/registry/reg_key.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/registry/reg_key.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/registry/reg_key_sequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/registry/reg_key_sequence.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/registry/reg_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/registry/reg_traits.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/registry/reg_value.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/registry/reg_value.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/registry/reg_value_sequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/registry/reg_value_sequence.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/registry/regfwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/registry/regfwd.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/registry/registry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/registry/registry.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/registry/shared_handles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/registry/shared_handles.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/registry/util/defs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/registry/util/defs.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/registry/util/shared_handles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/registry/util/shared_handles.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/security/acl_sequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/security/acl_sequence.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/security/token_information.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/security/token_information.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/shell/browse_for_folder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/shell/browse_for_folder.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/shell/drophandle_sequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/shell/drophandle_sequence.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/shell/file_operations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/shell/file_operations.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/shell/memory/functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/shell/memory/functions.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/shell/memory_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/shell/memory_functions.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/shims/access/string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/shims/access/string.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/shims/access/string/HWND.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/shims/access/string/HWND.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/shims/access/string/time.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/shims/access/string/time.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/shims/attribute/get_HKEY.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/shims/attribute/get_HKEY.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/shims/attribute/get_HWND.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/shims/attribute/get_HWND.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/shims/attribute/get_kernel_handle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/shims/attribute/get_kernel_handle.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/shims/attribute/get_synch_handle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/shims/attribute/get_synch_handle.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/shims/conversion/to_DATE.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/shims/conversion/to_DATE.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/shims/conversion/to_DATE/DATE.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/shims/conversion/to_DATE/DATE.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/shims/conversion/to_DATE/FILETIME.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/shims/conversion/to_DATE/FILETIME.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/shims/conversion/to_DATE/SYSTEMTIME.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/shims/conversion/to_DATE/SYSTEMTIME.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/shims/conversion/to_DATE/UDATE.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/shims/conversion/to_DATE/UDATE.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/shims/conversion/to_FILETIME.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/shims/conversion/to_FILETIME.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/shims/conversion/to_FILETIME/DATE.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/shims/conversion/to_FILETIME/DATE.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/shims/conversion/to_FILETIME/UDATE.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/shims/conversion/to_FILETIME/UDATE.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/shims/conversion/to_SYSTEMTIME.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/shims/conversion/to_SYSTEMTIME.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/shims/conversion/to_SYSTEMTIME/DATE.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/shims/conversion/to_SYSTEMTIME/DATE.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/shims/conversion/to_uint64.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/shims/conversion/to_uint64.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/string/resource_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/string/resource_string.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/synch/atomic_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/synch/atomic_functions.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/synch/atomic_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/synch/atomic_types.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/synch/error/exceptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/synch/error/exceptions.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/synch/event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/synch/event.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/synch/exceptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/synch/exceptions.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/synch/functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/synch/functions.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/synch/process_mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/synch/process_mutex.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/synch/semaphore.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/synch/semaphore.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/synch/sleep_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/synch/sleep_functions.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/synch/spin_mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/synch/spin_mutex.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/synch/synchfwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/synch/synchfwd.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/synch/thread_mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/synch/thread_mutex.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/synch/tss_index.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/synch/tss_index.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/synch/wait_functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/synch/wait_functions.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/system/commandline_parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/system/commandline_parser.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/system/console_colour_scope.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/system/console_colour_scope.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/system/console_ctrl_handler_scope.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/system/console_ctrl_handler_scope.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/system/console_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/system/console_functions.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/system/environment_block.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/system/environment_block.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/system/environment_sequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/system/environment_sequence.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/system/environment_variable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/system/environment_variable.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/system/module_directory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/system/module_directory.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/system/module_filename.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/system/module_filename.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/system/pid_sequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/system/pid_sequence.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/system/process_module_sequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/system/process_module_sequence.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/system/searchpath_sequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/system/searchpath_sequence.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/system/system_directory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/system/system_directory.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/system/system_info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/system/system_info.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/system/system_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/system/system_traits.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/system/system_version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/system/system_version.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/system/version_info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/system/version_info.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/system/windows_directory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/system/windows_directory.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/time/comparison_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/time/comparison_functions.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/time/conversion_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/time/conversion_functions.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/time/format_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/time/format_functions.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/time/format_functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/time/format_functions.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/time/functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/time/functions.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/toolhelp/error/exceptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/toolhelp/error/exceptions.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/toolhelp/exceptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/toolhelp/exceptions.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/toolhelp/heap_sequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/toolhelp/heap_sequence.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/toolhelp/module_sequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/toolhelp/module_sequence.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/toolhelp/process_sequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/toolhelp/process_sequence.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/toolhelp/sequence_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/toolhelp/sequence_base.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/toolhelp/sequence_value_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/toolhelp/sequence_value_traits.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/toolhelp/thread_sequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/toolhelp/thread_sequence.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/util/struct_initialisers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/util/struct_initialisers.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/util/undocumented.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/util/undocumented.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/window/colour_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/window/colour_constants.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/window/creation_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/window/creation_functions.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/window/font_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/window/font_functions.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/window/functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/window/functions.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/window/gdi_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/window/gdi_functions.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/window/hdc_scope.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/window/hdc_scope.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/window/menu_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/window/menu_functions.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/window/message_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/window/message_functions.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/window/scale_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/window/scale_functions.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/window/setcursor_scope.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/window/setcursor_scope.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/window/setfocus_scope.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/window/setfocus_scope.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/window/textmetrics_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/window/textmetrics_functions.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/window/util/ident_.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/window/util/ident_.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/window/window_enable_scope.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/window/window_enable_scope.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/window/window_icon_scope.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/window/window_icon_scope.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/window/window_redraw_scope.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/window/window_redraw_scope.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/window/window_text_scope.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/window/window_text_scope.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/window/window_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/window/window_traits.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/window/window_update_scope.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/window/window_update_scope.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/window/window_visible_scope.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/window/window_visible_scope.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/window/zorder_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/window/zorder_iterator.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/window/zorder_sequences.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/window/zorder_sequences.hpp -------------------------------------------------------------------------------- /OpenMoCap/Vendor/stlsoft/winstl/winstl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/stlsoft/winstl/winstl.h -------------------------------------------------------------------------------- /OpenMoCap/Vendor/videoInput/lib/libvideoInput.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/videoInput/lib/libvideoInput.a -------------------------------------------------------------------------------- /OpenMoCap/Vendor/videoInput/videoInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/Vendor/videoInput/videoInput.h -------------------------------------------------------------------------------- /OpenMoCap/saida.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OpenMoCap/src/Calibration/AbstractCalibrator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Calibration/AbstractCalibrator.h -------------------------------------------------------------------------------- /OpenMoCap/src/Calibration/DifferentialEvolutionCalibrator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Calibration/DifferentialEvolutionCalibrator.cpp -------------------------------------------------------------------------------- /OpenMoCap/src/Calibration/DifferentialEvolutionCalibrator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Calibration/DifferentialEvolutionCalibrator.h -------------------------------------------------------------------------------- /OpenMoCap/src/Calibration/Individual.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Calibration/Individual.cpp -------------------------------------------------------------------------------- /OpenMoCap/src/Calibration/Individual.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Calibration/Individual.h -------------------------------------------------------------------------------- /OpenMoCap/src/Calibration/ZhangCalibrator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Calibration/ZhangCalibrator.cpp -------------------------------------------------------------------------------- /OpenMoCap/src/Calibration/ZhangCalibrator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Calibration/ZhangCalibrator.h -------------------------------------------------------------------------------- /OpenMoCap/src/Controllers/CaptureController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Controllers/CaptureController.cpp -------------------------------------------------------------------------------- /OpenMoCap/src/Controllers/CaptureController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Controllers/CaptureController.h -------------------------------------------------------------------------------- /OpenMoCap/src/Controllers/VideoController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Controllers/VideoController.cpp -------------------------------------------------------------------------------- /OpenMoCap/src/Controllers/VideoController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Controllers/VideoController.h -------------------------------------------------------------------------------- /OpenMoCap/src/Entities/AbstractCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Entities/AbstractCamera.cpp -------------------------------------------------------------------------------- /OpenMoCap/src/Entities/AbstractCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Entities/AbstractCamera.h -------------------------------------------------------------------------------- /OpenMoCap/src/Entities/DirectShowCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Entities/DirectShowCamera.cpp -------------------------------------------------------------------------------- /OpenMoCap/src/Entities/DirectShowCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Entities/DirectShowCamera.h -------------------------------------------------------------------------------- /OpenMoCap/src/Entities/DummyCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Entities/DummyCamera.cpp -------------------------------------------------------------------------------- /OpenMoCap/src/Entities/DummyCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Entities/DummyCamera.h -------------------------------------------------------------------------------- /OpenMoCap/src/Entities/Joint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Entities/Joint.cpp -------------------------------------------------------------------------------- /OpenMoCap/src/Entities/Joint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Entities/Joint.h -------------------------------------------------------------------------------- /OpenMoCap/src/Entities/OptiTrackCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Entities/OptiTrackCamera.cpp -------------------------------------------------------------------------------- /OpenMoCap/src/Entities/OptiTrackCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Entities/OptiTrackCamera.h -------------------------------------------------------------------------------- /OpenMoCap/src/Entities/POI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Entities/POI.cpp -------------------------------------------------------------------------------- /OpenMoCap/src/Entities/POI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Entities/POI.h -------------------------------------------------------------------------------- /OpenMoCap/src/Entities/Skeleton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Entities/Skeleton.cpp -------------------------------------------------------------------------------- /OpenMoCap/src/Entities/Skeleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Entities/Skeleton.h -------------------------------------------------------------------------------- /OpenMoCap/src/Entities/VideoCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Entities/VideoCamera.cpp -------------------------------------------------------------------------------- /OpenMoCap/src/Entities/VideoCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Entities/VideoCamera.h -------------------------------------------------------------------------------- /OpenMoCap/src/Enums/AbstractEnum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Enums/AbstractEnum.h -------------------------------------------------------------------------------- /OpenMoCap/src/Enums/CalibrationAlgorithmEnum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Enums/CalibrationAlgorithmEnum.cpp -------------------------------------------------------------------------------- /OpenMoCap/src/Enums/CalibrationAlgorithmEnum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Enums/CalibrationAlgorithmEnum.h -------------------------------------------------------------------------------- /OpenMoCap/src/Enums/CalibrationResultEnum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Enums/CalibrationResultEnum.cpp -------------------------------------------------------------------------------- /OpenMoCap/src/Enums/CalibrationResultEnum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Enums/CalibrationResultEnum.h -------------------------------------------------------------------------------- /OpenMoCap/src/Enums/CaptureStatusEnum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Enums/CaptureStatusEnum.cpp -------------------------------------------------------------------------------- /OpenMoCap/src/Enums/CaptureStatusEnum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Enums/CaptureStatusEnum.h -------------------------------------------------------------------------------- /OpenMoCap/src/Enums/POIFinderAlgorithmEnum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Enums/POIFinderAlgorithmEnum.cpp -------------------------------------------------------------------------------- /OpenMoCap/src/Enums/POIFinderAlgorithmEnum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Enums/POIFinderAlgorithmEnum.h -------------------------------------------------------------------------------- /OpenMoCap/src/Enums/ReconstructionAlgorithmEnum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Enums/ReconstructionAlgorithmEnum.cpp -------------------------------------------------------------------------------- /OpenMoCap/src/Enums/ReconstructionAlgorithmEnum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Enums/ReconstructionAlgorithmEnum.h -------------------------------------------------------------------------------- /OpenMoCap/src/Enums/TrackingAlgorithmEnum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Enums/TrackingAlgorithmEnum.cpp -------------------------------------------------------------------------------- /OpenMoCap/src/Enums/TrackingAlgorithmEnum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Enums/TrackingAlgorithmEnum.h -------------------------------------------------------------------------------- /OpenMoCap/src/Enums/VideoStatusEnum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Enums/VideoStatusEnum.cpp -------------------------------------------------------------------------------- /OpenMoCap/src/Enums/VideoStatusEnum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Enums/VideoStatusEnum.h -------------------------------------------------------------------------------- /OpenMoCap/src/Gui/Dialogs/CameraInformationDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Gui/Dialogs/CameraInformationDialog.cpp -------------------------------------------------------------------------------- /OpenMoCap/src/Gui/Dialogs/CameraInformationDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Gui/Dialogs/CameraInformationDialog.h -------------------------------------------------------------------------------- /OpenMoCap/src/Gui/Dialogs/CameraInformationDialog.moc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Gui/Dialogs/CameraInformationDialog.moc -------------------------------------------------------------------------------- /OpenMoCap/src/Gui/Dialogs/POISemanticSelectionDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Gui/Dialogs/POISemanticSelectionDialog.cpp -------------------------------------------------------------------------------- /OpenMoCap/src/Gui/Dialogs/POISemanticSelectionDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Gui/Dialogs/POISemanticSelectionDialog.h -------------------------------------------------------------------------------- /OpenMoCap/src/Gui/Dialogs/POISemanticSelectionDialog.moc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Gui/Dialogs/POISemanticSelectionDialog.moc -------------------------------------------------------------------------------- /OpenMoCap/src/Gui/Dialogs/PreviewUndistortDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Gui/Dialogs/PreviewUndistortDialog.cpp -------------------------------------------------------------------------------- /OpenMoCap/src/Gui/Dialogs/PreviewUndistortDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Gui/Dialogs/PreviewUndistortDialog.h -------------------------------------------------------------------------------- /OpenMoCap/src/Gui/Dialogs/PreviewUndistortDialog.moc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Gui/Dialogs/PreviewUndistortDialog.moc -------------------------------------------------------------------------------- /OpenMoCap/src/Gui/Dialogs/StereoVisionCalibrationDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Gui/Dialogs/StereoVisionCalibrationDialog.cpp -------------------------------------------------------------------------------- /OpenMoCap/src/Gui/Dialogs/StereoVisionCalibrationDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Gui/Dialogs/StereoVisionCalibrationDialog.h -------------------------------------------------------------------------------- /OpenMoCap/src/Gui/Dialogs/StereoVisionCalibrationDialog.moc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Gui/Dialogs/StereoVisionCalibrationDialog.moc -------------------------------------------------------------------------------- /OpenMoCap/src/Gui/MainWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Gui/MainWindow.cpp -------------------------------------------------------------------------------- /OpenMoCap/src/Gui/MainWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Gui/MainWindow.h -------------------------------------------------------------------------------- /OpenMoCap/src/Gui/MainWindow.moc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Gui/MainWindow.moc -------------------------------------------------------------------------------- /OpenMoCap/src/Gui/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Gui/Makefile -------------------------------------------------------------------------------- /OpenMoCap/src/Gui/Widgets/CameraComboBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Gui/Widgets/CameraComboBox.cpp -------------------------------------------------------------------------------- /OpenMoCap/src/Gui/Widgets/CameraComboBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Gui/Widgets/CameraComboBox.h -------------------------------------------------------------------------------- /OpenMoCap/src/Gui/Widgets/CameraComboBox.moc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Gui/Widgets/CameraComboBox.moc -------------------------------------------------------------------------------- /OpenMoCap/src/Gui/Widgets/CameraWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Gui/Widgets/CameraWidget.cpp -------------------------------------------------------------------------------- /OpenMoCap/src/Gui/Widgets/CameraWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Gui/Widgets/CameraWidget.h -------------------------------------------------------------------------------- /OpenMoCap/src/Gui/Widgets/CameraWidget.moc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Gui/Widgets/CameraWidget.moc -------------------------------------------------------------------------------- /OpenMoCap/src/Gui/Widgets/ImageWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Gui/Widgets/ImageWidget.cpp -------------------------------------------------------------------------------- /OpenMoCap/src/Gui/Widgets/ImageWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Gui/Widgets/ImageWidget.h -------------------------------------------------------------------------------- /OpenMoCap/src/Gui/Widgets/ImageWidget.moc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Gui/Widgets/ImageWidget.moc -------------------------------------------------------------------------------- /OpenMoCap/src/Gui/Widgets/POIsImageWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Gui/Widgets/POIsImageWidget.cpp -------------------------------------------------------------------------------- /OpenMoCap/src/Gui/Widgets/POIsImageWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Gui/Widgets/POIsImageWidget.h -------------------------------------------------------------------------------- /OpenMoCap/src/Gui/Widgets/POIsImageWidget.moc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Gui/Widgets/POIsImageWidget.moc -------------------------------------------------------------------------------- /OpenMoCap/src/Gui/Widgets/ThreeDWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Gui/Widgets/ThreeDWidget.cpp -------------------------------------------------------------------------------- /OpenMoCap/src/Gui/Widgets/ThreeDWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Gui/Widgets/ThreeDWidget.h -------------------------------------------------------------------------------- /OpenMoCap/src/Gui/Widgets/ThreeDWidget.moc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Gui/Widgets/ThreeDWidget.moc -------------------------------------------------------------------------------- /OpenMoCap/src/Gui/application.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Gui/application.qrc -------------------------------------------------------------------------------- /OpenMoCap/src/Input/BvhReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Input/BvhReader.cpp -------------------------------------------------------------------------------- /OpenMoCap/src/Input/BvhReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Input/BvhReader.h -------------------------------------------------------------------------------- /OpenMoCap/src/Mocap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Mocap.cpp -------------------------------------------------------------------------------- /OpenMoCap/src/Mocap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Mocap.h -------------------------------------------------------------------------------- /OpenMoCap/src/Output/AbstractOutputWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Output/AbstractOutputWriter.h -------------------------------------------------------------------------------- /OpenMoCap/src/Output/TrcFileWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Output/TrcFileWriter.cpp -------------------------------------------------------------------------------- /OpenMoCap/src/Output/TrcFileWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Output/TrcFileWriter.h -------------------------------------------------------------------------------- /OpenMoCap/src/Reconstruction/AbstractReconstructor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Reconstruction/AbstractReconstructor.cpp -------------------------------------------------------------------------------- /OpenMoCap/src/Reconstruction/AbstractReconstructor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Reconstruction/AbstractReconstructor.h -------------------------------------------------------------------------------- /OpenMoCap/src/Reconstruction/BasicReconstructor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Reconstruction/BasicReconstructor.cpp -------------------------------------------------------------------------------- /OpenMoCap/src/Reconstruction/BasicReconstructor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Reconstruction/BasicReconstructor.h -------------------------------------------------------------------------------- /OpenMoCap/src/Tracking/AbstractPOIFinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Tracking/AbstractPOIFinder.cpp -------------------------------------------------------------------------------- /OpenMoCap/src/Tracking/AbstractPOIFinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Tracking/AbstractPOIFinder.h -------------------------------------------------------------------------------- /OpenMoCap/src/Tracking/AbstractTracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Tracking/AbstractTracker.cpp -------------------------------------------------------------------------------- /OpenMoCap/src/Tracking/AbstractTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Tracking/AbstractTracker.h -------------------------------------------------------------------------------- /OpenMoCap/src/Tracking/AlphaBetaGammaFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Tracking/AlphaBetaGammaFilter.cpp -------------------------------------------------------------------------------- /OpenMoCap/src/Tracking/AlphaBetaGammaFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Tracking/AlphaBetaGammaFilter.h -------------------------------------------------------------------------------- /OpenMoCap/src/Tracking/Blob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Tracking/Blob.cpp -------------------------------------------------------------------------------- /OpenMoCap/src/Tracking/Blob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Tracking/Blob.h -------------------------------------------------------------------------------- /OpenMoCap/src/Tracking/BlobExtractor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Tracking/BlobExtractor.cpp -------------------------------------------------------------------------------- /OpenMoCap/src/Tracking/BlobExtractor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Tracking/BlobExtractor.h -------------------------------------------------------------------------------- /OpenMoCap/src/Tracking/Condensation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Tracking/Condensation.cpp -------------------------------------------------------------------------------- /OpenMoCap/src/Tracking/Condensation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Tracking/Condensation.h -------------------------------------------------------------------------------- /OpenMoCap/src/Tracking/KalmanFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Tracking/KalmanFilter.cpp -------------------------------------------------------------------------------- /OpenMoCap/src/Tracking/KalmanFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Tracking/KalmanFilter.h -------------------------------------------------------------------------------- /OpenMoCap/src/Utils/AbstractThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Utils/AbstractThread.cpp -------------------------------------------------------------------------------- /OpenMoCap/src/Utils/AbstractThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Utils/AbstractThread.h -------------------------------------------------------------------------------- /OpenMoCap/src/Utils/Debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Utils/Debug.cpp -------------------------------------------------------------------------------- /OpenMoCap/src/Utils/Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Utils/Debug.h -------------------------------------------------------------------------------- /OpenMoCap/src/Utils/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Utils/Image.h -------------------------------------------------------------------------------- /OpenMoCap/src/Utils/Log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Utils/Log.cpp -------------------------------------------------------------------------------- /OpenMoCap/src/Utils/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Utils/Log.h -------------------------------------------------------------------------------- /OpenMoCap/src/Utils/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Utils/Timer.cpp -------------------------------------------------------------------------------- /OpenMoCap/src/Utils/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Utils/Timer.h -------------------------------------------------------------------------------- /OpenMoCap/src/Utils/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/OpenMoCap/src/Utils/Utils.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidflam/OpenMoCap/HEAD/README.md --------------------------------------------------------------------------------