├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── support-request.md ├── matcher │ └── uic_matcher.json └── workflows │ ├── build-linux-QT5.yml │ ├── build-linux-clazy.yml │ ├── build-linux.yml │ ├── build-windows-QT5.yml │ ├── build-windows.yml │ └── make-release.yml ├── .gitignore ├── COPYING.txt ├── Circleoutline.h ├── ColorMaps ├── Dale1.cmp ├── Dale2.cmp ├── Dale3.cmp ├── Diverging_BrBG.cmp ├── Diverging_PRGn.cmp ├── Diverging_PiYG.cmp ├── Diverging_PuOr.cmp ├── Diverging_RdBu.cmp ├── Diverging_RdGy.cmp ├── Diverging_RdYlBu.cmp ├── Diverging_RdYlGn.cmp ├── Diverging_Spectral.cmp ├── Diverging_bwr.cmp ├── Diverging_coolwarm.cmp ├── Diverging_seismic.cmp ├── Miscellaneous_CMRmap.cmp ├── Miscellaneous_brg.cmp ├── Miscellaneous_cubehelix.cmp ├── Miscellaneous_flag.cmp ├── Miscellaneous_gist_earth.cmp ├── Miscellaneous_gist_ncar.cmp ├── Miscellaneous_gist_rainbow.cmp ├── Miscellaneous_gist_stern.cmp ├── Miscellaneous_gnuplot.cmp ├── Miscellaneous_gnuplot2.cmp ├── Miscellaneous_hsv.cmp ├── Miscellaneous_jet.cmp ├── Miscellaneous_nipy_spectral.cmp ├── Miscellaneous_ocean.cmp ├── Miscellaneous_prism.cmp ├── Miscellaneous_rainbow.cmp ├── Miscellaneous_terrain.cmp ├── Perceptually Uniform Sequential_inferno.cmp ├── Perceptually Uniform Sequential_magma.cmp ├── Perceptually Uniform Sequential_plasma.cmp ├── Perceptually Uniform Sequential_viridis.cmp ├── Qualitative_Accent.cmp ├── Qualitative_Dark2.cmp ├── Qualitative_Paired.cmp ├── Qualitative_Pastel1.cmp ├── Qualitative_Pastel2.cmp ├── Qualitative_Set1.cmp ├── Qualitative_Set2.cmp ├── Qualitative_Set3.cmp ├── Sequential (2)_afmhot.cmp ├── Sequential (2)_autumn.cmp ├── Sequential (2)_bone.cmp ├── Sequential (2)_cool.cmp ├── Sequential (2)_copper.cmp ├── Sequential (2)_gist_heat.cmp ├── Sequential (2)_gray.cmp ├── Sequential (2)_hot.cmp ├── Sequential (2)_pink.cmp ├── Sequential (2)_spring.cmp ├── Sequential (2)_summer.cmp ├── Sequential (2)_winter.cmp ├── Sequential_Blues.cmp ├── Sequential_BuGn.cmp ├── Sequential_BuPu.cmp ├── Sequential_GnBu.cmp ├── Sequential_Greens.cmp ├── Sequential_Greys.cmp ├── Sequential_OrRd.cmp ├── Sequential_Oranges.cmp ├── Sequential_PuBu.cmp ├── Sequential_PuBuGn.cmp ├── Sequential_PuRd.cmp ├── Sequential_Purples.cmp ├── Sequential_RdPu.cmp ├── Sequential_Reds.cmp ├── Sequential_YlGn.cmp ├── Sequential_YlGnBu.cmp ├── Sequential_YlOrBr.cmp ├── Sequential_YlOrRd.cmp └── spring.cmp ├── DFTFringe.pro ├── DFTFringe.rc ├── DFTFringeInstaller ├── config │ └── config.xml └── packages │ └── com.githubdoe.DFTFringe │ └── meta │ ├── desktopshortcutcheckboxform.ui │ ├── installscript.qs │ └── package.xml ├── DFTFringe_Dale.pro ├── DFTFringe_QT5.pro ├── DFTResources.qrc ├── IgramArea.h ├── LICENSES ├── Apache-2.0.txt ├── LGPLv3.txt ├── MIT.txt └── Qwt.txt ├── NOTICE.txt ├── README.md ├── RevisionHistory.html ├── SingleApplication ├── LICENSE ├── singleapplication.cpp ├── singleapplication.h ├── singleapplication_p.cpp └── singleapplication_p.h ├── annulushelpdlg.cpp ├── annulushelpdlg.h ├── annulushelpdlg.ui ├── arbitrarywavefronthelp.cpp ├── arbitrarywavefronthelp.h ├── arbitrarywavefronthelp.ui ├── arbitrarywavwidget.cpp ├── arbitrarywavwidget.h ├── astigpolargraph.cpp ├── astigpolargraph.h ├── astigpolargraph.ui ├── astigscatterplot.cpp ├── astigscatterplot.h ├── astigstatsdlg.cpp ├── astigstatsdlg.h ├── astigstatsdlg.ui ├── autoinvertdlg.cpp ├── autoinvertdlg.h ├── autoinvertdlg.ui ├── averagewavefrontfilesdlg.cpp ├── averagewavefrontfilesdlg.h ├── averagewavefrontfilesdlg.ui ├── batchigramwizard.cpp ├── batchigramwizard.h ├── batchigramwizard.ui ├── bathastigdlg.cpp ├── bathastigdlg.h ├── bathastigdlg.ui ├── bezier ├── LICENSE.txt └── bezier.h ├── boost ├── LICENSE_1_0.txt ├── aligned_storage.hpp ├── array.hpp ├── assert.hpp ├── assert │ └── source_location.hpp ├── checked_delete.hpp ├── config.hpp ├── config │ ├── abi │ │ ├── borland_prefix.hpp │ │ ├── borland_suffix.hpp │ │ ├── msvc_prefix.hpp │ │ └── msvc_suffix.hpp │ ├── abi_prefix.hpp │ ├── abi_suffix.hpp │ ├── assert_cxx03.hpp │ ├── assert_cxx11.hpp │ ├── assert_cxx14.hpp │ ├── assert_cxx17.hpp │ ├── assert_cxx20.hpp │ ├── assert_cxx98.hpp │ ├── auto_link.hpp │ ├── compiler │ │ ├── borland.hpp │ │ ├── clang.hpp │ │ ├── clang_version.hpp │ │ ├── codegear.hpp │ │ ├── comeau.hpp │ │ ├── common_edg.hpp │ │ ├── compaq_cxx.hpp │ │ ├── cray.hpp │ │ ├── diab.hpp │ │ ├── digitalmars.hpp │ │ ├── gcc.hpp │ │ ├── gcc_xml.hpp │ │ ├── greenhills.hpp │ │ ├── hp_acc.hpp │ │ ├── intel.hpp │ │ ├── kai.hpp │ │ ├── metrowerks.hpp │ │ ├── mpw.hpp │ │ ├── nvcc.hpp │ │ ├── pathscale.hpp │ │ ├── pgi.hpp │ │ ├── sgi_mipspro.hpp │ │ ├── sunpro_cc.hpp │ │ ├── vacpp.hpp │ │ ├── visualc.hpp │ │ ├── xlcpp.hpp │ │ └── xlcpp_zos.hpp │ ├── detail │ │ ├── cxx_composite.hpp │ │ ├── posix_features.hpp │ │ ├── select_compiler_config.hpp │ │ ├── select_platform_config.hpp │ │ ├── select_stdlib_config.hpp │ │ └── suffix.hpp │ ├── header_deprecated.hpp │ ├── helper_macros.hpp │ ├── no_tr1 │ │ ├── cmath.hpp │ │ ├── complex.hpp │ │ ├── functional.hpp │ │ ├── memory.hpp │ │ └── utility.hpp │ ├── platform │ │ ├── aix.hpp │ │ ├── amigaos.hpp │ │ ├── beos.hpp │ │ ├── bsd.hpp │ │ ├── cloudabi.hpp │ │ ├── cray.hpp │ │ ├── cygwin.hpp │ │ ├── haiku.hpp │ │ ├── hpux.hpp │ │ ├── irix.hpp │ │ ├── linux.hpp │ │ ├── macos.hpp │ │ ├── qnxnto.hpp │ │ ├── solaris.hpp │ │ ├── symbian.hpp │ │ ├── vms.hpp │ │ ├── vxworks.hpp │ │ ├── wasm.hpp │ │ ├── win32.hpp │ │ └── zos.hpp │ ├── pragma_message.hpp │ ├── requires_threads.hpp │ ├── stdlib │ │ ├── dinkumware.hpp │ │ ├── libcomo.hpp │ │ ├── libcpp.hpp │ │ ├── libstdcpp3.hpp │ │ ├── modena.hpp │ │ ├── msl.hpp │ │ ├── roguewave.hpp │ │ ├── sgi.hpp │ │ ├── stlport.hpp │ │ ├── vacpp.hpp │ │ └── xlcpp_zos.hpp │ ├── user.hpp │ ├── warning_disable.hpp │ └── workaround.hpp ├── container_hash │ ├── detail │ │ ├── hash_mix.hpp │ │ ├── hash_range.hpp │ │ ├── hash_tuple_like.hpp │ │ ├── limits.hpp │ │ ├── mulx.hpp │ │ └── requires_cxx11.hpp │ ├── extensions.hpp │ ├── hash.hpp │ ├── hash_fwd.hpp │ ├── is_contiguous_range.hpp │ ├── is_described_class.hpp │ ├── is_range.hpp │ ├── is_tuple_like.hpp │ └── is_unordered_range.hpp ├── core │ ├── addressof.hpp │ ├── alignof.hpp │ ├── alloc_construct.hpp │ ├── allocator_access.hpp │ ├── allocator_traits.hpp │ ├── bit.hpp │ ├── checked_delete.hpp │ ├── cmath.hpp │ ├── data.hpp │ ├── default_allocator.hpp │ ├── demangle.hpp │ ├── detail │ │ ├── is_same.hpp │ │ ├── lwt_unattended.hpp │ │ ├── sp_thread_pause.hpp │ │ ├── sp_thread_sleep.hpp │ │ ├── sp_thread_yield.hpp │ │ ├── sp_win32_sleep.hpp │ │ ├── splitmix64.hpp │ │ └── string_view.hpp │ ├── empty_value.hpp │ ├── enable_if.hpp │ ├── exchange.hpp │ ├── explicit_operator_bool.hpp │ ├── fclose_deleter.hpp │ ├── first_scalar.hpp │ ├── identity.hpp │ ├── ignore_unused.hpp │ ├── is_same.hpp │ ├── launder.hpp │ ├── lightweight_test.hpp │ ├── lightweight_test_trait.hpp │ ├── make_span.hpp │ ├── max_align.hpp │ ├── memory_resource.hpp │ ├── no_exceptions_support.hpp │ ├── noinit_adaptor.hpp │ ├── noncopyable.hpp │ ├── null_deleter.hpp │ ├── nvp.hpp │ ├── pointer_traits.hpp │ ├── quick_exit.hpp │ ├── ref.hpp │ ├── scoped_enum.hpp │ ├── serialization.hpp │ ├── size.hpp │ ├── snprintf.hpp │ ├── span.hpp │ ├── swap.hpp │ ├── type_name.hpp │ ├── typeinfo.hpp │ ├── uncaught_exceptions.hpp │ ├── underlying_type.hpp │ ├── use_default.hpp │ ├── verbose_terminate_handler.hpp │ └── yield_primitives.hpp ├── cstdint.hpp ├── current_function.hpp ├── cxx11_char_types.hpp ├── detail │ ├── interlocked.hpp │ ├── iterator.hpp │ ├── lightweight_test.hpp │ ├── no_exceptions_support.hpp │ ├── scoped_enum_emulation.hpp │ ├── sp_typeinfo.hpp │ ├── winapi │ │ ├── access_rights.hpp │ │ ├── apc.hpp │ │ ├── basic_types.hpp │ │ ├── bcrypt.hpp │ │ ├── character_code_conversion.hpp │ │ ├── condition_variable.hpp │ │ ├── config.hpp │ │ ├── critical_section.hpp │ │ ├── crypt.hpp │ │ ├── dbghelp.hpp │ │ ├── debugapi.hpp │ │ ├── detail │ │ │ └── deprecated_namespace.hpp │ │ ├── directory_management.hpp │ │ ├── dll.hpp │ │ ├── environment.hpp │ │ ├── error_codes.hpp │ │ ├── error_handling.hpp │ │ ├── event.hpp │ │ ├── file_management.hpp │ │ ├── file_mapping.hpp │ │ ├── get_current_process.hpp │ │ ├── get_current_process_id.hpp │ │ ├── get_current_thread.hpp │ │ ├── get_current_thread_id.hpp │ │ ├── get_last_error.hpp │ │ ├── get_process_times.hpp │ │ ├── get_system_directory.hpp │ │ ├── get_thread_times.hpp │ │ ├── handle_info.hpp │ │ ├── handles.hpp │ │ ├── heap_memory.hpp │ │ ├── init_once.hpp │ │ ├── jobs.hpp │ │ ├── limits.hpp │ │ ├── local_memory.hpp │ │ ├── memory.hpp │ │ ├── mutex.hpp │ │ ├── overlapped.hpp │ │ ├── page_protection_flags.hpp │ │ ├── pipes.hpp │ │ ├── priority_class.hpp │ │ ├── process.hpp │ │ ├── security.hpp │ │ ├── semaphore.hpp │ │ ├── shell.hpp │ │ ├── show_window.hpp │ │ ├── srw_lock.hpp │ │ ├── stack_backtrace.hpp │ │ ├── synchronization.hpp │ │ ├── system.hpp │ │ ├── thread.hpp │ │ ├── thread_pool.hpp │ │ ├── time.hpp │ │ ├── timers.hpp │ │ ├── tls.hpp │ │ ├── wait.hpp │ │ └── waitable_timer.hpp │ └── workaround.hpp ├── exception │ └── exception.hpp ├── functional │ ├── hash.hpp │ ├── hash │ │ ├── extensions.hpp │ │ ├── hash.hpp │ │ └── hash_fwd.hpp │ └── hash_fwd.hpp ├── get_pointer.hpp ├── iterator.hpp ├── limits.hpp ├── non_type.hpp ├── noncopyable.hpp ├── predef.h ├── predef │ ├── architecture.h │ ├── architecture │ │ ├── alpha.h │ │ ├── arm.h │ │ ├── blackfin.h │ │ ├── convex.h │ │ ├── e2k.h │ │ ├── ia64.h │ │ ├── loongarch.h │ │ ├── m68k.h │ │ ├── mips.h │ │ ├── parisc.h │ │ ├── ppc.h │ │ ├── ptx.h │ │ ├── pyramid.h │ │ ├── riscv.h │ │ ├── rs6k.h │ │ ├── sparc.h │ │ ├── superh.h │ │ ├── sys370.h │ │ ├── sys390.h │ │ ├── x86.h │ │ ├── x86 │ │ │ ├── 32.h │ │ │ └── 64.h │ │ └── z.h │ ├── compiler.h │ ├── compiler │ │ ├── borland.h │ │ ├── clang.h │ │ ├── comeau.h │ │ ├── compaq.h │ │ ├── diab.h │ │ ├── digitalmars.h │ │ ├── dignus.h │ │ ├── edg.h │ │ ├── ekopath.h │ │ ├── gcc.h │ │ ├── gcc_xml.h │ │ ├── greenhills.h │ │ ├── hp_acc.h │ │ ├── iar.h │ │ ├── ibm.h │ │ ├── intel.h │ │ ├── kai.h │ │ ├── llvm.h │ │ ├── metaware.h │ │ ├── metrowerks.h │ │ ├── microtec.h │ │ ├── mpw.h │ │ ├── nvcc.h │ │ ├── palm.h │ │ ├── pgi.h │ │ ├── sgi_mipspro.h │ │ ├── sunpro.h │ │ ├── tendra.h │ │ ├── visualc.h │ │ └── watcom.h │ ├── detail │ │ ├── _cassert.h │ │ ├── _exception.h │ │ ├── comp_detected.h │ │ ├── os_detected.h │ │ ├── platform_detected.h │ │ ├── test.h │ │ └── test_def.h │ ├── hardware.h │ ├── hardware │ │ ├── simd.h │ │ └── simd │ │ │ ├── arm.h │ │ │ ├── arm │ │ │ └── versions.h │ │ │ ├── ppc.h │ │ │ ├── ppc │ │ │ └── versions.h │ │ │ ├── x86.h │ │ │ ├── x86 │ │ │ └── versions.h │ │ │ ├── x86_amd.h │ │ │ └── x86_amd │ │ │ └── versions.h │ ├── language.h │ ├── language │ │ ├── cuda.h │ │ ├── objc.h │ │ ├── stdc.h │ │ └── stdcpp.h │ ├── library.h │ ├── library │ │ ├── c.h │ │ ├── c │ │ │ ├── _prefix.h │ │ │ ├── cloudabi.h │ │ │ ├── gnu.h │ │ │ ├── uc.h │ │ │ ├── vms.h │ │ │ └── zos.h │ │ ├── std.h │ │ └── std │ │ │ ├── _prefix.h │ │ │ ├── cxx.h │ │ │ ├── dinkumware.h │ │ │ ├── libcomo.h │ │ │ ├── modena.h │ │ │ ├── msl.h │ │ │ ├── roguewave.h │ │ │ ├── sgi.h │ │ │ ├── stdcpp3.h │ │ │ ├── stlport.h │ │ │ └── vacpp.h │ ├── make.h │ ├── os.h │ ├── os │ │ ├── aix.h │ │ ├── amigaos.h │ │ ├── beos.h │ │ ├── bsd.h │ │ ├── bsd │ │ │ ├── bsdi.h │ │ │ ├── dragonfly.h │ │ │ ├── free.h │ │ │ ├── net.h │ │ │ └── open.h │ │ ├── cygwin.h │ │ ├── haiku.h │ │ ├── hpux.h │ │ ├── ios.h │ │ ├── irix.h │ │ ├── linux.h │ │ ├── macos.h │ │ ├── os400.h │ │ ├── qnxnto.h │ │ ├── solaris.h │ │ ├── unix.h │ │ ├── vms.h │ │ └── windows.h │ ├── other.h │ ├── other │ │ ├── endian.h │ │ ├── wordsize.h │ │ └── workaround.h │ ├── platform.h │ ├── platform │ │ ├── android.h │ │ ├── cloudabi.h │ │ ├── ios.h │ │ ├── mingw.h │ │ ├── mingw32.h │ │ ├── mingw64.h │ │ ├── windows_desktop.h │ │ ├── windows_phone.h │ │ ├── windows_runtime.h │ │ ├── windows_server.h │ │ ├── windows_store.h │ │ ├── windows_system.h │ │ └── windows_uwp.h │ ├── version.h │ └── version_number.h ├── ref.hpp ├── stacktrace.hpp ├── stacktrace │ ├── detail │ │ ├── addr2line_impls.hpp │ │ ├── collect_msvc.ipp │ │ ├── collect_noop.ipp │ │ ├── collect_unwind.ipp │ │ ├── frame_decl.hpp │ │ ├── frame_msvc.ipp │ │ ├── frame_noop.ipp │ │ ├── frame_unwind.ipp │ │ ├── libbacktrace_impls.hpp │ │ ├── location_from_symbol.hpp │ │ ├── pop_options.h │ │ ├── push_options.h │ │ ├── safe_dump_noop.ipp │ │ ├── safe_dump_posix.ipp │ │ ├── safe_dump_win.ipp │ │ ├── to_dec_array.hpp │ │ ├── to_hex_array.hpp │ │ ├── try_dec_convert.hpp │ │ ├── unwind_base_impls.hpp │ │ └── void_ptr_cast.hpp │ ├── frame.hpp │ ├── safe_dump_to.hpp │ ├── stacktrace.hpp │ └── stacktrace_fwd.hpp ├── static_assert.hpp ├── swap.hpp ├── throw_exception.hpp ├── type.hpp ├── type_traits.hpp ├── type_traits │ ├── add_const.hpp │ ├── add_cv.hpp │ ├── add_lvalue_reference.hpp │ ├── add_pointer.hpp │ ├── add_reference.hpp │ ├── add_rvalue_reference.hpp │ ├── add_volatile.hpp │ ├── aligned_storage.hpp │ ├── alignment_of.hpp │ ├── alignment_traits.hpp │ ├── arithmetic_traits.hpp │ ├── array_traits.hpp │ ├── broken_compiler_spec.hpp │ ├── common_type.hpp │ ├── composite_traits.hpp │ ├── conditional.hpp │ ├── config.hpp │ ├── conjunction.hpp │ ├── conversion_traits.hpp │ ├── copy_cv.hpp │ ├── copy_cv_ref.hpp │ ├── copy_reference.hpp │ ├── cv_traits.hpp │ ├── decay.hpp │ ├── declval.hpp │ ├── detail │ │ ├── bool_trait_def.hpp │ │ ├── bool_trait_undef.hpp │ │ ├── common_arithmetic_type.hpp │ │ ├── common_type_impl.hpp │ │ ├── composite_member_pointer_type.hpp │ │ ├── composite_pointer_type.hpp │ │ ├── config.hpp │ │ ├── detector.hpp │ │ ├── has_binary_operator.hpp │ │ ├── has_postfix_operator.hpp │ │ ├── has_prefix_operator.hpp │ │ ├── ice_and.hpp │ │ ├── ice_eq.hpp │ │ ├── ice_not.hpp │ │ ├── ice_or.hpp │ │ ├── is_function_cxx_03.hpp │ │ ├── is_function_cxx_11.hpp │ │ ├── is_function_msvc10_fix.hpp │ │ ├── is_function_ptr_helper.hpp │ │ ├── is_function_ptr_tester.hpp │ │ ├── is_likely_lambda.hpp │ │ ├── is_mem_fun_pointer_impl.hpp │ │ ├── is_mem_fun_pointer_tester.hpp │ │ ├── is_member_function_pointer_cxx_03.hpp │ │ ├── is_member_function_pointer_cxx_11.hpp │ │ ├── is_rvalue_reference_msvc10_fix.hpp │ │ ├── is_swappable_cxx_11.hpp │ │ ├── mp_defer.hpp │ │ ├── template_arity_spec.hpp │ │ └── yes_no_type.hpp │ ├── detected.hpp │ ├── detected_or.hpp │ ├── disjunction.hpp │ ├── enable_if.hpp │ ├── extent.hpp │ ├── floating_point_promotion.hpp │ ├── function_traits.hpp │ ├── has_bit_and.hpp │ ├── has_bit_and_assign.hpp │ ├── has_bit_or.hpp │ ├── has_bit_or_assign.hpp │ ├── has_bit_xor.hpp │ ├── has_bit_xor_assign.hpp │ ├── has_complement.hpp │ ├── has_dereference.hpp │ ├── has_divides.hpp │ ├── has_divides_assign.hpp │ ├── has_equal_to.hpp │ ├── has_greater.hpp │ ├── has_greater_equal.hpp │ ├── has_left_shift.hpp │ ├── has_left_shift_assign.hpp │ ├── has_less.hpp │ ├── has_less_equal.hpp │ ├── has_logical_and.hpp │ ├── has_logical_not.hpp │ ├── has_logical_or.hpp │ ├── has_minus.hpp │ ├── has_minus_assign.hpp │ ├── has_modulus.hpp │ ├── has_modulus_assign.hpp │ ├── has_multiplies.hpp │ ├── has_multiplies_assign.hpp │ ├── has_negate.hpp │ ├── has_new_operator.hpp │ ├── has_not_equal_to.hpp │ ├── has_nothrow_assign.hpp │ ├── has_nothrow_constructor.hpp │ ├── has_nothrow_copy.hpp │ ├── has_nothrow_destructor.hpp │ ├── has_operator.hpp │ ├── has_plus.hpp │ ├── has_plus_assign.hpp │ ├── has_post_decrement.hpp │ ├── has_post_increment.hpp │ ├── has_pre_decrement.hpp │ ├── has_pre_increment.hpp │ ├── has_right_shift.hpp │ ├── has_right_shift_assign.hpp │ ├── has_trivial_assign.hpp │ ├── has_trivial_constructor.hpp │ ├── has_trivial_copy.hpp │ ├── has_trivial_destructor.hpp │ ├── has_trivial_move_assign.hpp │ ├── has_trivial_move_constructor.hpp │ ├── has_unary_minus.hpp │ ├── has_unary_plus.hpp │ ├── has_virtual_destructor.hpp │ ├── ice.hpp │ ├── integral_constant.hpp │ ├── integral_promotion.hpp │ ├── intrinsics.hpp │ ├── is_abstract.hpp │ ├── is_arithmetic.hpp │ ├── is_array.hpp │ ├── is_assignable.hpp │ ├── is_base_and_derived.hpp │ ├── is_base_of.hpp │ ├── is_base_of_tr1.hpp │ ├── is_bounded_array.hpp │ ├── is_class.hpp │ ├── is_complete.hpp │ ├── is_complex.hpp │ ├── is_compound.hpp │ ├── is_const.hpp │ ├── is_constructible.hpp │ ├── is_convertible.hpp │ ├── is_copy_assignable.hpp │ ├── is_copy_constructible.hpp │ ├── is_default_constructible.hpp │ ├── is_destructible.hpp │ ├── is_detected.hpp │ ├── is_detected_convertible.hpp │ ├── is_detected_exact.hpp │ ├── is_empty.hpp │ ├── is_enum.hpp │ ├── is_final.hpp │ ├── is_float.hpp │ ├── is_floating_point.hpp │ ├── is_function.hpp │ ├── is_fundamental.hpp │ ├── is_integral.hpp │ ├── is_list_constructible.hpp │ ├── is_lvalue_reference.hpp │ ├── is_member_function_pointer.hpp │ ├── is_member_object_pointer.hpp │ ├── is_member_pointer.hpp │ ├── is_noncopyable.hpp │ ├── is_nothrow_move_assignable.hpp │ ├── is_nothrow_move_constructible.hpp │ ├── is_nothrow_swappable.hpp │ ├── is_object.hpp │ ├── is_pod.hpp │ ├── is_pointer.hpp │ ├── is_polymorphic.hpp │ ├── is_reference.hpp │ ├── is_rvalue_reference.hpp │ ├── is_same.hpp │ ├── is_scalar.hpp │ ├── is_scoped_enum.hpp │ ├── is_signed.hpp │ ├── is_stateless.hpp │ ├── is_swappable.hpp │ ├── is_trivially_copyable.hpp │ ├── is_unbounded_array.hpp │ ├── is_union.hpp │ ├── is_unscoped_enum.hpp │ ├── is_unsigned.hpp │ ├── is_virtual_base_of.hpp │ ├── is_void.hpp │ ├── is_volatile.hpp │ ├── make_signed.hpp │ ├── make_unsigned.hpp │ ├── make_void.hpp │ ├── negation.hpp │ ├── nonesuch.hpp │ ├── object_traits.hpp │ ├── promote.hpp │ ├── rank.hpp │ ├── reference_traits.hpp │ ├── remove_all_extents.hpp │ ├── remove_bounds.hpp │ ├── remove_const.hpp │ ├── remove_cv.hpp │ ├── remove_cv_ref.hpp │ ├── remove_extent.hpp │ ├── remove_pointer.hpp │ ├── remove_reference.hpp │ ├── remove_volatile.hpp │ ├── same_traits.hpp │ ├── transform_traits.hpp │ ├── type_identity.hpp │ └── type_with_alignment.hpp ├── utility │ ├── addressof.hpp │ ├── declval.hpp │ ├── enable_if.hpp │ ├── explicit_operator_bool.hpp │ └── swap.hpp ├── version.hpp ├── visit_each.hpp └── winapi │ ├── access_rights.hpp │ ├── apc.hpp │ ├── basic_types.hpp │ ├── bcrypt.hpp │ ├── character_code_conversion.hpp │ ├── condition_variable.hpp │ ├── config.hpp │ ├── critical_section.hpp │ ├── crypt.hpp │ ├── dbghelp.hpp │ ├── debugapi.hpp │ ├── detail │ ├── cast_ptr.hpp │ ├── footer.hpp │ └── header.hpp │ ├── directory_management.hpp │ ├── dll.hpp │ ├── environment.hpp │ ├── error_codes.hpp │ ├── error_handling.hpp │ ├── event.hpp │ ├── file_management.hpp │ ├── file_mapping.hpp │ ├── get_current_process.hpp │ ├── get_current_process_id.hpp │ ├── get_current_thread.hpp │ ├── get_current_thread_id.hpp │ ├── get_last_error.hpp │ ├── get_proc_address.hpp │ ├── get_process_times.hpp │ ├── get_system_directory.hpp │ ├── get_thread_times.hpp │ ├── handle_info.hpp │ ├── handles.hpp │ ├── heap_memory.hpp │ ├── init_once.hpp │ ├── jobs.hpp │ ├── limits.hpp │ ├── local_memory.hpp │ ├── memory.hpp │ ├── mutex.hpp │ ├── overlapped.hpp │ ├── page_protection_flags.hpp │ ├── pipes.hpp │ ├── priority_class.hpp │ ├── process.hpp │ ├── security.hpp │ ├── semaphore.hpp │ ├── shell.hpp │ ├── show_window.hpp │ ├── srw_lock.hpp │ ├── stack_backtrace.hpp │ ├── synchronization.hpp │ ├── system.hpp │ ├── thread.hpp │ ├── thread_pool.hpp │ ├── time.hpp │ ├── timers.hpp │ ├── tls.hpp │ ├── wait.hpp │ ├── wait_constants.hpp │ ├── wait_on_address.hpp │ └── waitable_timer.hpp ├── camcalibrationreviewdlg.cpp ├── camcalibrationreviewdlg.h ├── camcalibrationreviewdlg.ui ├── cameracalibwizard.cpp ├── cameracalibwizard.h ├── cameracalibwizard.ui ├── camwizardpage1.cpp ├── camwizardpage1.h ├── camwizardpage1.ui ├── ccswappeddlg.cpp ├── ccswappeddlg.h ├── ccswappeddlg.ui ├── circle.h ├── circlefit.cpp ├── circleoutline.cpp ├── circleutils.h ├── colorchannel.cpp ├── colorchannel.h ├── colorchanneldisplay.cpp ├── colorchanneldisplay.h ├── colorchanneldisplay.ui ├── colormapviewerdlg.cpp ├── colormapviewerdlg.h ├── colormapviewerdlg.ui ├── contourplot.cpp ├── contourplot.h ├── contourrulerparams.cpp ├── contourrulerparams.h ├── contourrulerparams.ui ├── contourtools.cpp ├── contourtools.h ├── contourtools.ui ├── contourview.cpp ├── contourview.h ├── contourview.ui ├── counterrotationdlg.cpp ├── counterrotationdlg.h ├── counterrotationdlg.ui ├── cpoint.cpp ├── cpoint.h ├── defocusdlg.cpp ├── defocusdlg.h ├── defocusdlg.ui ├── dftarea.cpp ├── dftarea.h ├── dftarea.ui ├── dftcolormap.cpp ├── dftcolormap.h ├── dftfringe_fr.ts ├── dftthumb.cpp ├── dftthumb.h ├── dftthumb.ui ├── dfttools.cpp ├── dfttools.h ├── dfttools.ui ├── edgeplot.cpp ├── edgeplot.h ├── edgeplot.ui ├── filteroutlinesdlg.cpp ├── filteroutlinesdlg.h ├── filteroutlinesdlg.ui ├── foucaultview.cpp ├── foucaultview.h ├── foucaultview.ui ├── generatetargetdlg.cpp ├── generatetargetdlg.h ├── generatetargetdlg.ui ├── graphicsutilities.cpp ├── graphicsutilities.h ├── graphmodifier.cpp ├── graphmodifier.h ├── helpdlg.cpp ├── helpdlg.h ├── helpdlg.ui ├── hotkeysdlg.cpp ├── hotkeysdlg.h ├── hotkeysdlg.ui ├── igramarea.cpp ├── igramintensity.cpp ├── igramintensity.h ├── igramintensity.ui ├── imagehisto.cpp ├── imagehisto.h ├── intensityplot.cpp ├── intensityplot.h ├── jitteroutlinedlg.cpp ├── jitteroutlinedlg.h ├── jitteroutlinedlg.ui ├── lensetablemodel.cpp ├── lensetablemodel.h ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── mainwindow.ui ├── messagereceiver.cpp ├── messagereceiver.h ├── metricsdisplay.cpp ├── metricsdisplay.h ├── metricsdisplay.ui ├── mirrordlg.cpp ├── mirrordlg.h ├── mirrordlg.ui ├── myplotpicker.cpp ├── myplotpicker.h ├── myutils.cpp ├── myutils.h ├── nullmarginhelpdlg.cpp ├── nullmarginhelpdlg.h ├── nullmarginhelpdlg.ui ├── nullvariationdlg.cpp ├── nullvariationdlg.h ├── nullvariationdlg.ui ├── oglrendered.cpp ├── oglrendered.h ├── oglrendered.ui ├── oglview.cpp ├── oglview.h ├── outlinedialog.cpp ├── outlinedialog.h ├── outlinedialog.ui ├── outlinehelpdocwidget.cpp ├── outlinehelpdocwidget.h ├── outlinehelpdocwidget.ui ├── outlineplots.cpp ├── outlineplots.h ├── outlineplots.ui ├── outlinestatsdlg.cpp ├── outlinestatsdlg.h ├── outlinestatsdlg.ui ├── pdfcalibrationdlg.cpp ├── pdfcalibrationdlg.h ├── pdfcalibrationdlg.ui ├── percentCorrectionSurface.h ├── percentcorrectiondlg.cpp ├── percentcorrectiondlg.h ├── percentcorrectiondlg.ui ├── pixelstats.cpp ├── pixelstats.h ├── pixelstats.ui ├── plotcolor.cpp ├── plotcolor.h ├── profileplot.cpp ├── profileplot.h ├── profileplot.ui ├── profileplotpicker.cpp ├── profileplotpicker.h ├── psfplot.cpp ├── psfplot.h ├── psfplot.ui ├── psi_dlg.cpp ├── psi_dlg.h ├── psi_dlg.ui ├── psiphasedisplay.cpp ├── psiphasedisplay.h ├── psiphasedisplay.ui ├── psitiltoptions.cpp ├── psitiltoptions.h ├── psitiltoptions.ui ├── punwrap.cpp ├── punwrap.h ├── regionedittools.cpp ├── regionedittools.h ├── regionedittools.ui ├── rejectedwavefrontsdlg.cpp ├── rejectedwavefrontsdlg.h ├── rejectedwavefrontsdlg.ui ├── reportdlg.cpp ├── reportdlg.h ├── reportdlg.ui ├── res ├── 1461974250_f-left_256.png ├── 1461974256_f-right_256.png ├── 1461974262_f-top_256.png ├── 1461974268_f-bottom_256.png ├── 1461975017_undo.png ├── 1461975084_maximize.png ├── 1461975092_minimize.png ├── Button-Close-icon.png ├── Button-Next-icon.png ├── Button-Previous-icon.png ├── Help │ ├── BathInterferometry.odt │ ├── FailedAstigRemovalStandCountours.png │ ├── Forced.png │ ├── ForcedWithErrors.png │ ├── Gaussian10.png │ ├── LowExposure.png │ ├── MirrorConfig.png │ ├── PSIHelp.html │ ├── QuickStart.html │ ├── StandAstigHelp.html │ ├── analysis.png │ ├── astigSummary.png │ ├── astigsummary.html │ ├── autoOutlineDisplays.png │ ├── autoOutlineOffsets.png │ ├── autooutline.png │ ├── autooutlineButton.png │ ├── badStandSummary.png │ ├── chessGrid.png │ ├── circles.png │ ├── dft.png │ ├── goodPeak.png │ ├── help.html │ ├── highExposure.png │ ├── igram.png │ ├── igramScreen.png │ ├── igramSettingsLens.png │ ├── intensityGraph.png │ ├── lensDistort.html │ ├── lineGrid.png │ ├── manyrotations.png │ ├── mirrorConfig.html │ ├── oneIgramanalysis.png │ ├── outlineDebug.png │ ├── outlineing.html │ ├── overexposedgreen.png │ ├── pixelScanRange.png │ ├── smoothing.htm │ ├── tips.html │ ├── unwrapLine.png │ ├── unwrapLineAnalysis.png │ ├── unwrap_errors.html │ ├── useExsistingOutline.png │ ├── wellexposed.png │ └── whiteDisk.png ├── camera-icon-60.png ├── igram6.png ├── mirror_stand.png ├── redo.png ├── surface_LeY_icon.ico └── wats2.png ├── reviewwindow.cpp ├── reviewwindow.h ├── reviewwindow.ui ├── rmsplot.cpp ├── rmsplot.h ├── rotationdlg.cpp ├── rotationdlg.h ├── rotationdlg.ui ├── settings2.cpp ├── settings2.h ├── settings2.ui ├── settingsGeneral2.h ├── settingsdebug.cpp ├── settingsdebug.h ├── settingsdebug.ui ├── settingsdft.cpp ├── settingsdft.h ├── settingsdft.ui ├── settingsgeneral2.cpp ├── settingsgeneral2.ui ├── settingsigram.cpp ├── settingsigram.h ├── settingsigram.ui ├── settingsigramimportconfig.cpp ├── settingsigramimportconfig.h ├── settingsigramimportconfig.ui ├── settingsprofile.cpp ├── settingsprofile.h ├── settingsprofile.ui ├── showaliasdlg.cpp ├── showaliasdlg.h ├── showaliasdlg.ui ├── showallcontoursdlg.cpp ├── showallcontoursdlg.h ├── showallcontoursdlg.ui ├── simigramdlg.cpp ├── simigramdlg.h ├── simigramdlg.ui ├── simulationsview.cpp ├── simulationsview.h ├── simulationsview.ui ├── spdlog ├── LICENSE ├── async.h ├── async_logger-inl.h ├── async_logger.h ├── cfg │ ├── argv.h │ ├── env.h │ ├── helpers-inl.h │ └── helpers.h ├── common-inl.h ├── common.h ├── details │ ├── backtracer-inl.h │ ├── backtracer.h │ ├── circular_q.h │ ├── console_globals.h │ ├── file_helper-inl.h │ ├── file_helper.h │ ├── fmt_helper.h │ ├── log_msg-inl.h │ ├── log_msg.h │ ├── log_msg_buffer-inl.h │ ├── log_msg_buffer.h │ ├── mpmc_blocking_q.h │ ├── null_mutex.h │ ├── os-inl.h │ ├── os.h │ ├── periodic_worker-inl.h │ ├── periodic_worker.h │ ├── registry-inl.h │ ├── registry.h │ ├── synchronous_factory.h │ ├── tcp_client-windows.h │ ├── tcp_client.h │ ├── thread_pool-inl.h │ ├── thread_pool.h │ ├── udp_client-windows.h │ ├── udp_client.h │ └── windows_include.h ├── fmt │ ├── bin_to_hex.h │ ├── bundled │ │ ├── args.h │ │ ├── base.h │ │ ├── chrono.h │ │ ├── color.h │ │ ├── compile.h │ │ ├── core.h │ │ ├── fmt.license.rst │ │ ├── format-inl.h │ │ ├── format.h │ │ ├── os.h │ │ ├── ostream.h │ │ ├── printf.h │ │ ├── ranges.h │ │ ├── std.h │ │ └── xchar.h │ ├── chrono.h │ ├── compile.h │ ├── fmt.h │ ├── ostr.h │ ├── ranges.h │ ├── std.h │ └── xchar.h ├── formatter.h ├── fwd.h ├── logger-inl.h ├── logger.h ├── mdc.h ├── pattern_formatter-inl.h ├── pattern_formatter.h ├── sinks │ ├── android_sink.h │ ├── ansicolor_sink-inl.h │ ├── ansicolor_sink.h │ ├── base_sink-inl.h │ ├── base_sink.h │ ├── basic_file_sink-inl.h │ ├── basic_file_sink.h │ ├── callback_sink.h │ ├── daily_file_sink.h │ ├── dist_sink.h │ ├── dup_filter_sink.h │ ├── hourly_file_sink.h │ ├── kafka_sink.h │ ├── mongo_sink.h │ ├── msvc_sink.h │ ├── null_sink.h │ ├── ostream_sink.h │ ├── qt_sinks.h │ ├── ringbuffer_sink.h │ ├── rotating_file_sink-inl.h │ ├── rotating_file_sink.h │ ├── sink-inl.h │ ├── sink.h │ ├── stdout_color_sinks-inl.h │ ├── stdout_color_sinks.h │ ├── stdout_sinks-inl.h │ ├── stdout_sinks.h │ ├── syslog_sink.h │ ├── systemd_sink.h │ ├── tcp_sink.h │ ├── udp_sink.h │ ├── win_eventlog_sink.h │ ├── wincolor_sink-inl.h │ └── wincolor_sink.h ├── spdlog-inl.h ├── spdlog.h ├── stopwatch.h ├── tweakme.h └── version.h ├── standastigwizard.cpp ├── standastigwizard.h ├── standastigwizard.ui ├── startestmoviedlg.cpp ├── startestmoviedlg.h ├── startestmoviedlg.ui ├── statsview.cpp ├── statsview.h ├── statsview.ui ├── subtractwavefronatsdlg.cpp ├── subtractwavefronatsdlg.h ├── subtractwavefronatsdlg.ui ├── surface3dcontrolsdlg.cpp ├── surface3dcontrolsdlg.h ├── surface3dcontrolsdlg.ui ├── surfaceanalysistools.cpp ├── surfaceanalysistools.h ├── surfaceanalysistools.ui ├── surfacegraph.cpp ├── surfacegraph.h ├── surfacelightingproxy.cpp ├── surfacelightingproxy.h ├── surfacemanager.cpp ├── surfacemanager.h ├── todo.txt ├── transformwavefrontdlg.cpp ├── transformwavefrontdlg.h ├── transformwavefrontdlg.ui ├── unwraperrorsview.cpp ├── unwraperrorsview.h ├── unwraperrorsview.ui ├── usercolormapdlg.cpp ├── usercolormapdlg.h ├── usercolormapdlg.ui ├── userdrawnprofiledlg.cpp ├── userdrawnprofiledlg.h ├── userdrawnprofiledlg.ui ├── utils.cpp ├── utils.h ├── vortexdebug.cpp ├── vortexdebug.h ├── vortexdebug.ui ├── wavefront.cpp ├── wavefront.h ├── wavefrontaveragefilterdlg.cpp ├── wavefrontaveragefilterdlg.h ├── wavefrontaveragefilterdlg.ui ├── wavefrontfilterdlg.cpp ├── wavefrontfilterdlg.h ├── wavefrontfilterdlg.ui ├── wftexaminer.cpp ├── wftexaminer.h ├── wftexaminer.ui ├── wftstats.cpp ├── wftstats.h ├── zernike ├── LICENSE.txt ├── zapm.cpp └── zapm_interface.h ├── zernikedlg.cpp ├── zernikedlg.h ├── zernikedlg.ui ├── zernikeeditdlg.cpp ├── zernikeeditdlg.h ├── zernikeeditdlg.ui ├── zernikepolar.cpp ├── zernikepolar.h ├── zernikeprocess.cpp ├── zernikeprocess.h ├── zernikes.cpp ├── zernikes.h ├── zernikesmoothingdlg.cpp ├── zernikesmoothingdlg.h └── zernikesmoothingdlg.ui /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/matcher/uic_matcher.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/.github/matcher/uic_matcher.json -------------------------------------------------------------------------------- /.github/workflows/build-linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/.github/workflows/build-linux.yml -------------------------------------------------------------------------------- /.github/workflows/make-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/.github/workflows/make-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/COPYING.txt -------------------------------------------------------------------------------- /Circleoutline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/Circleoutline.h -------------------------------------------------------------------------------- /ColorMaps/Dale1.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/ColorMaps/Dale1.cmp -------------------------------------------------------------------------------- /ColorMaps/Dale2.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/ColorMaps/Dale2.cmp -------------------------------------------------------------------------------- /ColorMaps/Dale3.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/ColorMaps/Dale3.cmp -------------------------------------------------------------------------------- /ColorMaps/Diverging_BrBG.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/ColorMaps/Diverging_BrBG.cmp -------------------------------------------------------------------------------- /ColorMaps/Diverging_PRGn.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/ColorMaps/Diverging_PRGn.cmp -------------------------------------------------------------------------------- /ColorMaps/Diverging_PiYG.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/ColorMaps/Diverging_PiYG.cmp -------------------------------------------------------------------------------- /ColorMaps/Diverging_PuOr.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/ColorMaps/Diverging_PuOr.cmp -------------------------------------------------------------------------------- /ColorMaps/Diverging_RdBu.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/ColorMaps/Diverging_RdBu.cmp -------------------------------------------------------------------------------- /ColorMaps/Diverging_RdGy.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/ColorMaps/Diverging_RdGy.cmp -------------------------------------------------------------------------------- /ColorMaps/Diverging_RdYlBu.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/ColorMaps/Diverging_RdYlBu.cmp -------------------------------------------------------------------------------- /ColorMaps/Diverging_RdYlGn.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/ColorMaps/Diverging_RdYlGn.cmp -------------------------------------------------------------------------------- /ColorMaps/Diverging_Spectral.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/ColorMaps/Diverging_Spectral.cmp -------------------------------------------------------------------------------- /ColorMaps/Diverging_bwr.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/ColorMaps/Diverging_bwr.cmp -------------------------------------------------------------------------------- /ColorMaps/Diverging_coolwarm.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/ColorMaps/Diverging_coolwarm.cmp -------------------------------------------------------------------------------- /ColorMaps/Diverging_seismic.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/ColorMaps/Diverging_seismic.cmp -------------------------------------------------------------------------------- /ColorMaps/Miscellaneous_CMRmap.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/ColorMaps/Miscellaneous_CMRmap.cmp -------------------------------------------------------------------------------- /ColorMaps/Miscellaneous_brg.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/ColorMaps/Miscellaneous_brg.cmp -------------------------------------------------------------------------------- /ColorMaps/Miscellaneous_flag.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/ColorMaps/Miscellaneous_flag.cmp -------------------------------------------------------------------------------- /ColorMaps/Miscellaneous_hsv.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/ColorMaps/Miscellaneous_hsv.cmp -------------------------------------------------------------------------------- /ColorMaps/Miscellaneous_jet.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/ColorMaps/Miscellaneous_jet.cmp -------------------------------------------------------------------------------- /ColorMaps/Miscellaneous_ocean.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/ColorMaps/Miscellaneous_ocean.cmp -------------------------------------------------------------------------------- /ColorMaps/Miscellaneous_prism.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/ColorMaps/Miscellaneous_prism.cmp -------------------------------------------------------------------------------- /ColorMaps/Qualitative_Accent.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/ColorMaps/Qualitative_Accent.cmp -------------------------------------------------------------------------------- /ColorMaps/Qualitative_Dark2.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/ColorMaps/Qualitative_Dark2.cmp -------------------------------------------------------------------------------- /ColorMaps/Qualitative_Paired.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/ColorMaps/Qualitative_Paired.cmp -------------------------------------------------------------------------------- /ColorMaps/Qualitative_Pastel1.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/ColorMaps/Qualitative_Pastel1.cmp -------------------------------------------------------------------------------- /ColorMaps/Qualitative_Pastel2.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/ColorMaps/Qualitative_Pastel2.cmp -------------------------------------------------------------------------------- /ColorMaps/Qualitative_Set1.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/ColorMaps/Qualitative_Set1.cmp -------------------------------------------------------------------------------- /ColorMaps/Qualitative_Set2.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/ColorMaps/Qualitative_Set2.cmp -------------------------------------------------------------------------------- /ColorMaps/Qualitative_Set3.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/ColorMaps/Qualitative_Set3.cmp -------------------------------------------------------------------------------- /ColorMaps/Sequential (2)_bone.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/ColorMaps/Sequential (2)_bone.cmp -------------------------------------------------------------------------------- /ColorMaps/Sequential (2)_cool.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/ColorMaps/Sequential (2)_cool.cmp -------------------------------------------------------------------------------- /ColorMaps/Sequential (2)_gray.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/ColorMaps/Sequential (2)_gray.cmp -------------------------------------------------------------------------------- /ColorMaps/Sequential (2)_hot.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/ColorMaps/Sequential (2)_hot.cmp -------------------------------------------------------------------------------- /ColorMaps/Sequential (2)_pink.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/ColorMaps/Sequential (2)_pink.cmp -------------------------------------------------------------------------------- /ColorMaps/Sequential_Blues.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/ColorMaps/Sequential_Blues.cmp -------------------------------------------------------------------------------- /ColorMaps/Sequential_BuGn.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/ColorMaps/Sequential_BuGn.cmp -------------------------------------------------------------------------------- /ColorMaps/Sequential_BuPu.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/ColorMaps/Sequential_BuPu.cmp -------------------------------------------------------------------------------- /ColorMaps/Sequential_GnBu.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/ColorMaps/Sequential_GnBu.cmp -------------------------------------------------------------------------------- /ColorMaps/Sequential_Greens.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/ColorMaps/Sequential_Greens.cmp -------------------------------------------------------------------------------- /ColorMaps/Sequential_Greys.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/ColorMaps/Sequential_Greys.cmp -------------------------------------------------------------------------------- /ColorMaps/Sequential_OrRd.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/ColorMaps/Sequential_OrRd.cmp -------------------------------------------------------------------------------- /ColorMaps/Sequential_Oranges.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/ColorMaps/Sequential_Oranges.cmp -------------------------------------------------------------------------------- /ColorMaps/Sequential_PuBu.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/ColorMaps/Sequential_PuBu.cmp -------------------------------------------------------------------------------- /ColorMaps/Sequential_PuBuGn.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/ColorMaps/Sequential_PuBuGn.cmp -------------------------------------------------------------------------------- /ColorMaps/Sequential_PuRd.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/ColorMaps/Sequential_PuRd.cmp -------------------------------------------------------------------------------- /ColorMaps/Sequential_Purples.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/ColorMaps/Sequential_Purples.cmp -------------------------------------------------------------------------------- /ColorMaps/Sequential_RdPu.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/ColorMaps/Sequential_RdPu.cmp -------------------------------------------------------------------------------- /ColorMaps/Sequential_Reds.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/ColorMaps/Sequential_Reds.cmp -------------------------------------------------------------------------------- /ColorMaps/Sequential_YlGn.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/ColorMaps/Sequential_YlGn.cmp -------------------------------------------------------------------------------- /ColorMaps/Sequential_YlGnBu.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/ColorMaps/Sequential_YlGnBu.cmp -------------------------------------------------------------------------------- /ColorMaps/Sequential_YlOrBr.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/ColorMaps/Sequential_YlOrBr.cmp -------------------------------------------------------------------------------- /ColorMaps/Sequential_YlOrRd.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/ColorMaps/Sequential_YlOrRd.cmp -------------------------------------------------------------------------------- /ColorMaps/spring.cmp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DFTFringe.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/DFTFringe.pro -------------------------------------------------------------------------------- /DFTFringe.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/DFTFringe.rc -------------------------------------------------------------------------------- /DFTFringe_Dale.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/DFTFringe_Dale.pro -------------------------------------------------------------------------------- /DFTFringe_QT5.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/DFTFringe_QT5.pro -------------------------------------------------------------------------------- /DFTResources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/DFTResources.qrc -------------------------------------------------------------------------------- /IgramArea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/IgramArea.h -------------------------------------------------------------------------------- /LICENSES/Apache-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/LICENSES/Apache-2.0.txt -------------------------------------------------------------------------------- /LICENSES/LGPLv3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/LICENSES/LGPLv3.txt -------------------------------------------------------------------------------- /LICENSES/MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/LICENSES/MIT.txt -------------------------------------------------------------------------------- /LICENSES/Qwt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/LICENSES/Qwt.txt -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/README.md -------------------------------------------------------------------------------- /RevisionHistory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/RevisionHistory.html -------------------------------------------------------------------------------- /SingleApplication/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/SingleApplication/LICENSE -------------------------------------------------------------------------------- /annulushelpdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/annulushelpdlg.cpp -------------------------------------------------------------------------------- /annulushelpdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/annulushelpdlg.h -------------------------------------------------------------------------------- /annulushelpdlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/annulushelpdlg.ui -------------------------------------------------------------------------------- /arbitrarywavefronthelp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/arbitrarywavefronthelp.cpp -------------------------------------------------------------------------------- /arbitrarywavefronthelp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/arbitrarywavefronthelp.h -------------------------------------------------------------------------------- /arbitrarywavefronthelp.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/arbitrarywavefronthelp.ui -------------------------------------------------------------------------------- /arbitrarywavwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/arbitrarywavwidget.cpp -------------------------------------------------------------------------------- /arbitrarywavwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/arbitrarywavwidget.h -------------------------------------------------------------------------------- /astigpolargraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/astigpolargraph.cpp -------------------------------------------------------------------------------- /astigpolargraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/astigpolargraph.h -------------------------------------------------------------------------------- /astigpolargraph.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/astigpolargraph.ui -------------------------------------------------------------------------------- /astigscatterplot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/astigscatterplot.cpp -------------------------------------------------------------------------------- /astigscatterplot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/astigscatterplot.h -------------------------------------------------------------------------------- /astigstatsdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/astigstatsdlg.cpp -------------------------------------------------------------------------------- /astigstatsdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/astigstatsdlg.h -------------------------------------------------------------------------------- /astigstatsdlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/astigstatsdlg.ui -------------------------------------------------------------------------------- /autoinvertdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/autoinvertdlg.cpp -------------------------------------------------------------------------------- /autoinvertdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/autoinvertdlg.h -------------------------------------------------------------------------------- /autoinvertdlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/autoinvertdlg.ui -------------------------------------------------------------------------------- /averagewavefrontfilesdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/averagewavefrontfilesdlg.cpp -------------------------------------------------------------------------------- /averagewavefrontfilesdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/averagewavefrontfilesdlg.h -------------------------------------------------------------------------------- /averagewavefrontfilesdlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/averagewavefrontfilesdlg.ui -------------------------------------------------------------------------------- /batchigramwizard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/batchigramwizard.cpp -------------------------------------------------------------------------------- /batchigramwizard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/batchigramwizard.h -------------------------------------------------------------------------------- /batchigramwizard.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/batchigramwizard.ui -------------------------------------------------------------------------------- /bathastigdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/bathastigdlg.cpp -------------------------------------------------------------------------------- /bathastigdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/bathastigdlg.h -------------------------------------------------------------------------------- /bathastigdlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/bathastigdlg.ui -------------------------------------------------------------------------------- /bezier/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/bezier/LICENSE.txt -------------------------------------------------------------------------------- /bezier/bezier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/bezier/bezier.h -------------------------------------------------------------------------------- /boost/LICENSE_1_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/LICENSE_1_0.txt -------------------------------------------------------------------------------- /boost/aligned_storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/aligned_storage.hpp -------------------------------------------------------------------------------- /boost/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/array.hpp -------------------------------------------------------------------------------- /boost/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/assert.hpp -------------------------------------------------------------------------------- /boost/assert/source_location.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/assert/source_location.hpp -------------------------------------------------------------------------------- /boost/checked_delete.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/checked_delete.hpp -------------------------------------------------------------------------------- /boost/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config.hpp -------------------------------------------------------------------------------- /boost/config/abi/msvc_prefix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/abi/msvc_prefix.hpp -------------------------------------------------------------------------------- /boost/config/abi/msvc_suffix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/abi/msvc_suffix.hpp -------------------------------------------------------------------------------- /boost/config/abi_prefix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/abi_prefix.hpp -------------------------------------------------------------------------------- /boost/config/abi_suffix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/abi_suffix.hpp -------------------------------------------------------------------------------- /boost/config/assert_cxx03.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/assert_cxx03.hpp -------------------------------------------------------------------------------- /boost/config/assert_cxx11.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/assert_cxx11.hpp -------------------------------------------------------------------------------- /boost/config/assert_cxx14.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/assert_cxx14.hpp -------------------------------------------------------------------------------- /boost/config/assert_cxx17.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/assert_cxx17.hpp -------------------------------------------------------------------------------- /boost/config/assert_cxx20.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/assert_cxx20.hpp -------------------------------------------------------------------------------- /boost/config/assert_cxx98.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/assert_cxx98.hpp -------------------------------------------------------------------------------- /boost/config/auto_link.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/auto_link.hpp -------------------------------------------------------------------------------- /boost/config/compiler/borland.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/compiler/borland.hpp -------------------------------------------------------------------------------- /boost/config/compiler/clang.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/compiler/clang.hpp -------------------------------------------------------------------------------- /boost/config/compiler/codegear.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/compiler/codegear.hpp -------------------------------------------------------------------------------- /boost/config/compiler/comeau.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/compiler/comeau.hpp -------------------------------------------------------------------------------- /boost/config/compiler/cray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/compiler/cray.hpp -------------------------------------------------------------------------------- /boost/config/compiler/diab.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/compiler/diab.hpp -------------------------------------------------------------------------------- /boost/config/compiler/gcc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/compiler/gcc.hpp -------------------------------------------------------------------------------- /boost/config/compiler/gcc_xml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/compiler/gcc_xml.hpp -------------------------------------------------------------------------------- /boost/config/compiler/hp_acc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/compiler/hp_acc.hpp -------------------------------------------------------------------------------- /boost/config/compiler/intel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/compiler/intel.hpp -------------------------------------------------------------------------------- /boost/config/compiler/kai.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/compiler/kai.hpp -------------------------------------------------------------------------------- /boost/config/compiler/mpw.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/compiler/mpw.hpp -------------------------------------------------------------------------------- /boost/config/compiler/nvcc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/compiler/nvcc.hpp -------------------------------------------------------------------------------- /boost/config/compiler/pgi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/compiler/pgi.hpp -------------------------------------------------------------------------------- /boost/config/compiler/vacpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/compiler/vacpp.hpp -------------------------------------------------------------------------------- /boost/config/compiler/visualc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/compiler/visualc.hpp -------------------------------------------------------------------------------- /boost/config/compiler/xlcpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/compiler/xlcpp.hpp -------------------------------------------------------------------------------- /boost/config/detail/suffix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/detail/suffix.hpp -------------------------------------------------------------------------------- /boost/config/header_deprecated.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/header_deprecated.hpp -------------------------------------------------------------------------------- /boost/config/helper_macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/helper_macros.hpp -------------------------------------------------------------------------------- /boost/config/no_tr1/cmath.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/no_tr1/cmath.hpp -------------------------------------------------------------------------------- /boost/config/no_tr1/complex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/no_tr1/complex.hpp -------------------------------------------------------------------------------- /boost/config/no_tr1/functional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/no_tr1/functional.hpp -------------------------------------------------------------------------------- /boost/config/no_tr1/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/no_tr1/memory.hpp -------------------------------------------------------------------------------- /boost/config/no_tr1/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/no_tr1/utility.hpp -------------------------------------------------------------------------------- /boost/config/platform/aix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/platform/aix.hpp -------------------------------------------------------------------------------- /boost/config/platform/amigaos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/platform/amigaos.hpp -------------------------------------------------------------------------------- /boost/config/platform/beos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/platform/beos.hpp -------------------------------------------------------------------------------- /boost/config/platform/bsd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/platform/bsd.hpp -------------------------------------------------------------------------------- /boost/config/platform/cloudabi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/platform/cloudabi.hpp -------------------------------------------------------------------------------- /boost/config/platform/cray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/platform/cray.hpp -------------------------------------------------------------------------------- /boost/config/platform/cygwin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/platform/cygwin.hpp -------------------------------------------------------------------------------- /boost/config/platform/haiku.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/platform/haiku.hpp -------------------------------------------------------------------------------- /boost/config/platform/hpux.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/platform/hpux.hpp -------------------------------------------------------------------------------- /boost/config/platform/irix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/platform/irix.hpp -------------------------------------------------------------------------------- /boost/config/platform/linux.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/platform/linux.hpp -------------------------------------------------------------------------------- /boost/config/platform/macos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/platform/macos.hpp -------------------------------------------------------------------------------- /boost/config/platform/qnxnto.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/platform/qnxnto.hpp -------------------------------------------------------------------------------- /boost/config/platform/solaris.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/platform/solaris.hpp -------------------------------------------------------------------------------- /boost/config/platform/symbian.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/platform/symbian.hpp -------------------------------------------------------------------------------- /boost/config/platform/vms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/platform/vms.hpp -------------------------------------------------------------------------------- /boost/config/platform/vxworks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/platform/vxworks.hpp -------------------------------------------------------------------------------- /boost/config/platform/wasm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/platform/wasm.hpp -------------------------------------------------------------------------------- /boost/config/platform/win32.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/platform/win32.hpp -------------------------------------------------------------------------------- /boost/config/platform/zos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/platform/zos.hpp -------------------------------------------------------------------------------- /boost/config/pragma_message.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/pragma_message.hpp -------------------------------------------------------------------------------- /boost/config/requires_threads.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/requires_threads.hpp -------------------------------------------------------------------------------- /boost/config/stdlib/dinkumware.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/stdlib/dinkumware.hpp -------------------------------------------------------------------------------- /boost/config/stdlib/libcomo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/stdlib/libcomo.hpp -------------------------------------------------------------------------------- /boost/config/stdlib/libcpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/stdlib/libcpp.hpp -------------------------------------------------------------------------------- /boost/config/stdlib/libstdcpp3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/stdlib/libstdcpp3.hpp -------------------------------------------------------------------------------- /boost/config/stdlib/modena.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/stdlib/modena.hpp -------------------------------------------------------------------------------- /boost/config/stdlib/msl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/stdlib/msl.hpp -------------------------------------------------------------------------------- /boost/config/stdlib/roguewave.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/stdlib/roguewave.hpp -------------------------------------------------------------------------------- /boost/config/stdlib/sgi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/stdlib/sgi.hpp -------------------------------------------------------------------------------- /boost/config/stdlib/stlport.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/stdlib/stlport.hpp -------------------------------------------------------------------------------- /boost/config/stdlib/vacpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/stdlib/vacpp.hpp -------------------------------------------------------------------------------- /boost/config/stdlib/xlcpp_zos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/stdlib/xlcpp_zos.hpp -------------------------------------------------------------------------------- /boost/config/user.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/user.hpp -------------------------------------------------------------------------------- /boost/config/warning_disable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/warning_disable.hpp -------------------------------------------------------------------------------- /boost/config/workaround.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/config/workaround.hpp -------------------------------------------------------------------------------- /boost/container_hash/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/container_hash/hash.hpp -------------------------------------------------------------------------------- /boost/container_hash/hash_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/container_hash/hash_fwd.hpp -------------------------------------------------------------------------------- /boost/container_hash/is_range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/container_hash/is_range.hpp -------------------------------------------------------------------------------- /boost/core/addressof.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/core/addressof.hpp -------------------------------------------------------------------------------- /boost/core/alignof.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/core/alignof.hpp -------------------------------------------------------------------------------- /boost/core/alloc_construct.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/core/alloc_construct.hpp -------------------------------------------------------------------------------- /boost/core/allocator_access.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/core/allocator_access.hpp -------------------------------------------------------------------------------- /boost/core/allocator_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/core/allocator_traits.hpp -------------------------------------------------------------------------------- /boost/core/bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/core/bit.hpp -------------------------------------------------------------------------------- /boost/core/checked_delete.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/core/checked_delete.hpp -------------------------------------------------------------------------------- /boost/core/cmath.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/core/cmath.hpp -------------------------------------------------------------------------------- /boost/core/data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/core/data.hpp -------------------------------------------------------------------------------- /boost/core/default_allocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/core/default_allocator.hpp -------------------------------------------------------------------------------- /boost/core/demangle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/core/demangle.hpp -------------------------------------------------------------------------------- /boost/core/detail/is_same.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/core/detail/is_same.hpp -------------------------------------------------------------------------------- /boost/core/detail/splitmix64.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/core/detail/splitmix64.hpp -------------------------------------------------------------------------------- /boost/core/detail/string_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/core/detail/string_view.hpp -------------------------------------------------------------------------------- /boost/core/empty_value.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/core/empty_value.hpp -------------------------------------------------------------------------------- /boost/core/enable_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/core/enable_if.hpp -------------------------------------------------------------------------------- /boost/core/exchange.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/core/exchange.hpp -------------------------------------------------------------------------------- /boost/core/fclose_deleter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/core/fclose_deleter.hpp -------------------------------------------------------------------------------- /boost/core/first_scalar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/core/first_scalar.hpp -------------------------------------------------------------------------------- /boost/core/identity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/core/identity.hpp -------------------------------------------------------------------------------- /boost/core/ignore_unused.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/core/ignore_unused.hpp -------------------------------------------------------------------------------- /boost/core/is_same.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/core/is_same.hpp -------------------------------------------------------------------------------- /boost/core/launder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/core/launder.hpp -------------------------------------------------------------------------------- /boost/core/lightweight_test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/core/lightweight_test.hpp -------------------------------------------------------------------------------- /boost/core/make_span.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/core/make_span.hpp -------------------------------------------------------------------------------- /boost/core/max_align.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/core/max_align.hpp -------------------------------------------------------------------------------- /boost/core/memory_resource.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/core/memory_resource.hpp -------------------------------------------------------------------------------- /boost/core/noinit_adaptor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/core/noinit_adaptor.hpp -------------------------------------------------------------------------------- /boost/core/noncopyable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/core/noncopyable.hpp -------------------------------------------------------------------------------- /boost/core/null_deleter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/core/null_deleter.hpp -------------------------------------------------------------------------------- /boost/core/nvp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/core/nvp.hpp -------------------------------------------------------------------------------- /boost/core/pointer_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/core/pointer_traits.hpp -------------------------------------------------------------------------------- /boost/core/quick_exit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/core/quick_exit.hpp -------------------------------------------------------------------------------- /boost/core/ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/core/ref.hpp -------------------------------------------------------------------------------- /boost/core/scoped_enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/core/scoped_enum.hpp -------------------------------------------------------------------------------- /boost/core/serialization.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/core/serialization.hpp -------------------------------------------------------------------------------- /boost/core/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/core/size.hpp -------------------------------------------------------------------------------- /boost/core/snprintf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/core/snprintf.hpp -------------------------------------------------------------------------------- /boost/core/span.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/core/span.hpp -------------------------------------------------------------------------------- /boost/core/swap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/core/swap.hpp -------------------------------------------------------------------------------- /boost/core/type_name.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/core/type_name.hpp -------------------------------------------------------------------------------- /boost/core/typeinfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/core/typeinfo.hpp -------------------------------------------------------------------------------- /boost/core/uncaught_exceptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/core/uncaught_exceptions.hpp -------------------------------------------------------------------------------- /boost/core/underlying_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/core/underlying_type.hpp -------------------------------------------------------------------------------- /boost/core/use_default.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/core/use_default.hpp -------------------------------------------------------------------------------- /boost/core/yield_primitives.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/core/yield_primitives.hpp -------------------------------------------------------------------------------- /boost/cstdint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/cstdint.hpp -------------------------------------------------------------------------------- /boost/current_function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/current_function.hpp -------------------------------------------------------------------------------- /boost/cxx11_char_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/cxx11_char_types.hpp -------------------------------------------------------------------------------- /boost/detail/interlocked.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/detail/interlocked.hpp -------------------------------------------------------------------------------- /boost/detail/iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/detail/iterator.hpp -------------------------------------------------------------------------------- /boost/detail/lightweight_test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/detail/lightweight_test.hpp -------------------------------------------------------------------------------- /boost/detail/sp_typeinfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/detail/sp_typeinfo.hpp -------------------------------------------------------------------------------- /boost/detail/winapi/apc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/detail/winapi/apc.hpp -------------------------------------------------------------------------------- /boost/detail/winapi/bcrypt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/detail/winapi/bcrypt.hpp -------------------------------------------------------------------------------- /boost/detail/winapi/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/detail/winapi/config.hpp -------------------------------------------------------------------------------- /boost/detail/winapi/crypt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/detail/winapi/crypt.hpp -------------------------------------------------------------------------------- /boost/detail/winapi/dbghelp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/detail/winapi/dbghelp.hpp -------------------------------------------------------------------------------- /boost/detail/winapi/debugapi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/detail/winapi/debugapi.hpp -------------------------------------------------------------------------------- /boost/detail/winapi/dll.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/detail/winapi/dll.hpp -------------------------------------------------------------------------------- /boost/detail/winapi/event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/detail/winapi/event.hpp -------------------------------------------------------------------------------- /boost/detail/winapi/handles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/detail/winapi/handles.hpp -------------------------------------------------------------------------------- /boost/detail/winapi/init_once.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/detail/winapi/init_once.hpp -------------------------------------------------------------------------------- /boost/detail/winapi/jobs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/detail/winapi/jobs.hpp -------------------------------------------------------------------------------- /boost/detail/winapi/limits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/detail/winapi/limits.hpp -------------------------------------------------------------------------------- /boost/detail/winapi/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/detail/winapi/memory.hpp -------------------------------------------------------------------------------- /boost/detail/winapi/mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/detail/winapi/mutex.hpp -------------------------------------------------------------------------------- /boost/detail/winapi/overlapped.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/detail/winapi/overlapped.hpp -------------------------------------------------------------------------------- /boost/detail/winapi/pipes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/detail/winapi/pipes.hpp -------------------------------------------------------------------------------- /boost/detail/winapi/process.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/detail/winapi/process.hpp -------------------------------------------------------------------------------- /boost/detail/winapi/security.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/detail/winapi/security.hpp -------------------------------------------------------------------------------- /boost/detail/winapi/semaphore.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/detail/winapi/semaphore.hpp -------------------------------------------------------------------------------- /boost/detail/winapi/shell.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/detail/winapi/shell.hpp -------------------------------------------------------------------------------- /boost/detail/winapi/srw_lock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/detail/winapi/srw_lock.hpp -------------------------------------------------------------------------------- /boost/detail/winapi/system.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/detail/winapi/system.hpp -------------------------------------------------------------------------------- /boost/detail/winapi/thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/detail/winapi/thread.hpp -------------------------------------------------------------------------------- /boost/detail/winapi/time.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/detail/winapi/time.hpp -------------------------------------------------------------------------------- /boost/detail/winapi/timers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/detail/winapi/timers.hpp -------------------------------------------------------------------------------- /boost/detail/winapi/tls.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/detail/winapi/tls.hpp -------------------------------------------------------------------------------- /boost/detail/winapi/wait.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/detail/winapi/wait.hpp -------------------------------------------------------------------------------- /boost/detail/workaround.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/detail/workaround.hpp -------------------------------------------------------------------------------- /boost/exception/exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/exception/exception.hpp -------------------------------------------------------------------------------- /boost/functional/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/functional/hash.hpp -------------------------------------------------------------------------------- /boost/functional/hash/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/functional/hash/hash.hpp -------------------------------------------------------------------------------- /boost/functional/hash/hash_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/functional/hash/hash_fwd.hpp -------------------------------------------------------------------------------- /boost/functional/hash_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/functional/hash_fwd.hpp -------------------------------------------------------------------------------- /boost/get_pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/get_pointer.hpp -------------------------------------------------------------------------------- /boost/iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/iterator.hpp -------------------------------------------------------------------------------- /boost/limits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/limits.hpp -------------------------------------------------------------------------------- /boost/non_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/non_type.hpp -------------------------------------------------------------------------------- /boost/noncopyable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/noncopyable.hpp -------------------------------------------------------------------------------- /boost/predef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef.h -------------------------------------------------------------------------------- /boost/predef/architecture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/architecture.h -------------------------------------------------------------------------------- /boost/predef/architecture/alpha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/architecture/alpha.h -------------------------------------------------------------------------------- /boost/predef/architecture/arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/architecture/arm.h -------------------------------------------------------------------------------- /boost/predef/architecture/convex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/architecture/convex.h -------------------------------------------------------------------------------- /boost/predef/architecture/e2k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/architecture/e2k.h -------------------------------------------------------------------------------- /boost/predef/architecture/ia64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/architecture/ia64.h -------------------------------------------------------------------------------- /boost/predef/architecture/m68k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/architecture/m68k.h -------------------------------------------------------------------------------- /boost/predef/architecture/mips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/architecture/mips.h -------------------------------------------------------------------------------- /boost/predef/architecture/parisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/architecture/parisc.h -------------------------------------------------------------------------------- /boost/predef/architecture/ppc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/architecture/ppc.h -------------------------------------------------------------------------------- /boost/predef/architecture/ptx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/architecture/ptx.h -------------------------------------------------------------------------------- /boost/predef/architecture/riscv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/architecture/riscv.h -------------------------------------------------------------------------------- /boost/predef/architecture/rs6k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/architecture/rs6k.h -------------------------------------------------------------------------------- /boost/predef/architecture/sparc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/architecture/sparc.h -------------------------------------------------------------------------------- /boost/predef/architecture/superh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/architecture/superh.h -------------------------------------------------------------------------------- /boost/predef/architecture/sys370.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/architecture/sys370.h -------------------------------------------------------------------------------- /boost/predef/architecture/sys390.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/architecture/sys390.h -------------------------------------------------------------------------------- /boost/predef/architecture/x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/architecture/x86.h -------------------------------------------------------------------------------- /boost/predef/architecture/x86/32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/architecture/x86/32.h -------------------------------------------------------------------------------- /boost/predef/architecture/x86/64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/architecture/x86/64.h -------------------------------------------------------------------------------- /boost/predef/architecture/z.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/architecture/z.h -------------------------------------------------------------------------------- /boost/predef/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/compiler.h -------------------------------------------------------------------------------- /boost/predef/compiler/borland.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/compiler/borland.h -------------------------------------------------------------------------------- /boost/predef/compiler/clang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/compiler/clang.h -------------------------------------------------------------------------------- /boost/predef/compiler/comeau.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/compiler/comeau.h -------------------------------------------------------------------------------- /boost/predef/compiler/compaq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/compiler/compaq.h -------------------------------------------------------------------------------- /boost/predef/compiler/diab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/compiler/diab.h -------------------------------------------------------------------------------- /boost/predef/compiler/dignus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/compiler/dignus.h -------------------------------------------------------------------------------- /boost/predef/compiler/edg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/compiler/edg.h -------------------------------------------------------------------------------- /boost/predef/compiler/ekopath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/compiler/ekopath.h -------------------------------------------------------------------------------- /boost/predef/compiler/gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/compiler/gcc.h -------------------------------------------------------------------------------- /boost/predef/compiler/gcc_xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/compiler/gcc_xml.h -------------------------------------------------------------------------------- /boost/predef/compiler/greenhills.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/compiler/greenhills.h -------------------------------------------------------------------------------- /boost/predef/compiler/hp_acc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/compiler/hp_acc.h -------------------------------------------------------------------------------- /boost/predef/compiler/iar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/compiler/iar.h -------------------------------------------------------------------------------- /boost/predef/compiler/ibm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/compiler/ibm.h -------------------------------------------------------------------------------- /boost/predef/compiler/intel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/compiler/intel.h -------------------------------------------------------------------------------- /boost/predef/compiler/kai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/compiler/kai.h -------------------------------------------------------------------------------- /boost/predef/compiler/llvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/compiler/llvm.h -------------------------------------------------------------------------------- /boost/predef/compiler/metaware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/compiler/metaware.h -------------------------------------------------------------------------------- /boost/predef/compiler/metrowerks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/compiler/metrowerks.h -------------------------------------------------------------------------------- /boost/predef/compiler/microtec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/compiler/microtec.h -------------------------------------------------------------------------------- /boost/predef/compiler/mpw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/compiler/mpw.h -------------------------------------------------------------------------------- /boost/predef/compiler/nvcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/compiler/nvcc.h -------------------------------------------------------------------------------- /boost/predef/compiler/palm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/compiler/palm.h -------------------------------------------------------------------------------- /boost/predef/compiler/pgi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/compiler/pgi.h -------------------------------------------------------------------------------- /boost/predef/compiler/sunpro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/compiler/sunpro.h -------------------------------------------------------------------------------- /boost/predef/compiler/tendra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/compiler/tendra.h -------------------------------------------------------------------------------- /boost/predef/compiler/visualc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/compiler/visualc.h -------------------------------------------------------------------------------- /boost/predef/compiler/watcom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/compiler/watcom.h -------------------------------------------------------------------------------- /boost/predef/detail/_cassert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/detail/_cassert.h -------------------------------------------------------------------------------- /boost/predef/detail/_exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/detail/_exception.h -------------------------------------------------------------------------------- /boost/predef/detail/os_detected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/detail/os_detected.h -------------------------------------------------------------------------------- /boost/predef/detail/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/detail/test.h -------------------------------------------------------------------------------- /boost/predef/detail/test_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/detail/test_def.h -------------------------------------------------------------------------------- /boost/predef/hardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/hardware.h -------------------------------------------------------------------------------- /boost/predef/hardware/simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/hardware/simd.h -------------------------------------------------------------------------------- /boost/predef/hardware/simd/arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/hardware/simd/arm.h -------------------------------------------------------------------------------- /boost/predef/language.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/language.h -------------------------------------------------------------------------------- /boost/predef/language/cuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/language/cuda.h -------------------------------------------------------------------------------- /boost/predef/language/objc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/language/objc.h -------------------------------------------------------------------------------- /boost/predef/language/stdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/language/stdc.h -------------------------------------------------------------------------------- /boost/predef/language/stdcpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/language/stdcpp.h -------------------------------------------------------------------------------- /boost/predef/library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/library.h -------------------------------------------------------------------------------- /boost/predef/library/c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/library/c.h -------------------------------------------------------------------------------- /boost/predef/library/c/gnu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/library/c/gnu.h -------------------------------------------------------------------------------- /boost/predef/library/c/uc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/library/c/uc.h -------------------------------------------------------------------------------- /boost/predef/library/c/vms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/library/c/vms.h -------------------------------------------------------------------------------- /boost/predef/library/c/zos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/library/c/zos.h -------------------------------------------------------------------------------- /boost/predef/library/std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/library/std.h -------------------------------------------------------------------------------- /boost/predef/library/std/cxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/library/std/cxx.h -------------------------------------------------------------------------------- /boost/predef/library/std/msl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/library/std/msl.h -------------------------------------------------------------------------------- /boost/predef/library/std/sgi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/library/std/sgi.h -------------------------------------------------------------------------------- /boost/predef/make.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/make.h -------------------------------------------------------------------------------- /boost/predef/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/os.h -------------------------------------------------------------------------------- /boost/predef/os/aix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/os/aix.h -------------------------------------------------------------------------------- /boost/predef/os/amigaos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/os/amigaos.h -------------------------------------------------------------------------------- /boost/predef/os/beos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/os/beos.h -------------------------------------------------------------------------------- /boost/predef/os/bsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/os/bsd.h -------------------------------------------------------------------------------- /boost/predef/os/bsd/bsdi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/os/bsd/bsdi.h -------------------------------------------------------------------------------- /boost/predef/os/bsd/dragonfly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/os/bsd/dragonfly.h -------------------------------------------------------------------------------- /boost/predef/os/bsd/free.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/os/bsd/free.h -------------------------------------------------------------------------------- /boost/predef/os/bsd/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/os/bsd/net.h -------------------------------------------------------------------------------- /boost/predef/os/bsd/open.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/os/bsd/open.h -------------------------------------------------------------------------------- /boost/predef/os/cygwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/os/cygwin.h -------------------------------------------------------------------------------- /boost/predef/os/haiku.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/os/haiku.h -------------------------------------------------------------------------------- /boost/predef/os/hpux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/os/hpux.h -------------------------------------------------------------------------------- /boost/predef/os/ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/os/ios.h -------------------------------------------------------------------------------- /boost/predef/os/irix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/os/irix.h -------------------------------------------------------------------------------- /boost/predef/os/linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/os/linux.h -------------------------------------------------------------------------------- /boost/predef/os/macos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/os/macos.h -------------------------------------------------------------------------------- /boost/predef/os/os400.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/os/os400.h -------------------------------------------------------------------------------- /boost/predef/os/qnxnto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/os/qnxnto.h -------------------------------------------------------------------------------- /boost/predef/os/solaris.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/os/solaris.h -------------------------------------------------------------------------------- /boost/predef/os/unix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/os/unix.h -------------------------------------------------------------------------------- /boost/predef/os/vms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/os/vms.h -------------------------------------------------------------------------------- /boost/predef/os/windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/os/windows.h -------------------------------------------------------------------------------- /boost/predef/other.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/other.h -------------------------------------------------------------------------------- /boost/predef/other/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/other/endian.h -------------------------------------------------------------------------------- /boost/predef/other/wordsize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/other/wordsize.h -------------------------------------------------------------------------------- /boost/predef/other/workaround.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/other/workaround.h -------------------------------------------------------------------------------- /boost/predef/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/platform.h -------------------------------------------------------------------------------- /boost/predef/platform/android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/platform/android.h -------------------------------------------------------------------------------- /boost/predef/platform/ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/platform/ios.h -------------------------------------------------------------------------------- /boost/predef/platform/mingw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/platform/mingw.h -------------------------------------------------------------------------------- /boost/predef/platform/mingw32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/platform/mingw32.h -------------------------------------------------------------------------------- /boost/predef/platform/mingw64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/platform/mingw64.h -------------------------------------------------------------------------------- /boost/predef/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/version.h -------------------------------------------------------------------------------- /boost/predef/version_number.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/predef/version_number.h -------------------------------------------------------------------------------- /boost/ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/ref.hpp -------------------------------------------------------------------------------- /boost/stacktrace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/stacktrace.hpp -------------------------------------------------------------------------------- /boost/stacktrace/frame.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/stacktrace/frame.hpp -------------------------------------------------------------------------------- /boost/stacktrace/stacktrace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/stacktrace/stacktrace.hpp -------------------------------------------------------------------------------- /boost/static_assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/static_assert.hpp -------------------------------------------------------------------------------- /boost/swap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/swap.hpp -------------------------------------------------------------------------------- /boost/throw_exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/throw_exception.hpp -------------------------------------------------------------------------------- /boost/type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/type.hpp -------------------------------------------------------------------------------- /boost/type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/type_traits.hpp -------------------------------------------------------------------------------- /boost/type_traits/add_const.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/type_traits/add_const.hpp -------------------------------------------------------------------------------- /boost/type_traits/add_cv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/type_traits/add_cv.hpp -------------------------------------------------------------------------------- /boost/type_traits/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/type_traits/config.hpp -------------------------------------------------------------------------------- /boost/type_traits/copy_cv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/type_traits/copy_cv.hpp -------------------------------------------------------------------------------- /boost/type_traits/cv_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/type_traits/cv_traits.hpp -------------------------------------------------------------------------------- /boost/type_traits/decay.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/type_traits/decay.hpp -------------------------------------------------------------------------------- /boost/type_traits/declval.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/type_traits/declval.hpp -------------------------------------------------------------------------------- /boost/type_traits/detected.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/type_traits/detected.hpp -------------------------------------------------------------------------------- /boost/type_traits/enable_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/type_traits/enable_if.hpp -------------------------------------------------------------------------------- /boost/type_traits/extent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/type_traits/extent.hpp -------------------------------------------------------------------------------- /boost/type_traits/has_less.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/type_traits/has_less.hpp -------------------------------------------------------------------------------- /boost/type_traits/has_minus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/type_traits/has_minus.hpp -------------------------------------------------------------------------------- /boost/type_traits/has_plus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/type_traits/has_plus.hpp -------------------------------------------------------------------------------- /boost/type_traits/ice.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/type_traits/ice.hpp -------------------------------------------------------------------------------- /boost/type_traits/is_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/type_traits/is_array.hpp -------------------------------------------------------------------------------- /boost/type_traits/is_class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/type_traits/is_class.hpp -------------------------------------------------------------------------------- /boost/type_traits/is_const.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/type_traits/is_const.hpp -------------------------------------------------------------------------------- /boost/type_traits/is_empty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/type_traits/is_empty.hpp -------------------------------------------------------------------------------- /boost/type_traits/is_enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/type_traits/is_enum.hpp -------------------------------------------------------------------------------- /boost/type_traits/is_final.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/type_traits/is_final.hpp -------------------------------------------------------------------------------- /boost/type_traits/is_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/type_traits/is_float.hpp -------------------------------------------------------------------------------- /boost/type_traits/is_object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/type_traits/is_object.hpp -------------------------------------------------------------------------------- /boost/type_traits/is_pod.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/type_traits/is_pod.hpp -------------------------------------------------------------------------------- /boost/type_traits/is_same.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/type_traits/is_same.hpp -------------------------------------------------------------------------------- /boost/type_traits/is_scalar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/type_traits/is_scalar.hpp -------------------------------------------------------------------------------- /boost/type_traits/is_signed.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/type_traits/is_signed.hpp -------------------------------------------------------------------------------- /boost/type_traits/is_union.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/type_traits/is_union.hpp -------------------------------------------------------------------------------- /boost/type_traits/is_void.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/type_traits/is_void.hpp -------------------------------------------------------------------------------- /boost/type_traits/make_void.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/type_traits/make_void.hpp -------------------------------------------------------------------------------- /boost/type_traits/negation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/type_traits/negation.hpp -------------------------------------------------------------------------------- /boost/type_traits/nonesuch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/type_traits/nonesuch.hpp -------------------------------------------------------------------------------- /boost/type_traits/promote.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/type_traits/promote.hpp -------------------------------------------------------------------------------- /boost/type_traits/rank.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/type_traits/rank.hpp -------------------------------------------------------------------------------- /boost/type_traits/remove_cv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/type_traits/remove_cv.hpp -------------------------------------------------------------------------------- /boost/utility/addressof.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/utility/addressof.hpp -------------------------------------------------------------------------------- /boost/utility/declval.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/utility/declval.hpp -------------------------------------------------------------------------------- /boost/utility/enable_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/utility/enable_if.hpp -------------------------------------------------------------------------------- /boost/utility/swap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/utility/swap.hpp -------------------------------------------------------------------------------- /boost/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/version.hpp -------------------------------------------------------------------------------- /boost/visit_each.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/visit_each.hpp -------------------------------------------------------------------------------- /boost/winapi/access_rights.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/winapi/access_rights.hpp -------------------------------------------------------------------------------- /boost/winapi/apc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/winapi/apc.hpp -------------------------------------------------------------------------------- /boost/winapi/basic_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/winapi/basic_types.hpp -------------------------------------------------------------------------------- /boost/winapi/bcrypt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/winapi/bcrypt.hpp -------------------------------------------------------------------------------- /boost/winapi/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/winapi/config.hpp -------------------------------------------------------------------------------- /boost/winapi/crypt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/winapi/crypt.hpp -------------------------------------------------------------------------------- /boost/winapi/dbghelp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/winapi/dbghelp.hpp -------------------------------------------------------------------------------- /boost/winapi/debugapi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/winapi/debugapi.hpp -------------------------------------------------------------------------------- /boost/winapi/detail/footer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/winapi/detail/footer.hpp -------------------------------------------------------------------------------- /boost/winapi/detail/header.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/winapi/detail/header.hpp -------------------------------------------------------------------------------- /boost/winapi/dll.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/winapi/dll.hpp -------------------------------------------------------------------------------- /boost/winapi/environment.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/winapi/environment.hpp -------------------------------------------------------------------------------- /boost/winapi/error_codes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/winapi/error_codes.hpp -------------------------------------------------------------------------------- /boost/winapi/error_handling.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/winapi/error_handling.hpp -------------------------------------------------------------------------------- /boost/winapi/event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/winapi/event.hpp -------------------------------------------------------------------------------- /boost/winapi/file_mapping.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/winapi/file_mapping.hpp -------------------------------------------------------------------------------- /boost/winapi/get_last_error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/winapi/get_last_error.hpp -------------------------------------------------------------------------------- /boost/winapi/handle_info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/winapi/handle_info.hpp -------------------------------------------------------------------------------- /boost/winapi/handles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/winapi/handles.hpp -------------------------------------------------------------------------------- /boost/winapi/heap_memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/winapi/heap_memory.hpp -------------------------------------------------------------------------------- /boost/winapi/init_once.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/winapi/init_once.hpp -------------------------------------------------------------------------------- /boost/winapi/jobs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/winapi/jobs.hpp -------------------------------------------------------------------------------- /boost/winapi/limits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/winapi/limits.hpp -------------------------------------------------------------------------------- /boost/winapi/local_memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/winapi/local_memory.hpp -------------------------------------------------------------------------------- /boost/winapi/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/winapi/memory.hpp -------------------------------------------------------------------------------- /boost/winapi/mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/winapi/mutex.hpp -------------------------------------------------------------------------------- /boost/winapi/overlapped.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/winapi/overlapped.hpp -------------------------------------------------------------------------------- /boost/winapi/pipes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/winapi/pipes.hpp -------------------------------------------------------------------------------- /boost/winapi/priority_class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/winapi/priority_class.hpp -------------------------------------------------------------------------------- /boost/winapi/process.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/winapi/process.hpp -------------------------------------------------------------------------------- /boost/winapi/security.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/winapi/security.hpp -------------------------------------------------------------------------------- /boost/winapi/semaphore.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/winapi/semaphore.hpp -------------------------------------------------------------------------------- /boost/winapi/shell.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/winapi/shell.hpp -------------------------------------------------------------------------------- /boost/winapi/show_window.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/winapi/show_window.hpp -------------------------------------------------------------------------------- /boost/winapi/srw_lock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/winapi/srw_lock.hpp -------------------------------------------------------------------------------- /boost/winapi/system.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/winapi/system.hpp -------------------------------------------------------------------------------- /boost/winapi/thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/winapi/thread.hpp -------------------------------------------------------------------------------- /boost/winapi/thread_pool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/winapi/thread_pool.hpp -------------------------------------------------------------------------------- /boost/winapi/time.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/winapi/time.hpp -------------------------------------------------------------------------------- /boost/winapi/timers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/winapi/timers.hpp -------------------------------------------------------------------------------- /boost/winapi/tls.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/winapi/tls.hpp -------------------------------------------------------------------------------- /boost/winapi/wait.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/winapi/wait.hpp -------------------------------------------------------------------------------- /boost/winapi/wait_constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/winapi/wait_constants.hpp -------------------------------------------------------------------------------- /boost/winapi/waitable_timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/boost/winapi/waitable_timer.hpp -------------------------------------------------------------------------------- /camcalibrationreviewdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/camcalibrationreviewdlg.cpp -------------------------------------------------------------------------------- /camcalibrationreviewdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/camcalibrationreviewdlg.h -------------------------------------------------------------------------------- /camcalibrationreviewdlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/camcalibrationreviewdlg.ui -------------------------------------------------------------------------------- /cameracalibwizard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/cameracalibwizard.cpp -------------------------------------------------------------------------------- /cameracalibwizard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/cameracalibwizard.h -------------------------------------------------------------------------------- /cameracalibwizard.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/cameracalibwizard.ui -------------------------------------------------------------------------------- /camwizardpage1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/camwizardpage1.cpp -------------------------------------------------------------------------------- /camwizardpage1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/camwizardpage1.h -------------------------------------------------------------------------------- /camwizardpage1.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/camwizardpage1.ui -------------------------------------------------------------------------------- /ccswappeddlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/ccswappeddlg.cpp -------------------------------------------------------------------------------- /ccswappeddlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/ccswappeddlg.h -------------------------------------------------------------------------------- /ccswappeddlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/ccswappeddlg.ui -------------------------------------------------------------------------------- /circle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/circle.h -------------------------------------------------------------------------------- /circlefit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/circlefit.cpp -------------------------------------------------------------------------------- /circleoutline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/circleoutline.cpp -------------------------------------------------------------------------------- /circleutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/circleutils.h -------------------------------------------------------------------------------- /colorchannel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/colorchannel.cpp -------------------------------------------------------------------------------- /colorchannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/colorchannel.h -------------------------------------------------------------------------------- /colorchanneldisplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/colorchanneldisplay.cpp -------------------------------------------------------------------------------- /colorchanneldisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/colorchanneldisplay.h -------------------------------------------------------------------------------- /colorchanneldisplay.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/colorchanneldisplay.ui -------------------------------------------------------------------------------- /colormapviewerdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/colormapviewerdlg.cpp -------------------------------------------------------------------------------- /colormapviewerdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/colormapviewerdlg.h -------------------------------------------------------------------------------- /colormapviewerdlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/colormapviewerdlg.ui -------------------------------------------------------------------------------- /contourplot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/contourplot.cpp -------------------------------------------------------------------------------- /contourplot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/contourplot.h -------------------------------------------------------------------------------- /contourrulerparams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/contourrulerparams.cpp -------------------------------------------------------------------------------- /contourrulerparams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/contourrulerparams.h -------------------------------------------------------------------------------- /contourrulerparams.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/contourrulerparams.ui -------------------------------------------------------------------------------- /contourtools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/contourtools.cpp -------------------------------------------------------------------------------- /contourtools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/contourtools.h -------------------------------------------------------------------------------- /contourtools.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/contourtools.ui -------------------------------------------------------------------------------- /contourview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/contourview.cpp -------------------------------------------------------------------------------- /contourview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/contourview.h -------------------------------------------------------------------------------- /contourview.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/contourview.ui -------------------------------------------------------------------------------- /counterrotationdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/counterrotationdlg.cpp -------------------------------------------------------------------------------- /counterrotationdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/counterrotationdlg.h -------------------------------------------------------------------------------- /counterrotationdlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/counterrotationdlg.ui -------------------------------------------------------------------------------- /cpoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/cpoint.cpp -------------------------------------------------------------------------------- /cpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/cpoint.h -------------------------------------------------------------------------------- /defocusdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/defocusdlg.cpp -------------------------------------------------------------------------------- /defocusdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/defocusdlg.h -------------------------------------------------------------------------------- /defocusdlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/defocusdlg.ui -------------------------------------------------------------------------------- /dftarea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/dftarea.cpp -------------------------------------------------------------------------------- /dftarea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/dftarea.h -------------------------------------------------------------------------------- /dftarea.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/dftarea.ui -------------------------------------------------------------------------------- /dftcolormap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/dftcolormap.cpp -------------------------------------------------------------------------------- /dftcolormap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/dftcolormap.h -------------------------------------------------------------------------------- /dftfringe_fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/dftfringe_fr.ts -------------------------------------------------------------------------------- /dftthumb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/dftthumb.cpp -------------------------------------------------------------------------------- /dftthumb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/dftthumb.h -------------------------------------------------------------------------------- /dftthumb.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/dftthumb.ui -------------------------------------------------------------------------------- /dfttools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/dfttools.cpp -------------------------------------------------------------------------------- /dfttools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/dfttools.h -------------------------------------------------------------------------------- /dfttools.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/dfttools.ui -------------------------------------------------------------------------------- /edgeplot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/edgeplot.cpp -------------------------------------------------------------------------------- /edgeplot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/edgeplot.h -------------------------------------------------------------------------------- /edgeplot.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/edgeplot.ui -------------------------------------------------------------------------------- /filteroutlinesdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/filteroutlinesdlg.cpp -------------------------------------------------------------------------------- /filteroutlinesdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/filteroutlinesdlg.h -------------------------------------------------------------------------------- /filteroutlinesdlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/filteroutlinesdlg.ui -------------------------------------------------------------------------------- /foucaultview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/foucaultview.cpp -------------------------------------------------------------------------------- /foucaultview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/foucaultview.h -------------------------------------------------------------------------------- /foucaultview.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/foucaultview.ui -------------------------------------------------------------------------------- /generatetargetdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/generatetargetdlg.cpp -------------------------------------------------------------------------------- /generatetargetdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/generatetargetdlg.h -------------------------------------------------------------------------------- /generatetargetdlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/generatetargetdlg.ui -------------------------------------------------------------------------------- /graphicsutilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/graphicsutilities.cpp -------------------------------------------------------------------------------- /graphicsutilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/graphicsutilities.h -------------------------------------------------------------------------------- /graphmodifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/graphmodifier.cpp -------------------------------------------------------------------------------- /graphmodifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/graphmodifier.h -------------------------------------------------------------------------------- /helpdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/helpdlg.cpp -------------------------------------------------------------------------------- /helpdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/helpdlg.h -------------------------------------------------------------------------------- /helpdlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/helpdlg.ui -------------------------------------------------------------------------------- /hotkeysdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/hotkeysdlg.cpp -------------------------------------------------------------------------------- /hotkeysdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/hotkeysdlg.h -------------------------------------------------------------------------------- /hotkeysdlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/hotkeysdlg.ui -------------------------------------------------------------------------------- /igramarea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/igramarea.cpp -------------------------------------------------------------------------------- /igramintensity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/igramintensity.cpp -------------------------------------------------------------------------------- /igramintensity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/igramintensity.h -------------------------------------------------------------------------------- /igramintensity.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/igramintensity.ui -------------------------------------------------------------------------------- /imagehisto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/imagehisto.cpp -------------------------------------------------------------------------------- /imagehisto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/imagehisto.h -------------------------------------------------------------------------------- /intensityplot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/intensityplot.cpp -------------------------------------------------------------------------------- /intensityplot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/intensityplot.h -------------------------------------------------------------------------------- /jitteroutlinedlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/jitteroutlinedlg.cpp -------------------------------------------------------------------------------- /jitteroutlinedlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/jitteroutlinedlg.h -------------------------------------------------------------------------------- /jitteroutlinedlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/jitteroutlinedlg.ui -------------------------------------------------------------------------------- /lensetablemodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/lensetablemodel.cpp -------------------------------------------------------------------------------- /lensetablemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/lensetablemodel.h -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/main.cpp -------------------------------------------------------------------------------- /mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/mainwindow.cpp -------------------------------------------------------------------------------- /mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/mainwindow.h -------------------------------------------------------------------------------- /mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/mainwindow.ui -------------------------------------------------------------------------------- /messagereceiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/messagereceiver.cpp -------------------------------------------------------------------------------- /messagereceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/messagereceiver.h -------------------------------------------------------------------------------- /metricsdisplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/metricsdisplay.cpp -------------------------------------------------------------------------------- /metricsdisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/metricsdisplay.h -------------------------------------------------------------------------------- /metricsdisplay.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/metricsdisplay.ui -------------------------------------------------------------------------------- /mirrordlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/mirrordlg.cpp -------------------------------------------------------------------------------- /mirrordlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/mirrordlg.h -------------------------------------------------------------------------------- /mirrordlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/mirrordlg.ui -------------------------------------------------------------------------------- /myplotpicker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/myplotpicker.cpp -------------------------------------------------------------------------------- /myplotpicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/myplotpicker.h -------------------------------------------------------------------------------- /myutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/myutils.cpp -------------------------------------------------------------------------------- /myutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/myutils.h -------------------------------------------------------------------------------- /nullmarginhelpdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/nullmarginhelpdlg.cpp -------------------------------------------------------------------------------- /nullmarginhelpdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/nullmarginhelpdlg.h -------------------------------------------------------------------------------- /nullmarginhelpdlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/nullmarginhelpdlg.ui -------------------------------------------------------------------------------- /nullvariationdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/nullvariationdlg.cpp -------------------------------------------------------------------------------- /nullvariationdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/nullvariationdlg.h -------------------------------------------------------------------------------- /nullvariationdlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/nullvariationdlg.ui -------------------------------------------------------------------------------- /oglrendered.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/oglrendered.cpp -------------------------------------------------------------------------------- /oglrendered.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/oglrendered.h -------------------------------------------------------------------------------- /oglrendered.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/oglrendered.ui -------------------------------------------------------------------------------- /oglview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/oglview.cpp -------------------------------------------------------------------------------- /oglview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/oglview.h -------------------------------------------------------------------------------- /outlinedialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/outlinedialog.cpp -------------------------------------------------------------------------------- /outlinedialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/outlinedialog.h -------------------------------------------------------------------------------- /outlinedialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/outlinedialog.ui -------------------------------------------------------------------------------- /outlinehelpdocwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/outlinehelpdocwidget.cpp -------------------------------------------------------------------------------- /outlinehelpdocwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/outlinehelpdocwidget.h -------------------------------------------------------------------------------- /outlinehelpdocwidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/outlinehelpdocwidget.ui -------------------------------------------------------------------------------- /outlineplots.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/outlineplots.cpp -------------------------------------------------------------------------------- /outlineplots.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/outlineplots.h -------------------------------------------------------------------------------- /outlineplots.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/outlineplots.ui -------------------------------------------------------------------------------- /outlinestatsdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/outlinestatsdlg.cpp -------------------------------------------------------------------------------- /outlinestatsdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/outlinestatsdlg.h -------------------------------------------------------------------------------- /outlinestatsdlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/outlinestatsdlg.ui -------------------------------------------------------------------------------- /pdfcalibrationdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/pdfcalibrationdlg.cpp -------------------------------------------------------------------------------- /pdfcalibrationdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/pdfcalibrationdlg.h -------------------------------------------------------------------------------- /pdfcalibrationdlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/pdfcalibrationdlg.ui -------------------------------------------------------------------------------- /percentCorrectionSurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/percentCorrectionSurface.h -------------------------------------------------------------------------------- /percentcorrectiondlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/percentcorrectiondlg.cpp -------------------------------------------------------------------------------- /percentcorrectiondlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/percentcorrectiondlg.h -------------------------------------------------------------------------------- /percentcorrectiondlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/percentcorrectiondlg.ui -------------------------------------------------------------------------------- /pixelstats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/pixelstats.cpp -------------------------------------------------------------------------------- /pixelstats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/pixelstats.h -------------------------------------------------------------------------------- /pixelstats.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/pixelstats.ui -------------------------------------------------------------------------------- /plotcolor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/plotcolor.cpp -------------------------------------------------------------------------------- /plotcolor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/plotcolor.h -------------------------------------------------------------------------------- /profileplot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/profileplot.cpp -------------------------------------------------------------------------------- /profileplot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/profileplot.h -------------------------------------------------------------------------------- /profileplot.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/profileplot.ui -------------------------------------------------------------------------------- /profileplotpicker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/profileplotpicker.cpp -------------------------------------------------------------------------------- /profileplotpicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/profileplotpicker.h -------------------------------------------------------------------------------- /psfplot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/psfplot.cpp -------------------------------------------------------------------------------- /psfplot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/psfplot.h -------------------------------------------------------------------------------- /psfplot.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/psfplot.ui -------------------------------------------------------------------------------- /psi_dlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/psi_dlg.cpp -------------------------------------------------------------------------------- /psi_dlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/psi_dlg.h -------------------------------------------------------------------------------- /psi_dlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/psi_dlg.ui -------------------------------------------------------------------------------- /psiphasedisplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/psiphasedisplay.cpp -------------------------------------------------------------------------------- /psiphasedisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/psiphasedisplay.h -------------------------------------------------------------------------------- /psiphasedisplay.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/psiphasedisplay.ui -------------------------------------------------------------------------------- /psitiltoptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/psitiltoptions.cpp -------------------------------------------------------------------------------- /psitiltoptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/psitiltoptions.h -------------------------------------------------------------------------------- /psitiltoptions.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/psitiltoptions.ui -------------------------------------------------------------------------------- /punwrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/punwrap.cpp -------------------------------------------------------------------------------- /punwrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/punwrap.h -------------------------------------------------------------------------------- /regionedittools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/regionedittools.cpp -------------------------------------------------------------------------------- /regionedittools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/regionedittools.h -------------------------------------------------------------------------------- /regionedittools.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/regionedittools.ui -------------------------------------------------------------------------------- /rejectedwavefrontsdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/rejectedwavefrontsdlg.cpp -------------------------------------------------------------------------------- /rejectedwavefrontsdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/rejectedwavefrontsdlg.h -------------------------------------------------------------------------------- /rejectedwavefrontsdlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/rejectedwavefrontsdlg.ui -------------------------------------------------------------------------------- /reportdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/reportdlg.cpp -------------------------------------------------------------------------------- /reportdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/reportdlg.h -------------------------------------------------------------------------------- /reportdlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/reportdlg.ui -------------------------------------------------------------------------------- /res/1461974250_f-left_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/res/1461974250_f-left_256.png -------------------------------------------------------------------------------- /res/1461974256_f-right_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/res/1461974256_f-right_256.png -------------------------------------------------------------------------------- /res/1461974262_f-top_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/res/1461974262_f-top_256.png -------------------------------------------------------------------------------- /res/1461974268_f-bottom_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/res/1461974268_f-bottom_256.png -------------------------------------------------------------------------------- /res/1461975017_undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/res/1461975017_undo.png -------------------------------------------------------------------------------- /res/1461975084_maximize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/res/1461975084_maximize.png -------------------------------------------------------------------------------- /res/1461975092_minimize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/res/1461975092_minimize.png -------------------------------------------------------------------------------- /res/Button-Close-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/res/Button-Close-icon.png -------------------------------------------------------------------------------- /res/Button-Next-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/res/Button-Next-icon.png -------------------------------------------------------------------------------- /res/Button-Previous-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/res/Button-Previous-icon.png -------------------------------------------------------------------------------- /res/Help/BathInterferometry.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/res/Help/BathInterferometry.odt -------------------------------------------------------------------------------- /res/Help/Forced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/res/Help/Forced.png -------------------------------------------------------------------------------- /res/Help/ForcedWithErrors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/res/Help/ForcedWithErrors.png -------------------------------------------------------------------------------- /res/Help/Gaussian10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/res/Help/Gaussian10.png -------------------------------------------------------------------------------- /res/Help/LowExposure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/res/Help/LowExposure.png -------------------------------------------------------------------------------- /res/Help/MirrorConfig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/res/Help/MirrorConfig.png -------------------------------------------------------------------------------- /res/Help/PSIHelp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/res/Help/PSIHelp.html -------------------------------------------------------------------------------- /res/Help/QuickStart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/res/Help/QuickStart.html -------------------------------------------------------------------------------- /res/Help/StandAstigHelp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/res/Help/StandAstigHelp.html -------------------------------------------------------------------------------- /res/Help/analysis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/res/Help/analysis.png -------------------------------------------------------------------------------- /res/Help/astigSummary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/res/Help/astigSummary.png -------------------------------------------------------------------------------- /res/Help/astigsummary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/res/Help/astigsummary.html -------------------------------------------------------------------------------- /res/Help/autoOutlineOffsets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/res/Help/autoOutlineOffsets.png -------------------------------------------------------------------------------- /res/Help/autooutline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/res/Help/autooutline.png -------------------------------------------------------------------------------- /res/Help/autooutlineButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/res/Help/autooutlineButton.png -------------------------------------------------------------------------------- /res/Help/badStandSummary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/res/Help/badStandSummary.png -------------------------------------------------------------------------------- /res/Help/chessGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/res/Help/chessGrid.png -------------------------------------------------------------------------------- /res/Help/circles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/res/Help/circles.png -------------------------------------------------------------------------------- /res/Help/dft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/res/Help/dft.png -------------------------------------------------------------------------------- /res/Help/goodPeak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/res/Help/goodPeak.png -------------------------------------------------------------------------------- /res/Help/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/res/Help/help.html -------------------------------------------------------------------------------- /res/Help/highExposure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/res/Help/highExposure.png -------------------------------------------------------------------------------- /res/Help/igram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/res/Help/igram.png -------------------------------------------------------------------------------- /res/Help/igramScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/res/Help/igramScreen.png -------------------------------------------------------------------------------- /res/Help/igramSettingsLens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/res/Help/igramSettingsLens.png -------------------------------------------------------------------------------- /res/Help/intensityGraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/res/Help/intensityGraph.png -------------------------------------------------------------------------------- /res/Help/lensDistort.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/res/Help/lensDistort.html -------------------------------------------------------------------------------- /res/Help/lineGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/res/Help/lineGrid.png -------------------------------------------------------------------------------- /res/Help/manyrotations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/res/Help/manyrotations.png -------------------------------------------------------------------------------- /res/Help/mirrorConfig.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/res/Help/mirrorConfig.html -------------------------------------------------------------------------------- /res/Help/oneIgramanalysis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/res/Help/oneIgramanalysis.png -------------------------------------------------------------------------------- /res/Help/outlineDebug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/res/Help/outlineDebug.png -------------------------------------------------------------------------------- /res/Help/outlineing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/res/Help/outlineing.html -------------------------------------------------------------------------------- /res/Help/overexposedgreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/res/Help/overexposedgreen.png -------------------------------------------------------------------------------- /res/Help/pixelScanRange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/res/Help/pixelScanRange.png -------------------------------------------------------------------------------- /res/Help/smoothing.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/res/Help/smoothing.htm -------------------------------------------------------------------------------- /res/Help/tips.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/res/Help/tips.html -------------------------------------------------------------------------------- /res/Help/unwrapLine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/res/Help/unwrapLine.png -------------------------------------------------------------------------------- /res/Help/unwrapLineAnalysis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/res/Help/unwrapLineAnalysis.png -------------------------------------------------------------------------------- /res/Help/unwrap_errors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/res/Help/unwrap_errors.html -------------------------------------------------------------------------------- /res/Help/wellexposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/res/Help/wellexposed.png -------------------------------------------------------------------------------- /res/Help/whiteDisk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/res/Help/whiteDisk.png -------------------------------------------------------------------------------- /res/camera-icon-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/res/camera-icon-60.png -------------------------------------------------------------------------------- /res/igram6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/res/igram6.png -------------------------------------------------------------------------------- /res/mirror_stand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/res/mirror_stand.png -------------------------------------------------------------------------------- /res/redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/res/redo.png -------------------------------------------------------------------------------- /res/surface_LeY_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/res/surface_LeY_icon.ico -------------------------------------------------------------------------------- /res/wats2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/res/wats2.png -------------------------------------------------------------------------------- /reviewwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/reviewwindow.cpp -------------------------------------------------------------------------------- /reviewwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/reviewwindow.h -------------------------------------------------------------------------------- /reviewwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/reviewwindow.ui -------------------------------------------------------------------------------- /rmsplot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/rmsplot.cpp -------------------------------------------------------------------------------- /rmsplot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/rmsplot.h -------------------------------------------------------------------------------- /rotationdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/rotationdlg.cpp -------------------------------------------------------------------------------- /rotationdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/rotationdlg.h -------------------------------------------------------------------------------- /rotationdlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/rotationdlg.ui -------------------------------------------------------------------------------- /settings2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/settings2.cpp -------------------------------------------------------------------------------- /settings2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/settings2.h -------------------------------------------------------------------------------- /settings2.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/settings2.ui -------------------------------------------------------------------------------- /settingsGeneral2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/settingsGeneral2.h -------------------------------------------------------------------------------- /settingsdebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/settingsdebug.cpp -------------------------------------------------------------------------------- /settingsdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/settingsdebug.h -------------------------------------------------------------------------------- /settingsdebug.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/settingsdebug.ui -------------------------------------------------------------------------------- /settingsdft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/settingsdft.cpp -------------------------------------------------------------------------------- /settingsdft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/settingsdft.h -------------------------------------------------------------------------------- /settingsdft.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/settingsdft.ui -------------------------------------------------------------------------------- /settingsgeneral2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/settingsgeneral2.cpp -------------------------------------------------------------------------------- /settingsgeneral2.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/settingsgeneral2.ui -------------------------------------------------------------------------------- /settingsigram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/settingsigram.cpp -------------------------------------------------------------------------------- /settingsigram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/settingsigram.h -------------------------------------------------------------------------------- /settingsigram.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/settingsigram.ui -------------------------------------------------------------------------------- /settingsigramimportconfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/settingsigramimportconfig.cpp -------------------------------------------------------------------------------- /settingsigramimportconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/settingsigramimportconfig.h -------------------------------------------------------------------------------- /settingsigramimportconfig.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/settingsigramimportconfig.ui -------------------------------------------------------------------------------- /settingsprofile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/settingsprofile.cpp -------------------------------------------------------------------------------- /settingsprofile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/settingsprofile.h -------------------------------------------------------------------------------- /settingsprofile.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/settingsprofile.ui -------------------------------------------------------------------------------- /showaliasdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/showaliasdlg.cpp -------------------------------------------------------------------------------- /showaliasdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/showaliasdlg.h -------------------------------------------------------------------------------- /showaliasdlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/showaliasdlg.ui -------------------------------------------------------------------------------- /showallcontoursdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/showallcontoursdlg.cpp -------------------------------------------------------------------------------- /showallcontoursdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/showallcontoursdlg.h -------------------------------------------------------------------------------- /showallcontoursdlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/showallcontoursdlg.ui -------------------------------------------------------------------------------- /simigramdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/simigramdlg.cpp -------------------------------------------------------------------------------- /simigramdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/simigramdlg.h -------------------------------------------------------------------------------- /simigramdlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/simigramdlg.ui -------------------------------------------------------------------------------- /simulationsview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/simulationsview.cpp -------------------------------------------------------------------------------- /simulationsview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/simulationsview.h -------------------------------------------------------------------------------- /simulationsview.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/simulationsview.ui -------------------------------------------------------------------------------- /spdlog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/LICENSE -------------------------------------------------------------------------------- /spdlog/async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/async.h -------------------------------------------------------------------------------- /spdlog/async_logger-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/async_logger-inl.h -------------------------------------------------------------------------------- /spdlog/async_logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/async_logger.h -------------------------------------------------------------------------------- /spdlog/cfg/argv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/cfg/argv.h -------------------------------------------------------------------------------- /spdlog/cfg/env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/cfg/env.h -------------------------------------------------------------------------------- /spdlog/cfg/helpers-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/cfg/helpers-inl.h -------------------------------------------------------------------------------- /spdlog/cfg/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/cfg/helpers.h -------------------------------------------------------------------------------- /spdlog/common-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/common-inl.h -------------------------------------------------------------------------------- /spdlog/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/common.h -------------------------------------------------------------------------------- /spdlog/details/backtracer-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/details/backtracer-inl.h -------------------------------------------------------------------------------- /spdlog/details/backtracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/details/backtracer.h -------------------------------------------------------------------------------- /spdlog/details/circular_q.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/details/circular_q.h -------------------------------------------------------------------------------- /spdlog/details/file_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/details/file_helper.h -------------------------------------------------------------------------------- /spdlog/details/fmt_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/details/fmt_helper.h -------------------------------------------------------------------------------- /spdlog/details/log_msg-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/details/log_msg-inl.h -------------------------------------------------------------------------------- /spdlog/details/log_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/details/log_msg.h -------------------------------------------------------------------------------- /spdlog/details/log_msg_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/details/log_msg_buffer.h -------------------------------------------------------------------------------- /spdlog/details/null_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/details/null_mutex.h -------------------------------------------------------------------------------- /spdlog/details/os-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/details/os-inl.h -------------------------------------------------------------------------------- /spdlog/details/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/details/os.h -------------------------------------------------------------------------------- /spdlog/details/registry-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/details/registry-inl.h -------------------------------------------------------------------------------- /spdlog/details/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/details/registry.h -------------------------------------------------------------------------------- /spdlog/details/tcp_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/details/tcp_client.h -------------------------------------------------------------------------------- /spdlog/details/thread_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/details/thread_pool.h -------------------------------------------------------------------------------- /spdlog/details/udp_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/details/udp_client.h -------------------------------------------------------------------------------- /spdlog/fmt/bin_to_hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/fmt/bin_to_hex.h -------------------------------------------------------------------------------- /spdlog/fmt/bundled/args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/fmt/bundled/args.h -------------------------------------------------------------------------------- /spdlog/fmt/bundled/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/fmt/bundled/base.h -------------------------------------------------------------------------------- /spdlog/fmt/bundled/chrono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/fmt/bundled/chrono.h -------------------------------------------------------------------------------- /spdlog/fmt/bundled/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/fmt/bundled/color.h -------------------------------------------------------------------------------- /spdlog/fmt/bundled/compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/fmt/bundled/compile.h -------------------------------------------------------------------------------- /spdlog/fmt/bundled/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/fmt/bundled/core.h -------------------------------------------------------------------------------- /spdlog/fmt/bundled/format-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/fmt/bundled/format-inl.h -------------------------------------------------------------------------------- /spdlog/fmt/bundled/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/fmt/bundled/format.h -------------------------------------------------------------------------------- /spdlog/fmt/bundled/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/fmt/bundled/os.h -------------------------------------------------------------------------------- /spdlog/fmt/bundled/ostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/fmt/bundled/ostream.h -------------------------------------------------------------------------------- /spdlog/fmt/bundled/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/fmt/bundled/printf.h -------------------------------------------------------------------------------- /spdlog/fmt/bundled/ranges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/fmt/bundled/ranges.h -------------------------------------------------------------------------------- /spdlog/fmt/bundled/std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/fmt/bundled/std.h -------------------------------------------------------------------------------- /spdlog/fmt/bundled/xchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/fmt/bundled/xchar.h -------------------------------------------------------------------------------- /spdlog/fmt/chrono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/fmt/chrono.h -------------------------------------------------------------------------------- /spdlog/fmt/compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/fmt/compile.h -------------------------------------------------------------------------------- /spdlog/fmt/fmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/fmt/fmt.h -------------------------------------------------------------------------------- /spdlog/fmt/ostr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/fmt/ostr.h -------------------------------------------------------------------------------- /spdlog/fmt/ranges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/fmt/ranges.h -------------------------------------------------------------------------------- /spdlog/fmt/std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/fmt/std.h -------------------------------------------------------------------------------- /spdlog/fmt/xchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/fmt/xchar.h -------------------------------------------------------------------------------- /spdlog/formatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/formatter.h -------------------------------------------------------------------------------- /spdlog/fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/fwd.h -------------------------------------------------------------------------------- /spdlog/logger-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/logger-inl.h -------------------------------------------------------------------------------- /spdlog/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/logger.h -------------------------------------------------------------------------------- /spdlog/mdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/mdc.h -------------------------------------------------------------------------------- /spdlog/pattern_formatter-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/pattern_formatter-inl.h -------------------------------------------------------------------------------- /spdlog/pattern_formatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/pattern_formatter.h -------------------------------------------------------------------------------- /spdlog/sinks/android_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/sinks/android_sink.h -------------------------------------------------------------------------------- /spdlog/sinks/ansicolor_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/sinks/ansicolor_sink.h -------------------------------------------------------------------------------- /spdlog/sinks/base_sink-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/sinks/base_sink-inl.h -------------------------------------------------------------------------------- /spdlog/sinks/base_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/sinks/base_sink.h -------------------------------------------------------------------------------- /spdlog/sinks/basic_file_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/sinks/basic_file_sink.h -------------------------------------------------------------------------------- /spdlog/sinks/callback_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/sinks/callback_sink.h -------------------------------------------------------------------------------- /spdlog/sinks/daily_file_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/sinks/daily_file_sink.h -------------------------------------------------------------------------------- /spdlog/sinks/dist_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/sinks/dist_sink.h -------------------------------------------------------------------------------- /spdlog/sinks/dup_filter_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/sinks/dup_filter_sink.h -------------------------------------------------------------------------------- /spdlog/sinks/hourly_file_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/sinks/hourly_file_sink.h -------------------------------------------------------------------------------- /spdlog/sinks/kafka_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/sinks/kafka_sink.h -------------------------------------------------------------------------------- /spdlog/sinks/mongo_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/sinks/mongo_sink.h -------------------------------------------------------------------------------- /spdlog/sinks/msvc_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/sinks/msvc_sink.h -------------------------------------------------------------------------------- /spdlog/sinks/null_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/sinks/null_sink.h -------------------------------------------------------------------------------- /spdlog/sinks/ostream_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/sinks/ostream_sink.h -------------------------------------------------------------------------------- /spdlog/sinks/qt_sinks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/sinks/qt_sinks.h -------------------------------------------------------------------------------- /spdlog/sinks/ringbuffer_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/sinks/ringbuffer_sink.h -------------------------------------------------------------------------------- /spdlog/sinks/sink-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/sinks/sink-inl.h -------------------------------------------------------------------------------- /spdlog/sinks/sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/sinks/sink.h -------------------------------------------------------------------------------- /spdlog/sinks/stdout_sinks-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/sinks/stdout_sinks-inl.h -------------------------------------------------------------------------------- /spdlog/sinks/stdout_sinks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/sinks/stdout_sinks.h -------------------------------------------------------------------------------- /spdlog/sinks/syslog_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/sinks/syslog_sink.h -------------------------------------------------------------------------------- /spdlog/sinks/systemd_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/sinks/systemd_sink.h -------------------------------------------------------------------------------- /spdlog/sinks/tcp_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/sinks/tcp_sink.h -------------------------------------------------------------------------------- /spdlog/sinks/udp_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/sinks/udp_sink.h -------------------------------------------------------------------------------- /spdlog/sinks/wincolor_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/sinks/wincolor_sink.h -------------------------------------------------------------------------------- /spdlog/spdlog-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/spdlog-inl.h -------------------------------------------------------------------------------- /spdlog/spdlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/spdlog.h -------------------------------------------------------------------------------- /spdlog/stopwatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/stopwatch.h -------------------------------------------------------------------------------- /spdlog/tweakme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/tweakme.h -------------------------------------------------------------------------------- /spdlog/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/spdlog/version.h -------------------------------------------------------------------------------- /standastigwizard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/standastigwizard.cpp -------------------------------------------------------------------------------- /standastigwizard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/standastigwizard.h -------------------------------------------------------------------------------- /standastigwizard.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/standastigwizard.ui -------------------------------------------------------------------------------- /startestmoviedlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/startestmoviedlg.cpp -------------------------------------------------------------------------------- /startestmoviedlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/startestmoviedlg.h -------------------------------------------------------------------------------- /startestmoviedlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/startestmoviedlg.ui -------------------------------------------------------------------------------- /statsview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/statsview.cpp -------------------------------------------------------------------------------- /statsview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/statsview.h -------------------------------------------------------------------------------- /statsview.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/statsview.ui -------------------------------------------------------------------------------- /subtractwavefronatsdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/subtractwavefronatsdlg.cpp -------------------------------------------------------------------------------- /subtractwavefronatsdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/subtractwavefronatsdlg.h -------------------------------------------------------------------------------- /subtractwavefronatsdlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/subtractwavefronatsdlg.ui -------------------------------------------------------------------------------- /surface3dcontrolsdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/surface3dcontrolsdlg.cpp -------------------------------------------------------------------------------- /surface3dcontrolsdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/surface3dcontrolsdlg.h -------------------------------------------------------------------------------- /surface3dcontrolsdlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/surface3dcontrolsdlg.ui -------------------------------------------------------------------------------- /surfaceanalysistools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/surfaceanalysistools.cpp -------------------------------------------------------------------------------- /surfaceanalysistools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/surfaceanalysistools.h -------------------------------------------------------------------------------- /surfaceanalysistools.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/surfaceanalysistools.ui -------------------------------------------------------------------------------- /surfacegraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/surfacegraph.cpp -------------------------------------------------------------------------------- /surfacegraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/surfacegraph.h -------------------------------------------------------------------------------- /surfacelightingproxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/surfacelightingproxy.cpp -------------------------------------------------------------------------------- /surfacelightingproxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/surfacelightingproxy.h -------------------------------------------------------------------------------- /surfacemanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/surfacemanager.cpp -------------------------------------------------------------------------------- /surfacemanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/surfacemanager.h -------------------------------------------------------------------------------- /todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/todo.txt -------------------------------------------------------------------------------- /transformwavefrontdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/transformwavefrontdlg.cpp -------------------------------------------------------------------------------- /transformwavefrontdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/transformwavefrontdlg.h -------------------------------------------------------------------------------- /transformwavefrontdlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/transformwavefrontdlg.ui -------------------------------------------------------------------------------- /unwraperrorsview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/unwraperrorsview.cpp -------------------------------------------------------------------------------- /unwraperrorsview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/unwraperrorsview.h -------------------------------------------------------------------------------- /unwraperrorsview.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/unwraperrorsview.ui -------------------------------------------------------------------------------- /usercolormapdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/usercolormapdlg.cpp -------------------------------------------------------------------------------- /usercolormapdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/usercolormapdlg.h -------------------------------------------------------------------------------- /usercolormapdlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/usercolormapdlg.ui -------------------------------------------------------------------------------- /userdrawnprofiledlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/userdrawnprofiledlg.cpp -------------------------------------------------------------------------------- /userdrawnprofiledlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/userdrawnprofiledlg.h -------------------------------------------------------------------------------- /userdrawnprofiledlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/userdrawnprofiledlg.ui -------------------------------------------------------------------------------- /utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/utils.cpp -------------------------------------------------------------------------------- /utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/utils.h -------------------------------------------------------------------------------- /vortexdebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/vortexdebug.cpp -------------------------------------------------------------------------------- /vortexdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/vortexdebug.h -------------------------------------------------------------------------------- /vortexdebug.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/vortexdebug.ui -------------------------------------------------------------------------------- /wavefront.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/wavefront.cpp -------------------------------------------------------------------------------- /wavefront.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/wavefront.h -------------------------------------------------------------------------------- /wavefrontaveragefilterdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/wavefrontaveragefilterdlg.cpp -------------------------------------------------------------------------------- /wavefrontaveragefilterdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/wavefrontaveragefilterdlg.h -------------------------------------------------------------------------------- /wavefrontaveragefilterdlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/wavefrontaveragefilterdlg.ui -------------------------------------------------------------------------------- /wavefrontfilterdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/wavefrontfilterdlg.cpp -------------------------------------------------------------------------------- /wavefrontfilterdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/wavefrontfilterdlg.h -------------------------------------------------------------------------------- /wavefrontfilterdlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/wavefrontfilterdlg.ui -------------------------------------------------------------------------------- /wftexaminer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/wftexaminer.cpp -------------------------------------------------------------------------------- /wftexaminer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/wftexaminer.h -------------------------------------------------------------------------------- /wftexaminer.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/wftexaminer.ui -------------------------------------------------------------------------------- /wftstats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/wftstats.cpp -------------------------------------------------------------------------------- /wftstats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/wftstats.h -------------------------------------------------------------------------------- /zernike/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/zernike/LICENSE.txt -------------------------------------------------------------------------------- /zernike/zapm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/zernike/zapm.cpp -------------------------------------------------------------------------------- /zernike/zapm_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/zernike/zapm_interface.h -------------------------------------------------------------------------------- /zernikedlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/zernikedlg.cpp -------------------------------------------------------------------------------- /zernikedlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/zernikedlg.h -------------------------------------------------------------------------------- /zernikedlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/zernikedlg.ui -------------------------------------------------------------------------------- /zernikeeditdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/zernikeeditdlg.cpp -------------------------------------------------------------------------------- /zernikeeditdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/zernikeeditdlg.h -------------------------------------------------------------------------------- /zernikeeditdlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/zernikeeditdlg.ui -------------------------------------------------------------------------------- /zernikepolar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/zernikepolar.cpp -------------------------------------------------------------------------------- /zernikepolar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/zernikepolar.h -------------------------------------------------------------------------------- /zernikeprocess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/zernikeprocess.cpp -------------------------------------------------------------------------------- /zernikeprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/zernikeprocess.h -------------------------------------------------------------------------------- /zernikes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/zernikes.cpp -------------------------------------------------------------------------------- /zernikes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/zernikes.h -------------------------------------------------------------------------------- /zernikesmoothingdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/zernikesmoothingdlg.cpp -------------------------------------------------------------------------------- /zernikesmoothingdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/zernikesmoothingdlg.h -------------------------------------------------------------------------------- /zernikesmoothingdlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/githubdoe/DFTFringe/HEAD/zernikesmoothingdlg.ui --------------------------------------------------------------------------------