├── .github └── workflows │ ├── linux-simple-builds.yml │ └── universal-installer.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── SECURITY.md ├── android ├── README.md ├── override │ └── project │ │ └── jni │ │ └── application │ │ └── xserver │ │ ├── AndroidAppSettings.cfg │ │ ├── AndroidData │ │ ├── binaries-mips-pie.zip │ │ ├── binaries-mips.zip │ │ ├── data-viewtouch.tgz │ │ └── logo.png │ │ └── icon.png └── viewtouch.patch ├── assets ├── data │ └── po_file │ │ └── viewtouch.po_EN ├── default_images │ └── burger.png └── images │ └── xpm │ ├── 4color.png │ ├── Icon.png │ ├── black.xpm │ ├── blueparchment.xpm │ ├── bluetexture-128-32.xpm │ ├── brass-8.xpm │ ├── bread-256.xpm │ ├── canvas-8.xpm │ ├── carbonfiber-128-6.xpm │ ├── concrete-8.xpm │ ├── copper-8.xpm │ ├── darkmarble-256.xpm │ ├── darkorangetexture-128-32.xpm │ ├── darksand-6.xpm │ ├── darkwood-10.xpm │ ├── demo-converted.xpm │ ├── demo.png │ ├── diamondleather-256.xpm │ ├── embossed-8.xpm │ ├── glass-8.xpm │ ├── gradient-8.xpm │ ├── gradient-brown.xpm │ ├── grass-6.xpm │ ├── gray-6.xpm │ ├── grayblue-3.xpm │ ├── graymarble-12.xpm │ ├── grayparchment-8.xpm │ ├── greenmarble-12.xpm │ ├── greentexture-128-32.xpm │ ├── greySand.xpm │ ├── lava-256.xpm │ ├── leather-8.xpm │ ├── lighttanparchment-8.xpm │ ├── litewood-8.xpm │ ├── litsand-6.xpm │ ├── metal-8.xpm │ ├── orangetexture-128-32.xpm │ ├── parchment-6.xpm │ ├── pearl-8.xpm │ ├── plastic-8.xpm │ ├── pooltable-256.xpm │ ├── redgravel-6.xpm │ ├── sand-8.xpm │ ├── silk-8.xpm │ ├── smoke-4.xpm │ ├── smoke-8.xpm │ ├── steel-8.xpm │ ├── stone-8.xpm │ ├── tanparchment-8.xpm │ ├── test-256.xpm │ ├── velvet-8.xpm │ ├── water-10.xpm │ ├── whiteMesh.xpm │ ├── whitetexture-128-32.xpm │ ├── wood-10.xpm │ ├── woodfloor-12.xpm │ ├── yellowstucco-8.xpm │ └── yellowtexture-128-32.xpm ├── cdu └── cdu_main.cc ├── ci ├── Dockerfile.template ├── toolchains │ ├── .gitignore │ ├── clang-cxx17.cmake │ ├── clang-cxx20.cmake │ ├── clang-tidy.cmake │ ├── default.cmake │ ├── gcc-8.cmake │ ├── gcc-cxx17.cmake │ └── gcc-cxx20.cmake └── travis.sh ├── cmake ├── check_toolchain_definition.cmake ├── gen_compiler_tag.cmake ├── gen_target_architecture.cmake ├── gen_toolchain_definitions.cmake ├── gen_version_string.cmake └── load_git_variables.cmake ├── config ├── font_ids.hh ├── reverse_ssh_daemon.conf ├── version.cmake └── version_generated.hh.in ├── docs ├── BUG_ANALYSIS.md ├── CLEANUP_SUMMARY.md ├── DEVELOPMENT.md ├── MEMORY_MODERNIZATION.md ├── MODERN_CPP.md ├── PAYMENT_PROCESSOR_INTEGRATION.md ├── REVERSE_SSH.md ├── STRING_SAFETY.md ├── TESTING.md ├── changelog.md └── user │ ├── DATA_PERSISTENCE_SYSTEM.md │ ├── ITEMLIST_FILTER_FEATURE.md │ ├── QUICKBOOKS_EXPORT.md │ ├── TOUCHSCREEN_IMPROVEMENTS.md │ └── ViewTouch_Documentation.md ├── external ├── catch2 │ ├── CMake │ │ ├── Catch2Config.cmake.in │ │ ├── CatchConfigOptions.cmake │ │ ├── CatchMiscFunctions.cmake │ │ ├── FindGcov.cmake │ │ ├── FindLcov.cmake │ │ ├── Findcodecov.cmake │ │ ├── catch2-with-main.pc.in │ │ ├── catch2.pc.in │ │ └── llvm-cov-wrapper │ ├── CMakeLists.txt │ ├── CMakePresets.json │ ├── LICENSE.txt │ ├── README.md │ ├── extras │ │ ├── Catch.cmake │ │ ├── CatchAddTests.cmake │ │ ├── CatchShardTests.cmake │ │ ├── CatchShardTestsImpl.cmake │ │ └── ParseAndAddCatchTests.cmake │ ├── src │ │ ├── CMakeLists.txt │ │ └── catch2 │ │ │ ├── benchmark │ │ │ ├── catch_benchmark.hpp │ │ │ ├── catch_benchmark_all.hpp │ │ │ ├── catch_chronometer.cpp │ │ │ ├── catch_chronometer.hpp │ │ │ ├── catch_clock.hpp │ │ │ ├── catch_constructor.hpp │ │ │ ├── catch_environment.hpp │ │ │ ├── catch_estimate.hpp │ │ │ ├── catch_execution_plan.hpp │ │ │ ├── catch_optimizer.hpp │ │ │ ├── catch_outlier_classification.hpp │ │ │ ├── catch_sample_analysis.hpp │ │ │ └── detail │ │ │ │ ├── catch_analyse.cpp │ │ │ │ ├── catch_analyse.hpp │ │ │ │ ├── catch_benchmark_function.cpp │ │ │ │ ├── catch_benchmark_function.hpp │ │ │ │ ├── catch_benchmark_stats.hpp │ │ │ │ ├── catch_benchmark_stats_fwd.hpp │ │ │ │ ├── catch_complete_invoke.hpp │ │ │ │ ├── catch_estimate_clock.hpp │ │ │ │ ├── catch_measure.hpp │ │ │ │ ├── catch_repeat.hpp │ │ │ │ ├── catch_run_for_at_least.cpp │ │ │ │ ├── catch_run_for_at_least.hpp │ │ │ │ ├── catch_stats.cpp │ │ │ │ ├── catch_stats.hpp │ │ │ │ └── catch_timing.hpp │ │ │ ├── catch_all.hpp │ │ │ ├── catch_approx.cpp │ │ │ ├── catch_approx.hpp │ │ │ ├── catch_assertion_info.hpp │ │ │ ├── catch_assertion_result.cpp │ │ │ ├── catch_assertion_result.hpp │ │ │ ├── catch_case_sensitive.hpp │ │ │ ├── catch_config.cpp │ │ │ ├── catch_config.hpp │ │ │ ├── catch_get_random_seed.cpp │ │ │ ├── catch_get_random_seed.hpp │ │ │ ├── catch_message.cpp │ │ │ ├── catch_message.hpp │ │ │ ├── catch_registry_hub.cpp │ │ │ ├── catch_section_info.hpp │ │ │ ├── catch_session.cpp │ │ │ ├── catch_session.hpp │ │ │ ├── catch_tag_alias.hpp │ │ │ ├── catch_tag_alias_autoregistrar.cpp │ │ │ ├── catch_tag_alias_autoregistrar.hpp │ │ │ ├── catch_template_test_macros.hpp │ │ │ ├── catch_test_case_info.cpp │ │ │ ├── catch_test_case_info.hpp │ │ │ ├── catch_test_macros.hpp │ │ │ ├── catch_test_run_info.hpp │ │ │ ├── catch_test_spec.cpp │ │ │ ├── catch_test_spec.hpp │ │ │ ├── catch_timer.cpp │ │ │ ├── catch_timer.hpp │ │ │ ├── catch_tostring.cpp │ │ │ ├── catch_tostring.hpp │ │ │ ├── catch_totals.cpp │ │ │ ├── catch_totals.hpp │ │ │ ├── catch_translate_exception.cpp │ │ │ ├── catch_translate_exception.hpp │ │ │ ├── catch_user_config.hpp.in │ │ │ ├── catch_version.cpp │ │ │ ├── catch_version.hpp │ │ │ ├── catch_version_macros.hpp │ │ │ ├── generators │ │ │ ├── catch_generator_exception.cpp │ │ │ ├── catch_generator_exception.hpp │ │ │ ├── catch_generators.cpp │ │ │ ├── catch_generators.hpp │ │ │ ├── catch_generators_adapters.hpp │ │ │ ├── catch_generators_all.hpp │ │ │ ├── catch_generators_random.cpp │ │ │ ├── catch_generators_random.hpp │ │ │ └── catch_generators_range.hpp │ │ │ ├── interfaces │ │ │ ├── catch_interfaces_all.hpp │ │ │ ├── catch_interfaces_capture.cpp │ │ │ ├── catch_interfaces_capture.hpp │ │ │ ├── catch_interfaces_config.cpp │ │ │ ├── catch_interfaces_config.hpp │ │ │ ├── catch_interfaces_enum_values_registry.hpp │ │ │ ├── catch_interfaces_exception.cpp │ │ │ ├── catch_interfaces_exception.hpp │ │ │ ├── catch_interfaces_generatortracker.cpp │ │ │ ├── catch_interfaces_generatortracker.hpp │ │ │ ├── catch_interfaces_registry_hub.cpp │ │ │ ├── catch_interfaces_registry_hub.hpp │ │ │ ├── catch_interfaces_reporter.cpp │ │ │ ├── catch_interfaces_reporter.hpp │ │ │ ├── catch_interfaces_reporter_factory.cpp │ │ │ ├── catch_interfaces_reporter_factory.hpp │ │ │ ├── catch_interfaces_tag_alias_registry.hpp │ │ │ ├── catch_interfaces_test_invoker.hpp │ │ │ ├── catch_interfaces_testcase.cpp │ │ │ └── catch_interfaces_testcase.hpp │ │ │ ├── internal │ │ │ ├── catch_assertion_handler.cpp │ │ │ ├── catch_assertion_handler.hpp │ │ │ ├── catch_case_insensitive_comparisons.cpp │ │ │ ├── catch_case_insensitive_comparisons.hpp │ │ │ ├── catch_clara.cpp │ │ │ ├── catch_clara.hpp │ │ │ ├── catch_commandline.cpp │ │ │ ├── catch_commandline.hpp │ │ │ ├── catch_compare_traits.hpp │ │ │ ├── catch_compiler_capabilities.hpp │ │ │ ├── catch_config_android_logwrite.hpp │ │ │ ├── catch_config_counter.hpp │ │ │ ├── catch_config_prefix_messages.hpp │ │ │ ├── catch_config_static_analysis_support.hpp │ │ │ ├── catch_config_uncaught_exceptions.hpp │ │ │ ├── catch_config_wchar.hpp │ │ │ ├── catch_console_colour.cpp │ │ │ ├── catch_console_colour.hpp │ │ │ ├── catch_console_width.hpp │ │ │ ├── catch_container_nonmembers.hpp │ │ │ ├── catch_context.cpp │ │ │ ├── catch_context.hpp │ │ │ ├── catch_debug_console.cpp │ │ │ ├── catch_debug_console.hpp │ │ │ ├── catch_debugger.cpp │ │ │ ├── catch_debugger.hpp │ │ │ ├── catch_decomposer.cpp │ │ │ ├── catch_decomposer.hpp │ │ │ ├── catch_deprecation_macro.hpp │ │ │ ├── catch_enforce.cpp │ │ │ ├── catch_enforce.hpp │ │ │ ├── catch_enum_values_registry.cpp │ │ │ ├── catch_enum_values_registry.hpp │ │ │ ├── catch_errno_guard.cpp │ │ │ ├── catch_errno_guard.hpp │ │ │ ├── catch_exception_translator_registry.cpp │ │ │ ├── catch_exception_translator_registry.hpp │ │ │ ├── catch_fatal_condition_handler.cpp │ │ │ ├── catch_fatal_condition_handler.hpp │ │ │ ├── catch_floating_point_helpers.cpp │ │ │ ├── catch_floating_point_helpers.hpp │ │ │ ├── catch_getenv.cpp │ │ │ ├── catch_getenv.hpp │ │ │ ├── catch_is_permutation.hpp │ │ │ ├── catch_istream.cpp │ │ │ ├── catch_istream.hpp │ │ │ ├── catch_jsonwriter.cpp │ │ │ ├── catch_jsonwriter.hpp │ │ │ ├── catch_lazy_expr.cpp │ │ │ ├── catch_lazy_expr.hpp │ │ │ ├── catch_leak_detector.cpp │ │ │ ├── catch_leak_detector.hpp │ │ │ ├── catch_list.cpp │ │ │ ├── catch_list.hpp │ │ │ ├── catch_logical_traits.hpp │ │ │ ├── catch_main.cpp │ │ │ ├── catch_message_info.cpp │ │ │ ├── catch_message_info.hpp │ │ │ ├── catch_meta.hpp │ │ │ ├── catch_move_and_forward.hpp │ │ │ ├── catch_noncopyable.hpp │ │ │ ├── catch_optional.hpp │ │ │ ├── catch_output_redirect.cpp │ │ │ ├── catch_output_redirect.hpp │ │ │ ├── catch_parse_numbers.cpp │ │ │ ├── catch_parse_numbers.hpp │ │ │ ├── catch_platform.hpp │ │ │ ├── catch_polyfills.cpp │ │ │ ├── catch_polyfills.hpp │ │ │ ├── catch_preprocessor.hpp │ │ │ ├── catch_preprocessor_internal_stringify.hpp │ │ │ ├── catch_preprocessor_remove_parens.hpp │ │ │ ├── catch_random_floating_point_helpers.hpp │ │ │ ├── catch_random_integer_helpers.hpp │ │ │ ├── catch_random_number_generator.cpp │ │ │ ├── catch_random_number_generator.hpp │ │ │ ├── catch_random_seed_generation.cpp │ │ │ ├── catch_random_seed_generation.hpp │ │ │ ├── catch_reporter_registry.cpp │ │ │ ├── catch_reporter_registry.hpp │ │ │ ├── catch_reporter_spec_parser.cpp │ │ │ ├── catch_reporter_spec_parser.hpp │ │ │ ├── catch_result_type.hpp │ │ │ ├── catch_reusable_string_stream.cpp │ │ │ ├── catch_reusable_string_stream.hpp │ │ │ ├── catch_run_context.cpp │ │ │ ├── catch_run_context.hpp │ │ │ ├── catch_section.cpp │ │ │ ├── catch_section.hpp │ │ │ ├── catch_sharding.hpp │ │ │ ├── catch_singletons.cpp │ │ │ ├── catch_singletons.hpp │ │ │ ├── catch_source_line_info.cpp │ │ │ ├── catch_source_line_info.hpp │ │ │ ├── catch_startup_exception_registry.cpp │ │ │ ├── catch_startup_exception_registry.hpp │ │ │ ├── catch_stdstreams.cpp │ │ │ ├── catch_stdstreams.hpp │ │ │ ├── catch_stream_end_stop.hpp │ │ │ ├── catch_string_manip.cpp │ │ │ ├── catch_string_manip.hpp │ │ │ ├── catch_stringref.cpp │ │ │ ├── catch_stringref.hpp │ │ │ ├── catch_tag_alias_registry.cpp │ │ │ ├── catch_tag_alias_registry.hpp │ │ │ ├── catch_template_test_registry.hpp │ │ │ ├── catch_test_case_info_hasher.cpp │ │ │ ├── catch_test_case_info_hasher.hpp │ │ │ ├── catch_test_case_registry_impl.cpp │ │ │ ├── catch_test_case_registry_impl.hpp │ │ │ ├── catch_test_case_tracker.cpp │ │ │ ├── catch_test_case_tracker.hpp │ │ │ ├── catch_test_failure_exception.cpp │ │ │ ├── catch_test_failure_exception.hpp │ │ │ ├── catch_test_macro_impl.hpp │ │ │ ├── catch_test_registry.cpp │ │ │ ├── catch_test_registry.hpp │ │ │ ├── catch_test_spec_parser.cpp │ │ │ ├── catch_test_spec_parser.hpp │ │ │ ├── catch_textflow.cpp │ │ │ ├── catch_textflow.hpp │ │ │ ├── catch_to_string.hpp │ │ │ ├── catch_uncaught_exceptions.cpp │ │ │ ├── catch_uncaught_exceptions.hpp │ │ │ ├── catch_uniform_floating_point_distribution.hpp │ │ │ ├── catch_uniform_integer_distribution.hpp │ │ │ ├── catch_unique_name.hpp │ │ │ ├── catch_unique_ptr.hpp │ │ │ ├── catch_unreachable.hpp │ │ │ ├── catch_void_type.hpp │ │ │ ├── catch_wildcard_pattern.cpp │ │ │ ├── catch_wildcard_pattern.hpp │ │ │ ├── catch_windows_h_proxy.hpp │ │ │ ├── catch_xmlwriter.cpp │ │ │ └── catch_xmlwriter.hpp │ │ │ ├── matchers │ │ │ ├── catch_matchers.cpp │ │ │ ├── catch_matchers.hpp │ │ │ ├── catch_matchers_all.hpp │ │ │ ├── catch_matchers_container_properties.cpp │ │ │ ├── catch_matchers_container_properties.hpp │ │ │ ├── catch_matchers_contains.hpp │ │ │ ├── catch_matchers_exception.cpp │ │ │ ├── catch_matchers_exception.hpp │ │ │ ├── catch_matchers_floating_point.cpp │ │ │ ├── catch_matchers_floating_point.hpp │ │ │ ├── catch_matchers_predicate.cpp │ │ │ ├── catch_matchers_predicate.hpp │ │ │ ├── catch_matchers_quantifiers.cpp │ │ │ ├── catch_matchers_quantifiers.hpp │ │ │ ├── catch_matchers_range_equals.hpp │ │ │ ├── catch_matchers_string.cpp │ │ │ ├── catch_matchers_string.hpp │ │ │ ├── catch_matchers_templated.cpp │ │ │ ├── catch_matchers_templated.hpp │ │ │ ├── catch_matchers_vector.hpp │ │ │ └── internal │ │ │ │ ├── catch_matchers_impl.cpp │ │ │ │ └── catch_matchers_impl.hpp │ │ │ ├── meson.build │ │ │ └── reporters │ │ │ ├── catch_reporter_automake.cpp │ │ │ ├── catch_reporter_automake.hpp │ │ │ ├── catch_reporter_common_base.cpp │ │ │ ├── catch_reporter_common_base.hpp │ │ │ ├── catch_reporter_compact.cpp │ │ │ ├── catch_reporter_compact.hpp │ │ │ ├── catch_reporter_console.cpp │ │ │ ├── catch_reporter_console.hpp │ │ │ ├── catch_reporter_cumulative_base.cpp │ │ │ ├── catch_reporter_cumulative_base.hpp │ │ │ ├── catch_reporter_event_listener.cpp │ │ │ ├── catch_reporter_event_listener.hpp │ │ │ ├── catch_reporter_helpers.cpp │ │ │ ├── catch_reporter_helpers.hpp │ │ │ ├── catch_reporter_json.cpp │ │ │ ├── catch_reporter_json.hpp │ │ │ ├── catch_reporter_junit.cpp │ │ │ ├── catch_reporter_junit.hpp │ │ │ ├── catch_reporter_multi.cpp │ │ │ ├── catch_reporter_multi.hpp │ │ │ ├── catch_reporter_registrars.cpp │ │ │ ├── catch_reporter_registrars.hpp │ │ │ ├── catch_reporter_sonarqube.cpp │ │ │ ├── catch_reporter_sonarqube.hpp │ │ │ ├── catch_reporter_streaming_base.cpp │ │ │ ├── catch_reporter_streaming_base.hpp │ │ │ ├── catch_reporter_tap.cpp │ │ │ ├── catch_reporter_tap.hpp │ │ │ ├── catch_reporter_teamcity.cpp │ │ │ ├── catch_reporter_teamcity.hpp │ │ │ ├── catch_reporter_xml.cpp │ │ │ ├── catch_reporter_xml.hpp │ │ │ └── catch_reporters_all.hpp │ └── third_party │ │ └── clara.hpp ├── core │ ├── sha1.cc │ └── sha1.hh ├── curlpp │ ├── .gitignore │ ├── CMakeLists.txt │ ├── CNAME │ ├── Readme.md │ ├── cmake │ │ └── curlppConfig.cmake │ ├── conanfile.txt │ ├── extras │ │ ├── CMakeLists.txt │ │ ├── curlpp-config.in │ │ ├── curlpp.m4 │ │ ├── curlpp.pc.in │ │ └── curlpp.spec.in │ ├── include │ │ ├── curlpp │ │ │ ├── Easy.hpp │ │ │ ├── Easy.inl │ │ │ ├── Exception.hpp │ │ │ ├── Form.hpp │ │ │ ├── Info.hpp │ │ │ ├── Info.inl │ │ │ ├── Infos.hpp │ │ │ ├── Multi.hpp │ │ │ ├── Option.hpp │ │ │ ├── Option.inl │ │ │ ├── OptionBase.hpp │ │ │ ├── Options.hpp │ │ │ ├── Types.hpp │ │ │ ├── cURLpp.hpp │ │ │ └── internal │ │ │ │ ├── CurlHandle.hpp │ │ │ │ ├── CurlHandle.inl │ │ │ │ ├── OptionContainer.hpp │ │ │ │ ├── OptionContainer.inl │ │ │ │ ├── OptionContainerType.hpp │ │ │ │ ├── OptionList.hpp │ │ │ │ ├── OptionSetter.hpp │ │ │ │ ├── OptionSetter.inl │ │ │ │ └── SList.hpp │ │ └── utilspp │ │ │ ├── EmptyType.hpp │ │ │ ├── NonCopyable.hpp │ │ │ ├── NullType.hpp │ │ │ ├── SmartPtr.hpp │ │ │ ├── ThreadingFactoryMutex.hpp │ │ │ ├── ThreadingFactoryMutex.inl │ │ │ ├── ThreadingSingle.hpp │ │ │ ├── ThreadingSingle.inl │ │ │ ├── TypeList.hpp │ │ │ ├── TypeTrait.hpp │ │ │ └── clone_ptr.hpp │ └── src │ │ └── curlpp │ │ ├── Easy.cpp │ │ ├── Exception.cpp │ │ ├── Form.cpp │ │ ├── Info.cpp │ │ ├── Multi.cpp │ │ ├── OptionBase.cpp │ │ ├── Options.cpp │ │ ├── cURLpp.cpp │ │ └── internal │ │ ├── CurlHandle.cpp │ │ ├── OptionList.cpp │ │ ├── OptionSetter.cpp │ │ └── SList.cpp └── date │ ├── .gitignore │ ├── CMakeLists.txt │ ├── LICENSE.txt │ ├── README.md │ ├── compile_fail.sh │ ├── include │ └── date │ │ ├── chrono_io.h │ │ ├── date.h │ │ ├── ios.h │ │ ├── islamic.h │ │ ├── iso_week.h │ │ ├── julian.h │ │ ├── ptz.h │ │ ├── solar_hijri.h │ │ ├── tz.h │ │ └── tz_private.h │ ├── src │ ├── ios.mm │ └── tz.cpp │ ├── test │ ├── clock_cast_test │ │ ├── custom_clock.pass.cpp │ │ ├── deprecated.pass.cpp │ │ ├── local_t.pass.cpp │ │ ├── noncastable.pass.cpp │ │ ├── normal_clocks.pass.cpp │ │ ├── to_sys_return_int.fail.cpp │ │ ├── to_sys_return_reference.fail.cpp │ │ └── to_sys_return_utc_time.fail.cpp │ ├── date_test │ │ ├── day.pass.cpp │ │ ├── daypday.fail.cpp │ │ ├── daysmday.fail.cpp │ │ ├── daysmweekday.fail.cpp │ │ ├── detail │ │ │ ├── decimal_format_seconds.pass.cpp │ │ │ ├── static_pow10.pass.cpp │ │ │ └── width.pass.cpp │ │ ├── durations.pass.cpp │ │ ├── durations_output.pass.cpp │ │ ├── format │ │ │ ├── century.pass.cpp │ │ │ ├── misc.pass.cpp │ │ │ ├── range.pass.cpp │ │ │ └── two_dight_year.pass.cpp │ │ ├── last.pass.cpp │ │ ├── make_time.pass.cpp │ │ ├── month.pass.cpp │ │ ├── month_day.pass.cpp │ │ ├── month_day_last.pass.cpp │ │ ├── month_weekday.pass.cpp │ │ ├── month_weekday_last.pass.cpp │ │ ├── month_weekday_last_less.fail.cpp │ │ ├── month_weekday_less.fail.cpp │ │ ├── monthpmonth.fail.cpp │ │ ├── months_m_year_month.fail.cpp │ │ ├── months_m_year_month_day.fail.cpp │ │ ├── monthsmmonth.fail.cpp │ │ ├── multi_year_duration_addition.pass.cpp │ │ ├── op_div_day_day.fail.cpp │ │ ├── op_div_int_month.fail.cpp │ │ ├── op_div_int_year.fail.cpp │ │ ├── op_div_last_last.fail.cpp │ │ ├── op_div_month_day.pass.cpp │ │ ├── op_div_month_day_last.pass.cpp │ │ ├── op_div_month_day_month_day.fail.cpp │ │ ├── op_div_month_month.fail.cpp │ │ ├── op_div_month_weekday.pass.cpp │ │ ├── op_div_month_weekday_last.pass.cpp │ │ ├── op_div_month_year.fail.cpp │ │ ├── op_div_survey.pass.cpp │ │ ├── op_div_weekday_indexed_weekday_indexed.fail.cpp │ │ ├── op_div_weekday_last_weekday_last.fail.cpp │ │ ├── op_div_year_month.pass.cpp │ │ ├── op_div_year_month_day.pass.cpp │ │ ├── op_div_year_month_day_last.pass.cpp │ │ ├── op_div_year_month_weekday.pass.cpp │ │ ├── op_div_year_month_weekday_last.pass.cpp │ │ ├── op_div_year_month_year_month.fail.cpp │ │ ├── op_div_year_year.fail.cpp │ │ ├── parse.pass.cpp │ │ ├── sizeof.pass.cpp │ │ ├── time_of_day_hours.pass.cpp │ │ ├── time_of_day_microfortnights.pass.cpp │ │ ├── time_of_day_milliseconds.pass.cpp │ │ ├── time_of_day_minutes.pass.cpp │ │ ├── time_of_day_nanoseconds.pass.cpp │ │ ├── time_of_day_seconds.pass.cpp │ │ ├── weekday.pass.cpp │ │ ├── weekday_indexed.pass.cpp │ │ ├── weekday_last.pass.cpp │ │ ├── weekday_lessthan.fail.cpp │ │ ├── weekday_sum.fail.cpp │ │ ├── year.pass.cpp │ │ ├── year_month.pass.cpp │ │ ├── year_month_day.pass.cpp │ │ ├── year_month_day_last.pass.cpp │ │ ├── year_month_day_m_year_month_day.fail.cpp │ │ ├── year_month_day_p_year_month_day.fail.cpp │ │ ├── year_month_p_year_month.fail.cpp │ │ ├── year_month_weekday.pass.cpp │ │ ├── year_month_weekday_last.pass.cpp │ │ ├── year_p_year.fail.cpp │ │ ├── years_m_year.fail.cpp │ │ ├── years_m_year_month.fail.cpp │ │ └── years_m_year_month_day.fail.cpp │ ├── iso_week │ │ ├── last.pass.cpp │ │ ├── lastweek_weekday.pass.cpp │ │ ├── op_div_survey.pass.cpp │ │ ├── weekday.pass.cpp │ │ ├── weekday_lessthan.fail.cpp │ │ ├── weekday_sum.fail.cpp │ │ ├── weeknum.pass.cpp │ │ ├── weeknum_p_weeknum.fail.cpp │ │ ├── weeknum_weekday.pass.cpp │ │ ├── year.pass.cpp │ │ ├── year_lastweek.pass.cpp │ │ ├── year_lastweek_weekday.pass.cpp │ │ ├── year_p_year.fail.cpp │ │ ├── year_weeknum.pass.cpp │ │ ├── year_weeknum_weekday.pass.cpp │ │ └── years_m_year.fail.cpp │ ├── just.pass.cpp │ ├── testit │ └── tz_test │ │ ├── OffsetZone.pass.cpp │ │ ├── README.md │ │ ├── tzdata2015e.txt.zip │ │ ├── tzdata2015f.txt.zip │ │ ├── tzdata2016c.txt.zip │ │ ├── tzdata2016d.txt.zip │ │ ├── tzdata2016e.txt.zip │ │ ├── tzdata2016f.txt.zip │ │ ├── validate.cpp │ │ ├── zone.pass.cpp │ │ └── zoned_time.pass.cpp │ └── test_fail.sh ├── fonts ├── README.md ├── dejavu │ ├── DejaVuSans-Bold.ttf │ ├── DejaVuSans.ttf │ ├── DejaVuSansMono-Bold.ttf │ ├── DejaVuSansMono-Regular.ttf │ ├── DejaVuSansMono.ttf │ ├── DejaVuSerif-Bold.ttf │ ├── DejaVuSerif-Regular.ttf │ └── DejaVuSerif.ttf ├── ebgaramond │ ├── EBGaramond-Bold.ttf │ └── EBGaramond-Regular.ttf ├── fonts.conf ├── liberation │ ├── LiberationSerif-Bold.ttf │ └── LiberationSerif-Regular.ttf ├── nimbus │ ├── NimbusRoman-Bold.otf │ └── NimbusRoman-Regular.otf └── urw │ ├── URWBookman-Demi.otf │ └── URWBookman-Light.otf ├── images └── README.md ├── loader └── loader_main.cc ├── main ├── business │ ├── account.cc │ ├── account.hh │ ├── check.cc │ ├── check.hh │ ├── customer.cc │ ├── customer.hh │ ├── employee.cc │ ├── employee.hh │ ├── inventory.cc │ ├── inventory.hh │ ├── labor.cc │ ├── labor.hh │ ├── sales.cc │ ├── sales.hh │ ├── tips.cc │ └── tips.hh ├── data │ ├── admission.cc │ ├── admission.hh │ ├── archive.cc │ ├── archive.hh │ ├── credit.cc │ ├── credit.hh │ ├── exception.cc │ ├── exception.hh │ ├── expense.cc │ ├── expense.hh │ ├── license_hash.cc │ ├── license_hash.hh │ ├── locale.cc │ ├── locale.hh │ ├── manager.cc │ ├── manager.hh │ ├── settings.cc │ ├── settings.hh │ ├── settings_enums.hh │ ├── system.cc │ ├── system.hh │ └── terminal_config_example.cc ├── hardware │ ├── cdu.cc │ ├── cdu.hh │ ├── cdu_att.cc │ ├── cdu_att.hh │ ├── drawer.cc │ ├── drawer.hh │ ├── printer.cc │ ├── printer.hh │ ├── remote_printer.cc │ ├── remote_printer.hh │ ├── terminal.cc │ └── terminal.hh └── ui │ ├── chart.cc │ ├── chart.hh │ ├── labels.cc │ ├── labels.hh │ ├── report.cc │ ├── report.hh │ ├── system_report.cc │ └── system_salesmix.cc ├── packaging └── installer │ ├── README.md │ └── create-universal-installer.sh ├── print └── print_main.cc ├── scripts ├── arcfix ├── build │ ├── setbuildnum │ ├── vt-tag │ ├── vtbuild │ └── vtclean ├── get-latest-bins ├── install │ ├── installer │ ├── installs │ │ ├── inst-lesstif.sh │ │ ├── inst-scripts.sh │ │ ├── inst-sudo.sh │ │ ├── inst-user.sh │ │ ├── inst-viewtouch.sh │ │ ├── inst-xf86.sh │ │ ├── viewtouch.sh │ │ ├── vt_install.sh │ │ └── vtstart.sh │ ├── vt_install │ └── vtinst ├── maintenance │ ├── backup-viewtouch-dat │ ├── rotate │ ├── vt_backup │ ├── vt_ping │ ├── vt_pingcheck │ └── vtsave ├── system │ ├── keeprunning │ ├── keeprunningcron │ ├── lpd-restart │ ├── reverse-ssh-daemon.service │ ├── runonce │ ├── vt_shutdown │ ├── vtrestart │ ├── vtrun │ └── vtstart.sh └── tools │ ├── appproc.pl │ ├── callcenter-test.pl │ ├── callcenter.pl │ ├── ccprocess.pl │ ├── dat2txt │ ├── generic_char.sh │ ├── getmid.cc │ ├── gplreplace.sed │ ├── openterm_server.cgi │ ├── packagedata.sh │ ├── packagerelease │ ├── paynow │ ├── remote_start │ ├── reportdebugs │ ├── update-client │ ├── update-server.cgi │ ├── usercount │ ├── vt_data.pl │ ├── vt_openterm │ ├── vt_reverse_ssh │ ├── vt_reverse_ssh_setup │ ├── vt_ssh_security │ └── vtcommands.pl ├── src ├── core │ ├── basic.hh │ ├── conf_file.cc │ ├── conf_file.hh │ ├── crash_report.cc │ ├── crash_report.hh │ ├── data_file.cc │ ├── data_file.hh │ ├── data_persistence_manager.cc │ ├── data_persistence_manager.hh │ ├── debug.cc │ ├── debug.hh │ ├── error_handler.cc │ ├── error_handler.hh │ ├── generic_char.cc │ ├── generic_char.hh │ ├── image_data.cc │ ├── image_data.hh │ ├── inttypes.h │ ├── list_utility.hh │ ├── logger.cc │ ├── logger.hh │ ├── time_info.cc │ └── time_info.hh ├── network │ ├── remote_link.cc │ ├── remote_link.hh │ ├── reverse_ssh_daemon.cc │ ├── reverse_ssh_service.cc │ ├── reverse_ssh_service.hh │ ├── socket.cc │ ├── socket.hh │ ├── vt_ccq_pipe.cc │ └── vt_ccq_pipe.hh └── utils │ ├── fntrace.cc │ ├── fntrace.hh │ ├── font_check │ ├── font_check.cc │ ├── input_validation.cc │ ├── input_validation.hh │ ├── memory_utils.cc │ ├── memory_utils.hh │ ├── modern_cpp_example.cc │ ├── safe_string_utils.cc │ ├── safe_string_utils.hh │ ├── string_utils.cc │ ├── string_utils.hh │ ├── utility.cc │ ├── utility.hh │ ├── vt_enum_utils.cc │ ├── vt_enum_utils.hh │ ├── vt_json_config.cc │ ├── vt_json_config.hh │ ├── vt_logger.cc │ └── vt_logger.hh ├── term ├── layer.cc ├── layer.hh ├── term_credit.cc ├── term_credit.hh ├── term_credit_cheq.cc ├── term_credit_cheq.hh ├── term_credit_mcve.cc ├── term_credit_mcve.hh ├── term_dialog.cc ├── term_dialog.hh ├── term_main.cc ├── term_view.cc ├── term_view.hh ├── touch_screen.cc └── touch_screen.hh ├── tests ├── CMakeLists.txt ├── main_test.cc ├── mocks │ ├── mock_settings.cc │ ├── mock_settings.hh │ ├── mock_terminal.cc │ └── mock_terminal.hh └── unit │ ├── test_check.cc │ ├── test_coupon_calculations.cc │ ├── test_enhanced_logging.cc │ ├── test_input_validation.cc │ ├── test_memory_modernization.cc │ ├── test_safe_string_utils.cc │ ├── test_settings.cc │ └── test_utility.cc ├── version ├── main_print_version.cc ├── vt_version_info.cc └── vt_version_info.hh └── zone ├── account_zone.cc ├── account_zone.hh ├── button_zone.cc ├── button_zone.hh ├── cdu_zone.cc ├── cdu_zone.hh ├── chart_zone.cc ├── chart_zone.hh ├── check_list_zone.cc ├── check_list_zone.hh ├── creditcard_list_zone.cc ├── creditcard_list_zone.hh ├── dialog_zone.cc ├── dialog_zone.hh ├── drawer_zone.cc ├── drawer_zone.hh ├── expense_zone.cc ├── expense_zone.hh ├── form_zone.cc ├── form_zone.hh ├── hardware_zone.cc ├── hardware_zone.hh ├── inventory_zone.cc ├── inventory_zone.hh ├── labor_zone.cc ├── labor_zone.hh ├── layout_zone.cc ├── layout_zone.hh ├── login_zone.cc ├── login_zone.hh ├── merchant_zone.cc ├── merchant_zone.hh ├── order_zone.cc ├── order_zone.hh ├── payment_zone.cc ├── payment_zone.hh ├── payout_zone.cc ├── payout_zone.hh ├── phrase_zone.cc ├── phrase_zone.hh ├── pos_zone.cc ├── pos_zone.hh ├── printer_zone.cc ├── printer_zone.hh ├── report_zone.cc ├── report_zone.hh ├── report_zone_quickbooks.cc ├── search_zone.cc ├── search_zone.hh ├── settings_zone.cc ├── settings_zone.hh ├── split_check_zone.cc ├── split_check_zone.hh ├── table_zone.cc ├── table_zone.hh ├── user_edit_zone.cc ├── user_edit_zone.hh ├── video_zone.cc ├── video_zone.hh ├── zone.cc ├── zone.hh ├── zone_object.cc └── zone_object.hh /.github/workflows/linux-simple-builds.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/.github/workflows/linux-simple-builds.yml -------------------------------------------------------------------------------- /.github/workflows/universal-installer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/.github/workflows/universal-installer.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/SECURITY.md -------------------------------------------------------------------------------- /android/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/android/README.md -------------------------------------------------------------------------------- /android/override/project/jni/application/xserver/AndroidData/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/android/override/project/jni/application/xserver/AndroidData/logo.png -------------------------------------------------------------------------------- /android/override/project/jni/application/xserver/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/android/override/project/jni/application/xserver/icon.png -------------------------------------------------------------------------------- /android/viewtouch.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/android/viewtouch.patch -------------------------------------------------------------------------------- /assets/data/po_file/viewtouch.po_EN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/assets/data/po_file/viewtouch.po_EN -------------------------------------------------------------------------------- /assets/default_images/burger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/assets/default_images/burger.png -------------------------------------------------------------------------------- /assets/images/xpm/4color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/assets/images/xpm/4color.png -------------------------------------------------------------------------------- /assets/images/xpm/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/assets/images/xpm/Icon.png -------------------------------------------------------------------------------- /assets/images/xpm/black.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/assets/images/xpm/black.xpm -------------------------------------------------------------------------------- /assets/images/xpm/blueparchment.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/assets/images/xpm/blueparchment.xpm -------------------------------------------------------------------------------- /assets/images/xpm/bluetexture-128-32.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/assets/images/xpm/bluetexture-128-32.xpm -------------------------------------------------------------------------------- /assets/images/xpm/brass-8.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/assets/images/xpm/brass-8.xpm -------------------------------------------------------------------------------- /assets/images/xpm/bread-256.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/assets/images/xpm/bread-256.xpm -------------------------------------------------------------------------------- /assets/images/xpm/canvas-8.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/assets/images/xpm/canvas-8.xpm -------------------------------------------------------------------------------- /assets/images/xpm/carbonfiber-128-6.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/assets/images/xpm/carbonfiber-128-6.xpm -------------------------------------------------------------------------------- /assets/images/xpm/concrete-8.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/assets/images/xpm/concrete-8.xpm -------------------------------------------------------------------------------- /assets/images/xpm/copper-8.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/assets/images/xpm/copper-8.xpm -------------------------------------------------------------------------------- /assets/images/xpm/darkmarble-256.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/assets/images/xpm/darkmarble-256.xpm -------------------------------------------------------------------------------- /assets/images/xpm/darkorangetexture-128-32.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/assets/images/xpm/darkorangetexture-128-32.xpm -------------------------------------------------------------------------------- /assets/images/xpm/darksand-6.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/assets/images/xpm/darksand-6.xpm -------------------------------------------------------------------------------- /assets/images/xpm/darkwood-10.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/assets/images/xpm/darkwood-10.xpm -------------------------------------------------------------------------------- /assets/images/xpm/demo-converted.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/assets/images/xpm/demo-converted.xpm -------------------------------------------------------------------------------- /assets/images/xpm/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/assets/images/xpm/demo.png -------------------------------------------------------------------------------- /assets/images/xpm/diamondleather-256.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/assets/images/xpm/diamondleather-256.xpm -------------------------------------------------------------------------------- /assets/images/xpm/embossed-8.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/assets/images/xpm/embossed-8.xpm -------------------------------------------------------------------------------- /assets/images/xpm/glass-8.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/assets/images/xpm/glass-8.xpm -------------------------------------------------------------------------------- /assets/images/xpm/gradient-8.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/assets/images/xpm/gradient-8.xpm -------------------------------------------------------------------------------- /assets/images/xpm/gradient-brown.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/assets/images/xpm/gradient-brown.xpm -------------------------------------------------------------------------------- /assets/images/xpm/grass-6.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/assets/images/xpm/grass-6.xpm -------------------------------------------------------------------------------- /assets/images/xpm/gray-6.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/assets/images/xpm/gray-6.xpm -------------------------------------------------------------------------------- /assets/images/xpm/grayblue-3.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/assets/images/xpm/grayblue-3.xpm -------------------------------------------------------------------------------- /assets/images/xpm/graymarble-12.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/assets/images/xpm/graymarble-12.xpm -------------------------------------------------------------------------------- /assets/images/xpm/grayparchment-8.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/assets/images/xpm/grayparchment-8.xpm -------------------------------------------------------------------------------- /assets/images/xpm/greenmarble-12.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/assets/images/xpm/greenmarble-12.xpm -------------------------------------------------------------------------------- /assets/images/xpm/greentexture-128-32.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/assets/images/xpm/greentexture-128-32.xpm -------------------------------------------------------------------------------- /assets/images/xpm/greySand.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/assets/images/xpm/greySand.xpm -------------------------------------------------------------------------------- /assets/images/xpm/lava-256.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/assets/images/xpm/lava-256.xpm -------------------------------------------------------------------------------- /assets/images/xpm/leather-8.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/assets/images/xpm/leather-8.xpm -------------------------------------------------------------------------------- /assets/images/xpm/lighttanparchment-8.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/assets/images/xpm/lighttanparchment-8.xpm -------------------------------------------------------------------------------- /assets/images/xpm/litewood-8.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/assets/images/xpm/litewood-8.xpm -------------------------------------------------------------------------------- /assets/images/xpm/litsand-6.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/assets/images/xpm/litsand-6.xpm -------------------------------------------------------------------------------- /assets/images/xpm/metal-8.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/assets/images/xpm/metal-8.xpm -------------------------------------------------------------------------------- /assets/images/xpm/orangetexture-128-32.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/assets/images/xpm/orangetexture-128-32.xpm -------------------------------------------------------------------------------- /assets/images/xpm/parchment-6.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/assets/images/xpm/parchment-6.xpm -------------------------------------------------------------------------------- /assets/images/xpm/pearl-8.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/assets/images/xpm/pearl-8.xpm -------------------------------------------------------------------------------- /assets/images/xpm/plastic-8.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/assets/images/xpm/plastic-8.xpm -------------------------------------------------------------------------------- /assets/images/xpm/pooltable-256.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/assets/images/xpm/pooltable-256.xpm -------------------------------------------------------------------------------- /assets/images/xpm/redgravel-6.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/assets/images/xpm/redgravel-6.xpm -------------------------------------------------------------------------------- /assets/images/xpm/sand-8.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/assets/images/xpm/sand-8.xpm -------------------------------------------------------------------------------- /assets/images/xpm/silk-8.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/assets/images/xpm/silk-8.xpm -------------------------------------------------------------------------------- /assets/images/xpm/smoke-4.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/assets/images/xpm/smoke-4.xpm -------------------------------------------------------------------------------- /assets/images/xpm/smoke-8.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/assets/images/xpm/smoke-8.xpm -------------------------------------------------------------------------------- /assets/images/xpm/steel-8.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/assets/images/xpm/steel-8.xpm -------------------------------------------------------------------------------- /assets/images/xpm/stone-8.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/assets/images/xpm/stone-8.xpm -------------------------------------------------------------------------------- /assets/images/xpm/tanparchment-8.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/assets/images/xpm/tanparchment-8.xpm -------------------------------------------------------------------------------- /assets/images/xpm/test-256.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/assets/images/xpm/test-256.xpm -------------------------------------------------------------------------------- /assets/images/xpm/velvet-8.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/assets/images/xpm/velvet-8.xpm -------------------------------------------------------------------------------- /assets/images/xpm/water-10.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/assets/images/xpm/water-10.xpm -------------------------------------------------------------------------------- /assets/images/xpm/whiteMesh.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/assets/images/xpm/whiteMesh.xpm -------------------------------------------------------------------------------- /assets/images/xpm/whitetexture-128-32.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/assets/images/xpm/whitetexture-128-32.xpm -------------------------------------------------------------------------------- /assets/images/xpm/wood-10.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/assets/images/xpm/wood-10.xpm -------------------------------------------------------------------------------- /assets/images/xpm/woodfloor-12.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/assets/images/xpm/woodfloor-12.xpm -------------------------------------------------------------------------------- /assets/images/xpm/yellowstucco-8.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/assets/images/xpm/yellowstucco-8.xpm -------------------------------------------------------------------------------- /assets/images/xpm/yellowtexture-128-32.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/assets/images/xpm/yellowtexture-128-32.xpm -------------------------------------------------------------------------------- /cdu/cdu_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/cdu/cdu_main.cc -------------------------------------------------------------------------------- /ci/Dockerfile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/ci/Dockerfile.template -------------------------------------------------------------------------------- /ci/toolchains/.gitignore: -------------------------------------------------------------------------------- 1 | # allow toolchain files to be tracked by git 2 | !*.cmake 3 | -------------------------------------------------------------------------------- /ci/toolchains/clang-cxx17.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/ci/toolchains/clang-cxx17.cmake -------------------------------------------------------------------------------- /ci/toolchains/clang-cxx20.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/ci/toolchains/clang-cxx20.cmake -------------------------------------------------------------------------------- /ci/toolchains/clang-tidy.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/ci/toolchains/clang-tidy.cmake -------------------------------------------------------------------------------- /ci/toolchains/default.cmake: -------------------------------------------------------------------------------- 1 | # dummy toolchain 2 | -------------------------------------------------------------------------------- /ci/toolchains/gcc-8.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/ci/toolchains/gcc-8.cmake -------------------------------------------------------------------------------- /ci/toolchains/gcc-cxx17.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/ci/toolchains/gcc-cxx17.cmake -------------------------------------------------------------------------------- /ci/toolchains/gcc-cxx20.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/ci/toolchains/gcc-cxx20.cmake -------------------------------------------------------------------------------- /ci/travis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/ci/travis.sh -------------------------------------------------------------------------------- /cmake/check_toolchain_definition.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/cmake/check_toolchain_definition.cmake -------------------------------------------------------------------------------- /cmake/gen_compiler_tag.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/cmake/gen_compiler_tag.cmake -------------------------------------------------------------------------------- /cmake/gen_target_architecture.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/cmake/gen_target_architecture.cmake -------------------------------------------------------------------------------- /cmake/gen_toolchain_definitions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/cmake/gen_toolchain_definitions.cmake -------------------------------------------------------------------------------- /cmake/gen_version_string.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/cmake/gen_version_string.cmake -------------------------------------------------------------------------------- /cmake/load_git_variables.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/cmake/load_git_variables.cmake -------------------------------------------------------------------------------- /config/font_ids.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/config/font_ids.hh -------------------------------------------------------------------------------- /config/reverse_ssh_daemon.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/config/reverse_ssh_daemon.conf -------------------------------------------------------------------------------- /config/version.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/config/version.cmake -------------------------------------------------------------------------------- /config/version_generated.hh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/config/version_generated.hh.in -------------------------------------------------------------------------------- /docs/BUG_ANALYSIS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/docs/BUG_ANALYSIS.md -------------------------------------------------------------------------------- /docs/CLEANUP_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/docs/CLEANUP_SUMMARY.md -------------------------------------------------------------------------------- /docs/DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/docs/DEVELOPMENT.md -------------------------------------------------------------------------------- /docs/MEMORY_MODERNIZATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/docs/MEMORY_MODERNIZATION.md -------------------------------------------------------------------------------- /docs/MODERN_CPP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/docs/MODERN_CPP.md -------------------------------------------------------------------------------- /docs/PAYMENT_PROCESSOR_INTEGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/docs/PAYMENT_PROCESSOR_INTEGRATION.md -------------------------------------------------------------------------------- /docs/REVERSE_SSH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/docs/REVERSE_SSH.md -------------------------------------------------------------------------------- /docs/STRING_SAFETY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/docs/STRING_SAFETY.md -------------------------------------------------------------------------------- /docs/TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/docs/TESTING.md -------------------------------------------------------------------------------- /docs/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/docs/changelog.md -------------------------------------------------------------------------------- /docs/user/DATA_PERSISTENCE_SYSTEM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/docs/user/DATA_PERSISTENCE_SYSTEM.md -------------------------------------------------------------------------------- /docs/user/ITEMLIST_FILTER_FEATURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/docs/user/ITEMLIST_FILTER_FEATURE.md -------------------------------------------------------------------------------- /docs/user/QUICKBOOKS_EXPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/docs/user/QUICKBOOKS_EXPORT.md -------------------------------------------------------------------------------- /docs/user/TOUCHSCREEN_IMPROVEMENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/docs/user/TOUCHSCREEN_IMPROVEMENTS.md -------------------------------------------------------------------------------- /docs/user/ViewTouch_Documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/docs/user/ViewTouch_Documentation.md -------------------------------------------------------------------------------- /external/catch2/CMake/Catch2Config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/CMake/Catch2Config.cmake.in -------------------------------------------------------------------------------- /external/catch2/CMake/CatchConfigOptions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/CMake/CatchConfigOptions.cmake -------------------------------------------------------------------------------- /external/catch2/CMake/CatchMiscFunctions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/CMake/CatchMiscFunctions.cmake -------------------------------------------------------------------------------- /external/catch2/CMake/FindGcov.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/CMake/FindGcov.cmake -------------------------------------------------------------------------------- /external/catch2/CMake/FindLcov.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/CMake/FindLcov.cmake -------------------------------------------------------------------------------- /external/catch2/CMake/Findcodecov.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/CMake/Findcodecov.cmake -------------------------------------------------------------------------------- /external/catch2/CMake/catch2-with-main.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/CMake/catch2-with-main.pc.in -------------------------------------------------------------------------------- /external/catch2/CMake/catch2.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/CMake/catch2.pc.in -------------------------------------------------------------------------------- /external/catch2/CMake/llvm-cov-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/CMake/llvm-cov-wrapper -------------------------------------------------------------------------------- /external/catch2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/CMakeLists.txt -------------------------------------------------------------------------------- /external/catch2/CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/CMakePresets.json -------------------------------------------------------------------------------- /external/catch2/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/LICENSE.txt -------------------------------------------------------------------------------- /external/catch2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/README.md -------------------------------------------------------------------------------- /external/catch2/extras/Catch.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/extras/Catch.cmake -------------------------------------------------------------------------------- /external/catch2/extras/CatchAddTests.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/extras/CatchAddTests.cmake -------------------------------------------------------------------------------- /external/catch2/extras/CatchShardTests.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/extras/CatchShardTests.cmake -------------------------------------------------------------------------------- /external/catch2/extras/CatchShardTestsImpl.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/extras/CatchShardTestsImpl.cmake -------------------------------------------------------------------------------- /external/catch2/extras/ParseAndAddCatchTests.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/extras/ParseAndAddCatchTests.cmake -------------------------------------------------------------------------------- /external/catch2/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/CMakeLists.txt -------------------------------------------------------------------------------- /external/catch2/src/catch2/benchmark/catch_benchmark.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/benchmark/catch_benchmark.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/benchmark/catch_benchmark_all.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/benchmark/catch_benchmark_all.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/benchmark/catch_chronometer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/benchmark/catch_chronometer.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/benchmark/catch_chronometer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/benchmark/catch_chronometer.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/benchmark/catch_clock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/benchmark/catch_clock.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/benchmark/catch_constructor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/benchmark/catch_constructor.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/benchmark/catch_environment.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/benchmark/catch_environment.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/benchmark/catch_estimate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/benchmark/catch_estimate.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/benchmark/catch_execution_plan.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/benchmark/catch_execution_plan.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/benchmark/catch_optimizer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/benchmark/catch_optimizer.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/benchmark/catch_outlier_classification.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/benchmark/catch_outlier_classification.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/benchmark/catch_sample_analysis.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/benchmark/catch_sample_analysis.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/benchmark/detail/catch_analyse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/benchmark/detail/catch_analyse.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/benchmark/detail/catch_analyse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/benchmark/detail/catch_analyse.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/benchmark/detail/catch_benchmark_stats.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/benchmark/detail/catch_benchmark_stats.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/benchmark/detail/catch_complete_invoke.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/benchmark/detail/catch_complete_invoke.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/benchmark/detail/catch_estimate_clock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/benchmark/detail/catch_estimate_clock.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/benchmark/detail/catch_measure.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/benchmark/detail/catch_measure.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/benchmark/detail/catch_repeat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/benchmark/detail/catch_repeat.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/benchmark/detail/catch_stats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/benchmark/detail/catch_stats.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/benchmark/detail/catch_stats.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/benchmark/detail/catch_stats.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/benchmark/detail/catch_timing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/benchmark/detail/catch_timing.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/catch_all.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/catch_all.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/catch_approx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/catch_approx.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/catch_approx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/catch_approx.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/catch_assertion_info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/catch_assertion_info.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/catch_assertion_result.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/catch_assertion_result.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/catch_assertion_result.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/catch_assertion_result.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/catch_case_sensitive.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/catch_case_sensitive.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/catch_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/catch_config.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/catch_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/catch_config.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/catch_get_random_seed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/catch_get_random_seed.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/catch_get_random_seed.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/catch_get_random_seed.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/catch_message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/catch_message.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/catch_message.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/catch_message.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/catch_registry_hub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/catch_registry_hub.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/catch_section_info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/catch_section_info.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/catch_session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/catch_session.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/catch_session.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/catch_session.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/catch_tag_alias.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/catch_tag_alias.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/catch_tag_alias_autoregistrar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/catch_tag_alias_autoregistrar.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/catch_tag_alias_autoregistrar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/catch_tag_alias_autoregistrar.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/catch_template_test_macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/catch_template_test_macros.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/catch_test_case_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/catch_test_case_info.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/catch_test_case_info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/catch_test_case_info.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/catch_test_macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/catch_test_macros.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/catch_test_run_info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/catch_test_run_info.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/catch_test_spec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/catch_test_spec.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/catch_test_spec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/catch_test_spec.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/catch_timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/catch_timer.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/catch_timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/catch_timer.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/catch_tostring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/catch_tostring.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/catch_tostring.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/catch_tostring.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/catch_totals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/catch_totals.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/catch_totals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/catch_totals.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/catch_translate_exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/catch_translate_exception.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/catch_translate_exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/catch_translate_exception.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/catch_user_config.hpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/catch_user_config.hpp.in -------------------------------------------------------------------------------- /external/catch2/src/catch2/catch_version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/catch_version.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/catch_version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/catch_version.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/catch_version_macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/catch_version_macros.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/generators/catch_generator_exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/generators/catch_generator_exception.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/generators/catch_generator_exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/generators/catch_generator_exception.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/generators/catch_generators.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/generators/catch_generators.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/generators/catch_generators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/generators/catch_generators.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/generators/catch_generators_adapters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/generators/catch_generators_adapters.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/generators/catch_generators_all.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/generators/catch_generators_all.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/generators/catch_generators_random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/generators/catch_generators_random.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/generators/catch_generators_random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/generators/catch_generators_random.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/generators/catch_generators_range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/generators/catch_generators_range.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/interfaces/catch_interfaces_all.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/interfaces/catch_interfaces_all.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/interfaces/catch_interfaces_capture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/interfaces/catch_interfaces_capture.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/interfaces/catch_interfaces_capture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/interfaces/catch_interfaces_capture.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/interfaces/catch_interfaces_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/interfaces/catch_interfaces_config.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/interfaces/catch_interfaces_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/interfaces/catch_interfaces_config.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/interfaces/catch_interfaces_exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/interfaces/catch_interfaces_exception.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/interfaces/catch_interfaces_exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/interfaces/catch_interfaces_exception.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/interfaces/catch_interfaces_reporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/interfaces/catch_interfaces_reporter.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_assertion_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_assertion_handler.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_assertion_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_assertion_handler.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_clara.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_clara.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_clara.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_clara.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_commandline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_commandline.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_commandline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_commandline.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_compare_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_compare_traits.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_config_counter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_config_counter.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_config_wchar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_config_wchar.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_console_colour.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_console_colour.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_console_colour.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_console_colour.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_console_width.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_console_width.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_container_nonmembers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_container_nonmembers.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_context.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_context.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_debug_console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_debug_console.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_debug_console.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_debug_console.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_debugger.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_debugger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_debugger.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_decomposer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_decomposer.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_decomposer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_decomposer.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_deprecation_macro.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_deprecation_macro.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_enforce.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_enforce.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_enforce.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_enforce.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_enum_values_registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_enum_values_registry.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_enum_values_registry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_enum_values_registry.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_errno_guard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_errno_guard.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_errno_guard.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_errno_guard.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_getenv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_getenv.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_getenv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_getenv.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_is_permutation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_is_permutation.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_istream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_istream.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_istream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_istream.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_jsonwriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_jsonwriter.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_jsonwriter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_jsonwriter.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_lazy_expr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_lazy_expr.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_lazy_expr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_lazy_expr.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_leak_detector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_leak_detector.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_leak_detector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_leak_detector.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_list.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_list.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_logical_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_logical_traits.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_main.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_message_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_message_info.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_message_info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_message_info.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_meta.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_meta.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_move_and_forward.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_move_and_forward.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_noncopyable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_noncopyable.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_optional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_optional.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_output_redirect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_output_redirect.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_output_redirect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_output_redirect.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_parse_numbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_parse_numbers.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_parse_numbers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_parse_numbers.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_platform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_platform.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_polyfills.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_polyfills.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_polyfills.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_polyfills.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_preprocessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_preprocessor.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_reporter_registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_reporter_registry.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_reporter_registry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_reporter_registry.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_reporter_spec_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_reporter_spec_parser.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_reporter_spec_parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_reporter_spec_parser.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_result_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_result_type.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_run_context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_run_context.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_run_context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_run_context.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_section.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_section.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_section.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_section.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_sharding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_sharding.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_singletons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_singletons.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_singletons.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_singletons.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_source_line_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_source_line_info.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_source_line_info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_source_line_info.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_stdstreams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_stdstreams.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_stdstreams.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_stdstreams.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_stream_end_stop.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_stream_end_stop.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_string_manip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_string_manip.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_string_manip.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_string_manip.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_stringref.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_stringref.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_stringref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_stringref.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_tag_alias_registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_tag_alias_registry.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_tag_alias_registry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_tag_alias_registry.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_test_case_tracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_test_case_tracker.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_test_case_tracker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_test_case_tracker.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_test_macro_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_test_macro_impl.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_test_registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_test_registry.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_test_registry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_test_registry.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_test_spec_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_test_spec_parser.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_test_spec_parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_test_spec_parser.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_textflow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_textflow.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_textflow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_textflow.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_to_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_to_string.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_uncaught_exceptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_uncaught_exceptions.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_uncaught_exceptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_uncaught_exceptions.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_unique_name.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_unique_name.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_unique_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_unique_ptr.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_unreachable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_unreachable.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_void_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_void_type.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_wildcard_pattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_wildcard_pattern.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_wildcard_pattern.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_wildcard_pattern.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_windows_h_proxy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_windows_h_proxy.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_xmlwriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_xmlwriter.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/internal/catch_xmlwriter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/internal/catch_xmlwriter.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/matchers/catch_matchers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/matchers/catch_matchers.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/matchers/catch_matchers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/matchers/catch_matchers.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/matchers/catch_matchers_all.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/matchers/catch_matchers_all.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/matchers/catch_matchers_contains.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/matchers/catch_matchers_contains.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/matchers/catch_matchers_exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/matchers/catch_matchers_exception.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/matchers/catch_matchers_exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/matchers/catch_matchers_exception.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/matchers/catch_matchers_predicate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/matchers/catch_matchers_predicate.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/matchers/catch_matchers_predicate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/matchers/catch_matchers_predicate.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/matchers/catch_matchers_quantifiers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/matchers/catch_matchers_quantifiers.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/matchers/catch_matchers_quantifiers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/matchers/catch_matchers_quantifiers.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/matchers/catch_matchers_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/matchers/catch_matchers_string.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/matchers/catch_matchers_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/matchers/catch_matchers_string.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/matchers/catch_matchers_templated.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/matchers/catch_matchers_templated.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/matchers/catch_matchers_templated.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/matchers/catch_matchers_templated.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/matchers/catch_matchers_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/matchers/catch_matchers_vector.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/meson.build -------------------------------------------------------------------------------- /external/catch2/src/catch2/reporters/catch_reporter_automake.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/reporters/catch_reporter_automake.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/reporters/catch_reporter_automake.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/reporters/catch_reporter_automake.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/reporters/catch_reporter_compact.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/reporters/catch_reporter_compact.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/reporters/catch_reporter_compact.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/reporters/catch_reporter_compact.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/reporters/catch_reporter_console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/reporters/catch_reporter_console.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/reporters/catch_reporter_console.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/reporters/catch_reporter_console.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/reporters/catch_reporter_helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/reporters/catch_reporter_helpers.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/reporters/catch_reporter_helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/reporters/catch_reporter_helpers.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/reporters/catch_reporter_json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/reporters/catch_reporter_json.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/reporters/catch_reporter_json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/reporters/catch_reporter_json.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/reporters/catch_reporter_junit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/reporters/catch_reporter_junit.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/reporters/catch_reporter_junit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/reporters/catch_reporter_junit.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/reporters/catch_reporter_multi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/reporters/catch_reporter_multi.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/reporters/catch_reporter_multi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/reporters/catch_reporter_multi.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/reporters/catch_reporter_registrars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/reporters/catch_reporter_registrars.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/reporters/catch_reporter_registrars.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/reporters/catch_reporter_registrars.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/reporters/catch_reporter_sonarqube.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/reporters/catch_reporter_sonarqube.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/reporters/catch_reporter_sonarqube.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/reporters/catch_reporter_sonarqube.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/reporters/catch_reporter_tap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/reporters/catch_reporter_tap.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/reporters/catch_reporter_tap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/reporters/catch_reporter_tap.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/reporters/catch_reporter_teamcity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/reporters/catch_reporter_teamcity.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/reporters/catch_reporter_teamcity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/reporters/catch_reporter_teamcity.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/reporters/catch_reporter_xml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/reporters/catch_reporter_xml.cpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/reporters/catch_reporter_xml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/reporters/catch_reporter_xml.hpp -------------------------------------------------------------------------------- /external/catch2/src/catch2/reporters/catch_reporters_all.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/src/catch2/reporters/catch_reporters_all.hpp -------------------------------------------------------------------------------- /external/catch2/third_party/clara.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/catch2/third_party/clara.hpp -------------------------------------------------------------------------------- /external/core/sha1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/core/sha1.cc -------------------------------------------------------------------------------- /external/core/sha1.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/core/sha1.hh -------------------------------------------------------------------------------- /external/curlpp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/curlpp/.gitignore -------------------------------------------------------------------------------- /external/curlpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/curlpp/CMakeLists.txt -------------------------------------------------------------------------------- /external/curlpp/CNAME: -------------------------------------------------------------------------------- 1 | www.curlpp.org -------------------------------------------------------------------------------- /external/curlpp/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/curlpp/Readme.md -------------------------------------------------------------------------------- /external/curlpp/cmake/curlppConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/curlpp/cmake/curlppConfig.cmake -------------------------------------------------------------------------------- /external/curlpp/conanfile.txt: -------------------------------------------------------------------------------- 1 | [requires] 2 | libcurl/7.50.3@bincrafters/stable 3 | 4 | [generators] 5 | cmake 6 | -------------------------------------------------------------------------------- /external/curlpp/extras/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/curlpp/extras/CMakeLists.txt -------------------------------------------------------------------------------- /external/curlpp/extras/curlpp-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/curlpp/extras/curlpp-config.in -------------------------------------------------------------------------------- /external/curlpp/extras/curlpp.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/curlpp/extras/curlpp.m4 -------------------------------------------------------------------------------- /external/curlpp/extras/curlpp.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/curlpp/extras/curlpp.pc.in -------------------------------------------------------------------------------- /external/curlpp/extras/curlpp.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/curlpp/extras/curlpp.spec.in -------------------------------------------------------------------------------- /external/curlpp/include/curlpp/Easy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/curlpp/include/curlpp/Easy.hpp -------------------------------------------------------------------------------- /external/curlpp/include/curlpp/Easy.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/curlpp/include/curlpp/Easy.inl -------------------------------------------------------------------------------- /external/curlpp/include/curlpp/Exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/curlpp/include/curlpp/Exception.hpp -------------------------------------------------------------------------------- /external/curlpp/include/curlpp/Form.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/curlpp/include/curlpp/Form.hpp -------------------------------------------------------------------------------- /external/curlpp/include/curlpp/Info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/curlpp/include/curlpp/Info.hpp -------------------------------------------------------------------------------- /external/curlpp/include/curlpp/Info.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/curlpp/include/curlpp/Info.inl -------------------------------------------------------------------------------- /external/curlpp/include/curlpp/Infos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/curlpp/include/curlpp/Infos.hpp -------------------------------------------------------------------------------- /external/curlpp/include/curlpp/Multi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/curlpp/include/curlpp/Multi.hpp -------------------------------------------------------------------------------- /external/curlpp/include/curlpp/Option.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/curlpp/include/curlpp/Option.hpp -------------------------------------------------------------------------------- /external/curlpp/include/curlpp/Option.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/curlpp/include/curlpp/Option.inl -------------------------------------------------------------------------------- /external/curlpp/include/curlpp/OptionBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/curlpp/include/curlpp/OptionBase.hpp -------------------------------------------------------------------------------- /external/curlpp/include/curlpp/Options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/curlpp/include/curlpp/Options.hpp -------------------------------------------------------------------------------- /external/curlpp/include/curlpp/Types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/curlpp/include/curlpp/Types.hpp -------------------------------------------------------------------------------- /external/curlpp/include/curlpp/cURLpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/curlpp/include/curlpp/cURLpp.hpp -------------------------------------------------------------------------------- /external/curlpp/include/curlpp/internal/CurlHandle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/curlpp/include/curlpp/internal/CurlHandle.hpp -------------------------------------------------------------------------------- /external/curlpp/include/curlpp/internal/CurlHandle.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/curlpp/include/curlpp/internal/CurlHandle.inl -------------------------------------------------------------------------------- /external/curlpp/include/curlpp/internal/OptionContainer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/curlpp/include/curlpp/internal/OptionContainer.hpp -------------------------------------------------------------------------------- /external/curlpp/include/curlpp/internal/OptionContainer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/curlpp/include/curlpp/internal/OptionContainer.inl -------------------------------------------------------------------------------- /external/curlpp/include/curlpp/internal/OptionContainerType.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/curlpp/include/curlpp/internal/OptionContainerType.hpp -------------------------------------------------------------------------------- /external/curlpp/include/curlpp/internal/OptionList.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/curlpp/include/curlpp/internal/OptionList.hpp -------------------------------------------------------------------------------- /external/curlpp/include/curlpp/internal/OptionSetter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/curlpp/include/curlpp/internal/OptionSetter.hpp -------------------------------------------------------------------------------- /external/curlpp/include/curlpp/internal/OptionSetter.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/curlpp/include/curlpp/internal/OptionSetter.inl -------------------------------------------------------------------------------- /external/curlpp/include/curlpp/internal/SList.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/curlpp/include/curlpp/internal/SList.hpp -------------------------------------------------------------------------------- /external/curlpp/include/utilspp/EmptyType.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/curlpp/include/utilspp/EmptyType.hpp -------------------------------------------------------------------------------- /external/curlpp/include/utilspp/NonCopyable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/curlpp/include/utilspp/NonCopyable.hpp -------------------------------------------------------------------------------- /external/curlpp/include/utilspp/NullType.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/curlpp/include/utilspp/NullType.hpp -------------------------------------------------------------------------------- /external/curlpp/include/utilspp/SmartPtr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/curlpp/include/utilspp/SmartPtr.hpp -------------------------------------------------------------------------------- /external/curlpp/include/utilspp/ThreadingFactoryMutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/curlpp/include/utilspp/ThreadingFactoryMutex.hpp -------------------------------------------------------------------------------- /external/curlpp/include/utilspp/ThreadingFactoryMutex.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/curlpp/include/utilspp/ThreadingFactoryMutex.inl -------------------------------------------------------------------------------- /external/curlpp/include/utilspp/ThreadingSingle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/curlpp/include/utilspp/ThreadingSingle.hpp -------------------------------------------------------------------------------- /external/curlpp/include/utilspp/ThreadingSingle.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/curlpp/include/utilspp/ThreadingSingle.inl -------------------------------------------------------------------------------- /external/curlpp/include/utilspp/TypeList.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/curlpp/include/utilspp/TypeList.hpp -------------------------------------------------------------------------------- /external/curlpp/include/utilspp/TypeTrait.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/curlpp/include/utilspp/TypeTrait.hpp -------------------------------------------------------------------------------- /external/curlpp/include/utilspp/clone_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/curlpp/include/utilspp/clone_ptr.hpp -------------------------------------------------------------------------------- /external/curlpp/src/curlpp/Easy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/curlpp/src/curlpp/Easy.cpp -------------------------------------------------------------------------------- /external/curlpp/src/curlpp/Exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/curlpp/src/curlpp/Exception.cpp -------------------------------------------------------------------------------- /external/curlpp/src/curlpp/Form.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/curlpp/src/curlpp/Form.cpp -------------------------------------------------------------------------------- /external/curlpp/src/curlpp/Info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/curlpp/src/curlpp/Info.cpp -------------------------------------------------------------------------------- /external/curlpp/src/curlpp/Multi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/curlpp/src/curlpp/Multi.cpp -------------------------------------------------------------------------------- /external/curlpp/src/curlpp/OptionBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/curlpp/src/curlpp/OptionBase.cpp -------------------------------------------------------------------------------- /external/curlpp/src/curlpp/Options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/curlpp/src/curlpp/Options.cpp -------------------------------------------------------------------------------- /external/curlpp/src/curlpp/cURLpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/curlpp/src/curlpp/cURLpp.cpp -------------------------------------------------------------------------------- /external/curlpp/src/curlpp/internal/CurlHandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/curlpp/src/curlpp/internal/CurlHandle.cpp -------------------------------------------------------------------------------- /external/curlpp/src/curlpp/internal/OptionList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/curlpp/src/curlpp/internal/OptionList.cpp -------------------------------------------------------------------------------- /external/curlpp/src/curlpp/internal/OptionSetter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/curlpp/src/curlpp/internal/OptionSetter.cpp -------------------------------------------------------------------------------- /external/curlpp/src/curlpp/internal/SList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/curlpp/src/curlpp/internal/SList.cpp -------------------------------------------------------------------------------- /external/date/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/.gitignore -------------------------------------------------------------------------------- /external/date/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/CMakeLists.txt -------------------------------------------------------------------------------- /external/date/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/LICENSE.txt -------------------------------------------------------------------------------- /external/date/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/README.md -------------------------------------------------------------------------------- /external/date/compile_fail.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/compile_fail.sh -------------------------------------------------------------------------------- /external/date/include/date/chrono_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/include/date/chrono_io.h -------------------------------------------------------------------------------- /external/date/include/date/date.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/include/date/date.h -------------------------------------------------------------------------------- /external/date/include/date/ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/include/date/ios.h -------------------------------------------------------------------------------- /external/date/include/date/islamic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/include/date/islamic.h -------------------------------------------------------------------------------- /external/date/include/date/iso_week.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/include/date/iso_week.h -------------------------------------------------------------------------------- /external/date/include/date/julian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/include/date/julian.h -------------------------------------------------------------------------------- /external/date/include/date/ptz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/include/date/ptz.h -------------------------------------------------------------------------------- /external/date/include/date/solar_hijri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/include/date/solar_hijri.h -------------------------------------------------------------------------------- /external/date/include/date/tz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/include/date/tz.h -------------------------------------------------------------------------------- /external/date/include/date/tz_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/include/date/tz_private.h -------------------------------------------------------------------------------- /external/date/src/ios.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/src/ios.mm -------------------------------------------------------------------------------- /external/date/src/tz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/src/tz.cpp -------------------------------------------------------------------------------- /external/date/test/clock_cast_test/custom_clock.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/clock_cast_test/custom_clock.pass.cpp -------------------------------------------------------------------------------- /external/date/test/clock_cast_test/deprecated.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/clock_cast_test/deprecated.pass.cpp -------------------------------------------------------------------------------- /external/date/test/clock_cast_test/local_t.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/clock_cast_test/local_t.pass.cpp -------------------------------------------------------------------------------- /external/date/test/clock_cast_test/noncastable.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/clock_cast_test/noncastable.pass.cpp -------------------------------------------------------------------------------- /external/date/test/clock_cast_test/normal_clocks.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/clock_cast_test/normal_clocks.pass.cpp -------------------------------------------------------------------------------- /external/date/test/clock_cast_test/to_sys_return_int.fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/clock_cast_test/to_sys_return_int.fail.cpp -------------------------------------------------------------------------------- /external/date/test/clock_cast_test/to_sys_return_utc_time.fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/clock_cast_test/to_sys_return_utc_time.fail.cpp -------------------------------------------------------------------------------- /external/date/test/date_test/day.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/date_test/day.pass.cpp -------------------------------------------------------------------------------- /external/date/test/date_test/daypday.fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/date_test/daypday.fail.cpp -------------------------------------------------------------------------------- /external/date/test/date_test/daysmday.fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/date_test/daysmday.fail.cpp -------------------------------------------------------------------------------- /external/date/test/date_test/daysmweekday.fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/date_test/daysmweekday.fail.cpp -------------------------------------------------------------------------------- /external/date/test/date_test/detail/static_pow10.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/date_test/detail/static_pow10.pass.cpp -------------------------------------------------------------------------------- /external/date/test/date_test/detail/width.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/date_test/detail/width.pass.cpp -------------------------------------------------------------------------------- /external/date/test/date_test/durations.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/date_test/durations.pass.cpp -------------------------------------------------------------------------------- /external/date/test/date_test/durations_output.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/date_test/durations_output.pass.cpp -------------------------------------------------------------------------------- /external/date/test/date_test/format/century.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/date_test/format/century.pass.cpp -------------------------------------------------------------------------------- /external/date/test/date_test/format/misc.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/date_test/format/misc.pass.cpp -------------------------------------------------------------------------------- /external/date/test/date_test/format/range.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/date_test/format/range.pass.cpp -------------------------------------------------------------------------------- /external/date/test/date_test/format/two_dight_year.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/date_test/format/two_dight_year.pass.cpp -------------------------------------------------------------------------------- /external/date/test/date_test/last.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/date_test/last.pass.cpp -------------------------------------------------------------------------------- /external/date/test/date_test/make_time.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/date_test/make_time.pass.cpp -------------------------------------------------------------------------------- /external/date/test/date_test/month.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/date_test/month.pass.cpp -------------------------------------------------------------------------------- /external/date/test/date_test/month_day.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/date_test/month_day.pass.cpp -------------------------------------------------------------------------------- /external/date/test/date_test/month_day_last.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/date_test/month_day_last.pass.cpp -------------------------------------------------------------------------------- /external/date/test/date_test/month_weekday.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/date_test/month_weekday.pass.cpp -------------------------------------------------------------------------------- /external/date/test/date_test/month_weekday_last.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/date_test/month_weekday_last.pass.cpp -------------------------------------------------------------------------------- /external/date/test/date_test/month_weekday_last_less.fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/date_test/month_weekday_last_less.fail.cpp -------------------------------------------------------------------------------- /external/date/test/date_test/month_weekday_less.fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/date_test/month_weekday_less.fail.cpp -------------------------------------------------------------------------------- /external/date/test/date_test/monthpmonth.fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/date_test/monthpmonth.fail.cpp -------------------------------------------------------------------------------- /external/date/test/date_test/months_m_year_month.fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/date_test/months_m_year_month.fail.cpp -------------------------------------------------------------------------------- /external/date/test/date_test/months_m_year_month_day.fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/date_test/months_m_year_month_day.fail.cpp -------------------------------------------------------------------------------- /external/date/test/date_test/monthsmmonth.fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/date_test/monthsmmonth.fail.cpp -------------------------------------------------------------------------------- /external/date/test/date_test/multi_year_duration_addition.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/date_test/multi_year_duration_addition.pass.cpp -------------------------------------------------------------------------------- /external/date/test/date_test/op_div_day_day.fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/date_test/op_div_day_day.fail.cpp -------------------------------------------------------------------------------- /external/date/test/date_test/op_div_int_month.fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/date_test/op_div_int_month.fail.cpp -------------------------------------------------------------------------------- /external/date/test/date_test/op_div_int_year.fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/date_test/op_div_int_year.fail.cpp -------------------------------------------------------------------------------- /external/date/test/date_test/op_div_last_last.fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/date_test/op_div_last_last.fail.cpp -------------------------------------------------------------------------------- /external/date/test/date_test/op_div_month_day.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/date_test/op_div_month_day.pass.cpp -------------------------------------------------------------------------------- /external/date/test/date_test/op_div_month_day_last.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/date_test/op_div_month_day_last.pass.cpp -------------------------------------------------------------------------------- /external/date/test/date_test/op_div_month_day_month_day.fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/date_test/op_div_month_day_month_day.fail.cpp -------------------------------------------------------------------------------- /external/date/test/date_test/op_div_month_month.fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/date_test/op_div_month_month.fail.cpp -------------------------------------------------------------------------------- /external/date/test/date_test/op_div_month_weekday.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/date_test/op_div_month_weekday.pass.cpp -------------------------------------------------------------------------------- /external/date/test/date_test/op_div_month_weekday_last.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/date_test/op_div_month_weekday_last.pass.cpp -------------------------------------------------------------------------------- /external/date/test/date_test/op_div_month_year.fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/date_test/op_div_month_year.fail.cpp -------------------------------------------------------------------------------- /external/date/test/date_test/op_div_survey.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/date_test/op_div_survey.pass.cpp -------------------------------------------------------------------------------- /external/date/test/date_test/op_div_year_month.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/date_test/op_div_year_month.pass.cpp -------------------------------------------------------------------------------- /external/date/test/date_test/op_div_year_month_day.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/date_test/op_div_year_month_day.pass.cpp -------------------------------------------------------------------------------- /external/date/test/date_test/op_div_year_month_day_last.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/date_test/op_div_year_month_day_last.pass.cpp -------------------------------------------------------------------------------- /external/date/test/date_test/op_div_year_month_weekday.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/date_test/op_div_year_month_weekday.pass.cpp -------------------------------------------------------------------------------- /external/date/test/date_test/op_div_year_month_year_month.fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/date_test/op_div_year_month_year_month.fail.cpp -------------------------------------------------------------------------------- /external/date/test/date_test/op_div_year_year.fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/date_test/op_div_year_year.fail.cpp -------------------------------------------------------------------------------- /external/date/test/date_test/parse.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/date_test/parse.pass.cpp -------------------------------------------------------------------------------- /external/date/test/date_test/sizeof.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/date_test/sizeof.pass.cpp -------------------------------------------------------------------------------- /external/date/test/date_test/time_of_day_hours.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/date_test/time_of_day_hours.pass.cpp -------------------------------------------------------------------------------- /external/date/test/date_test/time_of_day_microfortnights.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/date_test/time_of_day_microfortnights.pass.cpp -------------------------------------------------------------------------------- /external/date/test/date_test/time_of_day_milliseconds.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/date_test/time_of_day_milliseconds.pass.cpp -------------------------------------------------------------------------------- /external/date/test/date_test/time_of_day_minutes.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/date_test/time_of_day_minutes.pass.cpp -------------------------------------------------------------------------------- /external/date/test/date_test/time_of_day_nanoseconds.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/date_test/time_of_day_nanoseconds.pass.cpp -------------------------------------------------------------------------------- /external/date/test/date_test/time_of_day_seconds.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/date_test/time_of_day_seconds.pass.cpp -------------------------------------------------------------------------------- /external/date/test/date_test/weekday.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/date_test/weekday.pass.cpp -------------------------------------------------------------------------------- /external/date/test/date_test/weekday_indexed.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/date_test/weekday_indexed.pass.cpp -------------------------------------------------------------------------------- /external/date/test/date_test/weekday_last.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/date_test/weekday_last.pass.cpp -------------------------------------------------------------------------------- /external/date/test/date_test/weekday_lessthan.fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/date_test/weekday_lessthan.fail.cpp -------------------------------------------------------------------------------- /external/date/test/date_test/weekday_sum.fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/date_test/weekday_sum.fail.cpp -------------------------------------------------------------------------------- /external/date/test/date_test/year.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/date_test/year.pass.cpp -------------------------------------------------------------------------------- /external/date/test/date_test/year_month.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/date_test/year_month.pass.cpp -------------------------------------------------------------------------------- /external/date/test/date_test/year_month_day.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/date_test/year_month_day.pass.cpp -------------------------------------------------------------------------------- /external/date/test/date_test/year_month_day_last.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/date_test/year_month_day_last.pass.cpp -------------------------------------------------------------------------------- /external/date/test/date_test/year_month_p_year_month.fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/date_test/year_month_p_year_month.fail.cpp -------------------------------------------------------------------------------- /external/date/test/date_test/year_month_weekday.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/date_test/year_month_weekday.pass.cpp -------------------------------------------------------------------------------- /external/date/test/date_test/year_month_weekday_last.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/date_test/year_month_weekday_last.pass.cpp -------------------------------------------------------------------------------- /external/date/test/date_test/year_p_year.fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/date_test/year_p_year.fail.cpp -------------------------------------------------------------------------------- /external/date/test/date_test/years_m_year.fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/date_test/years_m_year.fail.cpp -------------------------------------------------------------------------------- /external/date/test/date_test/years_m_year_month.fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/date_test/years_m_year_month.fail.cpp -------------------------------------------------------------------------------- /external/date/test/date_test/years_m_year_month_day.fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/date_test/years_m_year_month_day.fail.cpp -------------------------------------------------------------------------------- /external/date/test/iso_week/last.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/iso_week/last.pass.cpp -------------------------------------------------------------------------------- /external/date/test/iso_week/lastweek_weekday.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/iso_week/lastweek_weekday.pass.cpp -------------------------------------------------------------------------------- /external/date/test/iso_week/op_div_survey.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/iso_week/op_div_survey.pass.cpp -------------------------------------------------------------------------------- /external/date/test/iso_week/weekday.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/iso_week/weekday.pass.cpp -------------------------------------------------------------------------------- /external/date/test/iso_week/weekday_lessthan.fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/iso_week/weekday_lessthan.fail.cpp -------------------------------------------------------------------------------- /external/date/test/iso_week/weekday_sum.fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/iso_week/weekday_sum.fail.cpp -------------------------------------------------------------------------------- /external/date/test/iso_week/weeknum.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/iso_week/weeknum.pass.cpp -------------------------------------------------------------------------------- /external/date/test/iso_week/weeknum_p_weeknum.fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/iso_week/weeknum_p_weeknum.fail.cpp -------------------------------------------------------------------------------- /external/date/test/iso_week/weeknum_weekday.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/iso_week/weeknum_weekday.pass.cpp -------------------------------------------------------------------------------- /external/date/test/iso_week/year.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/iso_week/year.pass.cpp -------------------------------------------------------------------------------- /external/date/test/iso_week/year_lastweek.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/iso_week/year_lastweek.pass.cpp -------------------------------------------------------------------------------- /external/date/test/iso_week/year_lastweek_weekday.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/iso_week/year_lastweek_weekday.pass.cpp -------------------------------------------------------------------------------- /external/date/test/iso_week/year_p_year.fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/iso_week/year_p_year.fail.cpp -------------------------------------------------------------------------------- /external/date/test/iso_week/year_weeknum.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/iso_week/year_weeknum.pass.cpp -------------------------------------------------------------------------------- /external/date/test/iso_week/year_weeknum_weekday.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/iso_week/year_weeknum_weekday.pass.cpp -------------------------------------------------------------------------------- /external/date/test/iso_week/years_m_year.fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/iso_week/years_m_year.fail.cpp -------------------------------------------------------------------------------- /external/date/test/just.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/just.pass.cpp -------------------------------------------------------------------------------- /external/date/test/testit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/testit -------------------------------------------------------------------------------- /external/date/test/tz_test/OffsetZone.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/tz_test/OffsetZone.pass.cpp -------------------------------------------------------------------------------- /external/date/test/tz_test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/tz_test/README.md -------------------------------------------------------------------------------- /external/date/test/tz_test/tzdata2015e.txt.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/tz_test/tzdata2015e.txt.zip -------------------------------------------------------------------------------- /external/date/test/tz_test/tzdata2015f.txt.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/tz_test/tzdata2015f.txt.zip -------------------------------------------------------------------------------- /external/date/test/tz_test/tzdata2016c.txt.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/tz_test/tzdata2016c.txt.zip -------------------------------------------------------------------------------- /external/date/test/tz_test/tzdata2016d.txt.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/tz_test/tzdata2016d.txt.zip -------------------------------------------------------------------------------- /external/date/test/tz_test/tzdata2016e.txt.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/tz_test/tzdata2016e.txt.zip -------------------------------------------------------------------------------- /external/date/test/tz_test/tzdata2016f.txt.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/tz_test/tzdata2016f.txt.zip -------------------------------------------------------------------------------- /external/date/test/tz_test/validate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/tz_test/validate.cpp -------------------------------------------------------------------------------- /external/date/test/tz_test/zone.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/tz_test/zone.pass.cpp -------------------------------------------------------------------------------- /external/date/test/tz_test/zoned_time.pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test/tz_test/zoned_time.pass.cpp -------------------------------------------------------------------------------- /external/date/test_fail.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/external/date/test_fail.sh -------------------------------------------------------------------------------- /fonts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/fonts/README.md -------------------------------------------------------------------------------- /fonts/dejavu/DejaVuSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/fonts/dejavu/DejaVuSans-Bold.ttf -------------------------------------------------------------------------------- /fonts/dejavu/DejaVuSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/fonts/dejavu/DejaVuSans.ttf -------------------------------------------------------------------------------- /fonts/dejavu/DejaVuSansMono-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/fonts/dejavu/DejaVuSansMono-Bold.ttf -------------------------------------------------------------------------------- /fonts/dejavu/DejaVuSansMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/fonts/dejavu/DejaVuSansMono-Regular.ttf -------------------------------------------------------------------------------- /fonts/dejavu/DejaVuSansMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/fonts/dejavu/DejaVuSansMono.ttf -------------------------------------------------------------------------------- /fonts/dejavu/DejaVuSerif-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/fonts/dejavu/DejaVuSerif-Bold.ttf -------------------------------------------------------------------------------- /fonts/dejavu/DejaVuSerif-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/fonts/dejavu/DejaVuSerif-Regular.ttf -------------------------------------------------------------------------------- /fonts/dejavu/DejaVuSerif.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/fonts/dejavu/DejaVuSerif.ttf -------------------------------------------------------------------------------- /fonts/ebgaramond/EBGaramond-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/fonts/ebgaramond/EBGaramond-Bold.ttf -------------------------------------------------------------------------------- /fonts/ebgaramond/EBGaramond-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/fonts/ebgaramond/EBGaramond-Regular.ttf -------------------------------------------------------------------------------- /fonts/fonts.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/fonts/fonts.conf -------------------------------------------------------------------------------- /fonts/liberation/LiberationSerif-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/fonts/liberation/LiberationSerif-Bold.ttf -------------------------------------------------------------------------------- /fonts/liberation/LiberationSerif-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/fonts/liberation/LiberationSerif-Regular.ttf -------------------------------------------------------------------------------- /fonts/nimbus/NimbusRoman-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/fonts/nimbus/NimbusRoman-Bold.otf -------------------------------------------------------------------------------- /fonts/nimbus/NimbusRoman-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/fonts/nimbus/NimbusRoman-Regular.otf -------------------------------------------------------------------------------- /fonts/urw/URWBookman-Demi.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/fonts/urw/URWBookman-Demi.otf -------------------------------------------------------------------------------- /fonts/urw/URWBookman-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/fonts/urw/URWBookman-Light.otf -------------------------------------------------------------------------------- /images/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/images/README.md -------------------------------------------------------------------------------- /loader/loader_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/loader/loader_main.cc -------------------------------------------------------------------------------- /main/business/account.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/main/business/account.cc -------------------------------------------------------------------------------- /main/business/account.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/main/business/account.hh -------------------------------------------------------------------------------- /main/business/check.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/main/business/check.cc -------------------------------------------------------------------------------- /main/business/check.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/main/business/check.hh -------------------------------------------------------------------------------- /main/business/customer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/main/business/customer.cc -------------------------------------------------------------------------------- /main/business/customer.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/main/business/customer.hh -------------------------------------------------------------------------------- /main/business/employee.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/main/business/employee.cc -------------------------------------------------------------------------------- /main/business/employee.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/main/business/employee.hh -------------------------------------------------------------------------------- /main/business/inventory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/main/business/inventory.cc -------------------------------------------------------------------------------- /main/business/inventory.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/main/business/inventory.hh -------------------------------------------------------------------------------- /main/business/labor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/main/business/labor.cc -------------------------------------------------------------------------------- /main/business/labor.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/main/business/labor.hh -------------------------------------------------------------------------------- /main/business/sales.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/main/business/sales.cc -------------------------------------------------------------------------------- /main/business/sales.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/main/business/sales.hh -------------------------------------------------------------------------------- /main/business/tips.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/main/business/tips.cc -------------------------------------------------------------------------------- /main/business/tips.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/main/business/tips.hh -------------------------------------------------------------------------------- /main/data/admission.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/main/data/admission.cc -------------------------------------------------------------------------------- /main/data/admission.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/main/data/admission.hh -------------------------------------------------------------------------------- /main/data/archive.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/main/data/archive.cc -------------------------------------------------------------------------------- /main/data/archive.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/main/data/archive.hh -------------------------------------------------------------------------------- /main/data/credit.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/main/data/credit.cc -------------------------------------------------------------------------------- /main/data/credit.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/main/data/credit.hh -------------------------------------------------------------------------------- /main/data/exception.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/main/data/exception.cc -------------------------------------------------------------------------------- /main/data/exception.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/main/data/exception.hh -------------------------------------------------------------------------------- /main/data/expense.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/main/data/expense.cc -------------------------------------------------------------------------------- /main/data/expense.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/main/data/expense.hh -------------------------------------------------------------------------------- /main/data/license_hash.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/main/data/license_hash.cc -------------------------------------------------------------------------------- /main/data/license_hash.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/main/data/license_hash.hh -------------------------------------------------------------------------------- /main/data/locale.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/main/data/locale.cc -------------------------------------------------------------------------------- /main/data/locale.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/main/data/locale.hh -------------------------------------------------------------------------------- /main/data/manager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/main/data/manager.cc -------------------------------------------------------------------------------- /main/data/manager.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/main/data/manager.hh -------------------------------------------------------------------------------- /main/data/settings.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/main/data/settings.cc -------------------------------------------------------------------------------- /main/data/settings.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/main/data/settings.hh -------------------------------------------------------------------------------- /main/data/settings_enums.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/main/data/settings_enums.hh -------------------------------------------------------------------------------- /main/data/system.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/main/data/system.cc -------------------------------------------------------------------------------- /main/data/system.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/main/data/system.hh -------------------------------------------------------------------------------- /main/data/terminal_config_example.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/main/data/terminal_config_example.cc -------------------------------------------------------------------------------- /main/hardware/cdu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/main/hardware/cdu.cc -------------------------------------------------------------------------------- /main/hardware/cdu.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/main/hardware/cdu.hh -------------------------------------------------------------------------------- /main/hardware/cdu_att.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/main/hardware/cdu_att.cc -------------------------------------------------------------------------------- /main/hardware/cdu_att.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/main/hardware/cdu_att.hh -------------------------------------------------------------------------------- /main/hardware/drawer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/main/hardware/drawer.cc -------------------------------------------------------------------------------- /main/hardware/drawer.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/main/hardware/drawer.hh -------------------------------------------------------------------------------- /main/hardware/printer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/main/hardware/printer.cc -------------------------------------------------------------------------------- /main/hardware/printer.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/main/hardware/printer.hh -------------------------------------------------------------------------------- /main/hardware/remote_printer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/main/hardware/remote_printer.cc -------------------------------------------------------------------------------- /main/hardware/remote_printer.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/main/hardware/remote_printer.hh -------------------------------------------------------------------------------- /main/hardware/terminal.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/main/hardware/terminal.cc -------------------------------------------------------------------------------- /main/hardware/terminal.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/main/hardware/terminal.hh -------------------------------------------------------------------------------- /main/ui/chart.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/main/ui/chart.cc -------------------------------------------------------------------------------- /main/ui/chart.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/main/ui/chart.hh -------------------------------------------------------------------------------- /main/ui/labels.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/main/ui/labels.cc -------------------------------------------------------------------------------- /main/ui/labels.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/main/ui/labels.hh -------------------------------------------------------------------------------- /main/ui/report.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/main/ui/report.cc -------------------------------------------------------------------------------- /main/ui/report.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/main/ui/report.hh -------------------------------------------------------------------------------- /main/ui/system_report.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/main/ui/system_report.cc -------------------------------------------------------------------------------- /main/ui/system_salesmix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/main/ui/system_salesmix.cc -------------------------------------------------------------------------------- /packaging/installer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/packaging/installer/README.md -------------------------------------------------------------------------------- /packaging/installer/create-universal-installer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/packaging/installer/create-universal-installer.sh -------------------------------------------------------------------------------- /print/print_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/print/print_main.cc -------------------------------------------------------------------------------- /scripts/arcfix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/scripts/arcfix -------------------------------------------------------------------------------- /scripts/build/setbuildnum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/scripts/build/setbuildnum -------------------------------------------------------------------------------- /scripts/build/vt-tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/scripts/build/vt-tag -------------------------------------------------------------------------------- /scripts/build/vtbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/scripts/build/vtbuild -------------------------------------------------------------------------------- /scripts/build/vtclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/scripts/build/vtclean -------------------------------------------------------------------------------- /scripts/get-latest-bins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/scripts/get-latest-bins -------------------------------------------------------------------------------- /scripts/install/installer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/scripts/install/installer -------------------------------------------------------------------------------- /scripts/install/installs/inst-lesstif.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/scripts/install/installs/inst-lesstif.sh -------------------------------------------------------------------------------- /scripts/install/installs/inst-scripts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/scripts/install/installs/inst-scripts.sh -------------------------------------------------------------------------------- /scripts/install/installs/inst-sudo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/scripts/install/installs/inst-sudo.sh -------------------------------------------------------------------------------- /scripts/install/installs/inst-user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/scripts/install/installs/inst-user.sh -------------------------------------------------------------------------------- /scripts/install/installs/inst-viewtouch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/scripts/install/installs/inst-viewtouch.sh -------------------------------------------------------------------------------- /scripts/install/installs/inst-xf86.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/scripts/install/installs/inst-xf86.sh -------------------------------------------------------------------------------- /scripts/install/installs/viewtouch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/scripts/install/installs/viewtouch.sh -------------------------------------------------------------------------------- /scripts/install/installs/vt_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/scripts/install/installs/vt_install.sh -------------------------------------------------------------------------------- /scripts/install/installs/vtstart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/scripts/install/installs/vtstart.sh -------------------------------------------------------------------------------- /scripts/install/vt_install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/scripts/install/vt_install -------------------------------------------------------------------------------- /scripts/install/vtinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/scripts/install/vtinst -------------------------------------------------------------------------------- /scripts/maintenance/backup-viewtouch-dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/scripts/maintenance/backup-viewtouch-dat -------------------------------------------------------------------------------- /scripts/maintenance/rotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/scripts/maintenance/rotate -------------------------------------------------------------------------------- /scripts/maintenance/vt_backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/scripts/maintenance/vt_backup -------------------------------------------------------------------------------- /scripts/maintenance/vt_ping: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/scripts/maintenance/vt_ping -------------------------------------------------------------------------------- /scripts/maintenance/vt_pingcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/scripts/maintenance/vt_pingcheck -------------------------------------------------------------------------------- /scripts/maintenance/vtsave: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/scripts/maintenance/vtsave -------------------------------------------------------------------------------- /scripts/system/keeprunning: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/scripts/system/keeprunning -------------------------------------------------------------------------------- /scripts/system/keeprunningcron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/scripts/system/keeprunningcron -------------------------------------------------------------------------------- /scripts/system/lpd-restart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/scripts/system/lpd-restart -------------------------------------------------------------------------------- /scripts/system/reverse-ssh-daemon.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/scripts/system/reverse-ssh-daemon.service -------------------------------------------------------------------------------- /scripts/system/runonce: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/scripts/system/runonce -------------------------------------------------------------------------------- /scripts/system/vt_shutdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/scripts/system/vt_shutdown -------------------------------------------------------------------------------- /scripts/system/vtrestart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/scripts/system/vtrestart -------------------------------------------------------------------------------- /scripts/system/vtrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/scripts/system/vtrun -------------------------------------------------------------------------------- /scripts/system/vtstart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/scripts/system/vtstart.sh -------------------------------------------------------------------------------- /scripts/tools/appproc.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/scripts/tools/appproc.pl -------------------------------------------------------------------------------- /scripts/tools/callcenter-test.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/scripts/tools/callcenter-test.pl -------------------------------------------------------------------------------- /scripts/tools/callcenter.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/scripts/tools/callcenter.pl -------------------------------------------------------------------------------- /scripts/tools/ccprocess.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/scripts/tools/ccprocess.pl -------------------------------------------------------------------------------- /scripts/tools/dat2txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/scripts/tools/dat2txt -------------------------------------------------------------------------------- /scripts/tools/generic_char.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/scripts/tools/generic_char.sh -------------------------------------------------------------------------------- /scripts/tools/getmid.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/scripts/tools/getmid.cc -------------------------------------------------------------------------------- /scripts/tools/gplreplace.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/scripts/tools/gplreplace.sed -------------------------------------------------------------------------------- /scripts/tools/openterm_server.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/scripts/tools/openterm_server.cgi -------------------------------------------------------------------------------- /scripts/tools/packagedata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/scripts/tools/packagedata.sh -------------------------------------------------------------------------------- /scripts/tools/packagerelease: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/scripts/tools/packagerelease -------------------------------------------------------------------------------- /scripts/tools/paynow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/scripts/tools/paynow -------------------------------------------------------------------------------- /scripts/tools/remote_start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/scripts/tools/remote_start -------------------------------------------------------------------------------- /scripts/tools/reportdebugs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/scripts/tools/reportdebugs -------------------------------------------------------------------------------- /scripts/tools/update-client: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/scripts/tools/update-client -------------------------------------------------------------------------------- /scripts/tools/update-server.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/scripts/tools/update-server.cgi -------------------------------------------------------------------------------- /scripts/tools/usercount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/scripts/tools/usercount -------------------------------------------------------------------------------- /scripts/tools/vt_data.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/scripts/tools/vt_data.pl -------------------------------------------------------------------------------- /scripts/tools/vt_openterm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/scripts/tools/vt_openterm -------------------------------------------------------------------------------- /scripts/tools/vt_reverse_ssh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/scripts/tools/vt_reverse_ssh -------------------------------------------------------------------------------- /scripts/tools/vt_reverse_ssh_setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/scripts/tools/vt_reverse_ssh_setup -------------------------------------------------------------------------------- /scripts/tools/vt_ssh_security: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/scripts/tools/vt_ssh_security -------------------------------------------------------------------------------- /scripts/tools/vtcommands.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/scripts/tools/vtcommands.pl -------------------------------------------------------------------------------- /src/core/basic.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/src/core/basic.hh -------------------------------------------------------------------------------- /src/core/conf_file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/src/core/conf_file.cc -------------------------------------------------------------------------------- /src/core/conf_file.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/src/core/conf_file.hh -------------------------------------------------------------------------------- /src/core/crash_report.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/src/core/crash_report.cc -------------------------------------------------------------------------------- /src/core/crash_report.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/src/core/crash_report.hh -------------------------------------------------------------------------------- /src/core/data_file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/src/core/data_file.cc -------------------------------------------------------------------------------- /src/core/data_file.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/src/core/data_file.hh -------------------------------------------------------------------------------- /src/core/data_persistence_manager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/src/core/data_persistence_manager.cc -------------------------------------------------------------------------------- /src/core/data_persistence_manager.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/src/core/data_persistence_manager.hh -------------------------------------------------------------------------------- /src/core/debug.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/src/core/debug.cc -------------------------------------------------------------------------------- /src/core/debug.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/src/core/debug.hh -------------------------------------------------------------------------------- /src/core/error_handler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/src/core/error_handler.cc -------------------------------------------------------------------------------- /src/core/error_handler.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/src/core/error_handler.hh -------------------------------------------------------------------------------- /src/core/generic_char.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/src/core/generic_char.cc -------------------------------------------------------------------------------- /src/core/generic_char.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/src/core/generic_char.hh -------------------------------------------------------------------------------- /src/core/image_data.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/src/core/image_data.cc -------------------------------------------------------------------------------- /src/core/image_data.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/src/core/image_data.hh -------------------------------------------------------------------------------- /src/core/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/src/core/inttypes.h -------------------------------------------------------------------------------- /src/core/list_utility.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/src/core/list_utility.hh -------------------------------------------------------------------------------- /src/core/logger.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/src/core/logger.cc -------------------------------------------------------------------------------- /src/core/logger.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/src/core/logger.hh -------------------------------------------------------------------------------- /src/core/time_info.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/src/core/time_info.cc -------------------------------------------------------------------------------- /src/core/time_info.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/src/core/time_info.hh -------------------------------------------------------------------------------- /src/network/remote_link.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/src/network/remote_link.cc -------------------------------------------------------------------------------- /src/network/remote_link.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/src/network/remote_link.hh -------------------------------------------------------------------------------- /src/network/reverse_ssh_daemon.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/src/network/reverse_ssh_daemon.cc -------------------------------------------------------------------------------- /src/network/reverse_ssh_service.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/src/network/reverse_ssh_service.cc -------------------------------------------------------------------------------- /src/network/reverse_ssh_service.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/src/network/reverse_ssh_service.hh -------------------------------------------------------------------------------- /src/network/socket.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/src/network/socket.cc -------------------------------------------------------------------------------- /src/network/socket.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/src/network/socket.hh -------------------------------------------------------------------------------- /src/network/vt_ccq_pipe.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/src/network/vt_ccq_pipe.cc -------------------------------------------------------------------------------- /src/network/vt_ccq_pipe.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/src/network/vt_ccq_pipe.hh -------------------------------------------------------------------------------- /src/utils/fntrace.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/src/utils/fntrace.cc -------------------------------------------------------------------------------- /src/utils/fntrace.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/src/utils/fntrace.hh -------------------------------------------------------------------------------- /src/utils/font_check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/src/utils/font_check -------------------------------------------------------------------------------- /src/utils/font_check.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/src/utils/font_check.cc -------------------------------------------------------------------------------- /src/utils/input_validation.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/src/utils/input_validation.cc -------------------------------------------------------------------------------- /src/utils/input_validation.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/src/utils/input_validation.hh -------------------------------------------------------------------------------- /src/utils/memory_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/src/utils/memory_utils.cc -------------------------------------------------------------------------------- /src/utils/memory_utils.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/src/utils/memory_utils.hh -------------------------------------------------------------------------------- /src/utils/modern_cpp_example.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/src/utils/modern_cpp_example.cc -------------------------------------------------------------------------------- /src/utils/safe_string_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/src/utils/safe_string_utils.cc -------------------------------------------------------------------------------- /src/utils/safe_string_utils.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/src/utils/safe_string_utils.hh -------------------------------------------------------------------------------- /src/utils/string_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/src/utils/string_utils.cc -------------------------------------------------------------------------------- /src/utils/string_utils.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/src/utils/string_utils.hh -------------------------------------------------------------------------------- /src/utils/utility.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/src/utils/utility.cc -------------------------------------------------------------------------------- /src/utils/utility.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/src/utils/utility.hh -------------------------------------------------------------------------------- /src/utils/vt_enum_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/src/utils/vt_enum_utils.cc -------------------------------------------------------------------------------- /src/utils/vt_enum_utils.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/src/utils/vt_enum_utils.hh -------------------------------------------------------------------------------- /src/utils/vt_json_config.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/src/utils/vt_json_config.cc -------------------------------------------------------------------------------- /src/utils/vt_json_config.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/src/utils/vt_json_config.hh -------------------------------------------------------------------------------- /src/utils/vt_logger.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/src/utils/vt_logger.cc -------------------------------------------------------------------------------- /src/utils/vt_logger.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/src/utils/vt_logger.hh -------------------------------------------------------------------------------- /term/layer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/term/layer.cc -------------------------------------------------------------------------------- /term/layer.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/term/layer.hh -------------------------------------------------------------------------------- /term/term_credit.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/term/term_credit.cc -------------------------------------------------------------------------------- /term/term_credit.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/term/term_credit.hh -------------------------------------------------------------------------------- /term/term_credit_cheq.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/term/term_credit_cheq.cc -------------------------------------------------------------------------------- /term/term_credit_cheq.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/term/term_credit_cheq.hh -------------------------------------------------------------------------------- /term/term_credit_mcve.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/term/term_credit_mcve.cc -------------------------------------------------------------------------------- /term/term_credit_mcve.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/term/term_credit_mcve.hh -------------------------------------------------------------------------------- /term/term_dialog.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/term/term_dialog.cc -------------------------------------------------------------------------------- /term/term_dialog.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/term/term_dialog.hh -------------------------------------------------------------------------------- /term/term_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/term/term_main.cc -------------------------------------------------------------------------------- /term/term_view.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/term/term_view.cc -------------------------------------------------------------------------------- /term/term_view.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/term/term_view.hh -------------------------------------------------------------------------------- /term/touch_screen.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/term/touch_screen.cc -------------------------------------------------------------------------------- /term/touch_screen.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/term/touch_screen.hh -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/main_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/tests/main_test.cc -------------------------------------------------------------------------------- /tests/mocks/mock_settings.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/tests/mocks/mock_settings.cc -------------------------------------------------------------------------------- /tests/mocks/mock_settings.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/tests/mocks/mock_settings.hh -------------------------------------------------------------------------------- /tests/mocks/mock_terminal.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/tests/mocks/mock_terminal.cc -------------------------------------------------------------------------------- /tests/mocks/mock_terminal.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/tests/mocks/mock_terminal.hh -------------------------------------------------------------------------------- /tests/unit/test_check.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/tests/unit/test_check.cc -------------------------------------------------------------------------------- /tests/unit/test_coupon_calculations.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/tests/unit/test_coupon_calculations.cc -------------------------------------------------------------------------------- /tests/unit/test_enhanced_logging.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/tests/unit/test_enhanced_logging.cc -------------------------------------------------------------------------------- /tests/unit/test_input_validation.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/tests/unit/test_input_validation.cc -------------------------------------------------------------------------------- /tests/unit/test_memory_modernization.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/tests/unit/test_memory_modernization.cc -------------------------------------------------------------------------------- /tests/unit/test_safe_string_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/tests/unit/test_safe_string_utils.cc -------------------------------------------------------------------------------- /tests/unit/test_settings.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/tests/unit/test_settings.cc -------------------------------------------------------------------------------- /tests/unit/test_utility.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/tests/unit/test_utility.cc -------------------------------------------------------------------------------- /version/main_print_version.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/version/main_print_version.cc -------------------------------------------------------------------------------- /version/vt_version_info.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/version/vt_version_info.cc -------------------------------------------------------------------------------- /version/vt_version_info.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/version/vt_version_info.hh -------------------------------------------------------------------------------- /zone/account_zone.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/zone/account_zone.cc -------------------------------------------------------------------------------- /zone/account_zone.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/zone/account_zone.hh -------------------------------------------------------------------------------- /zone/button_zone.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/zone/button_zone.cc -------------------------------------------------------------------------------- /zone/button_zone.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/zone/button_zone.hh -------------------------------------------------------------------------------- /zone/cdu_zone.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/zone/cdu_zone.cc -------------------------------------------------------------------------------- /zone/cdu_zone.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/zone/cdu_zone.hh -------------------------------------------------------------------------------- /zone/chart_zone.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/zone/chart_zone.cc -------------------------------------------------------------------------------- /zone/chart_zone.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/zone/chart_zone.hh -------------------------------------------------------------------------------- /zone/check_list_zone.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/zone/check_list_zone.cc -------------------------------------------------------------------------------- /zone/check_list_zone.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/zone/check_list_zone.hh -------------------------------------------------------------------------------- /zone/creditcard_list_zone.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/zone/creditcard_list_zone.cc -------------------------------------------------------------------------------- /zone/creditcard_list_zone.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/zone/creditcard_list_zone.hh -------------------------------------------------------------------------------- /zone/dialog_zone.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/zone/dialog_zone.cc -------------------------------------------------------------------------------- /zone/dialog_zone.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/zone/dialog_zone.hh -------------------------------------------------------------------------------- /zone/drawer_zone.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/zone/drawer_zone.cc -------------------------------------------------------------------------------- /zone/drawer_zone.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/zone/drawer_zone.hh -------------------------------------------------------------------------------- /zone/expense_zone.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/zone/expense_zone.cc -------------------------------------------------------------------------------- /zone/expense_zone.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/zone/expense_zone.hh -------------------------------------------------------------------------------- /zone/form_zone.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/zone/form_zone.cc -------------------------------------------------------------------------------- /zone/form_zone.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/zone/form_zone.hh -------------------------------------------------------------------------------- /zone/hardware_zone.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/zone/hardware_zone.cc -------------------------------------------------------------------------------- /zone/hardware_zone.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/zone/hardware_zone.hh -------------------------------------------------------------------------------- /zone/inventory_zone.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/zone/inventory_zone.cc -------------------------------------------------------------------------------- /zone/inventory_zone.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/zone/inventory_zone.hh -------------------------------------------------------------------------------- /zone/labor_zone.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/zone/labor_zone.cc -------------------------------------------------------------------------------- /zone/labor_zone.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/zone/labor_zone.hh -------------------------------------------------------------------------------- /zone/layout_zone.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/zone/layout_zone.cc -------------------------------------------------------------------------------- /zone/layout_zone.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/zone/layout_zone.hh -------------------------------------------------------------------------------- /zone/login_zone.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/zone/login_zone.cc -------------------------------------------------------------------------------- /zone/login_zone.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/zone/login_zone.hh -------------------------------------------------------------------------------- /zone/merchant_zone.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/zone/merchant_zone.cc -------------------------------------------------------------------------------- /zone/merchant_zone.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/zone/merchant_zone.hh -------------------------------------------------------------------------------- /zone/order_zone.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/zone/order_zone.cc -------------------------------------------------------------------------------- /zone/order_zone.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/zone/order_zone.hh -------------------------------------------------------------------------------- /zone/payment_zone.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/zone/payment_zone.cc -------------------------------------------------------------------------------- /zone/payment_zone.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/zone/payment_zone.hh -------------------------------------------------------------------------------- /zone/payout_zone.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/zone/payout_zone.cc -------------------------------------------------------------------------------- /zone/payout_zone.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/zone/payout_zone.hh -------------------------------------------------------------------------------- /zone/phrase_zone.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/zone/phrase_zone.cc -------------------------------------------------------------------------------- /zone/phrase_zone.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/zone/phrase_zone.hh -------------------------------------------------------------------------------- /zone/pos_zone.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/zone/pos_zone.cc -------------------------------------------------------------------------------- /zone/pos_zone.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/zone/pos_zone.hh -------------------------------------------------------------------------------- /zone/printer_zone.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/zone/printer_zone.cc -------------------------------------------------------------------------------- /zone/printer_zone.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/zone/printer_zone.hh -------------------------------------------------------------------------------- /zone/report_zone.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/zone/report_zone.cc -------------------------------------------------------------------------------- /zone/report_zone.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/zone/report_zone.hh -------------------------------------------------------------------------------- /zone/report_zone_quickbooks.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/zone/report_zone_quickbooks.cc -------------------------------------------------------------------------------- /zone/search_zone.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/zone/search_zone.cc -------------------------------------------------------------------------------- /zone/search_zone.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/zone/search_zone.hh -------------------------------------------------------------------------------- /zone/settings_zone.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/zone/settings_zone.cc -------------------------------------------------------------------------------- /zone/settings_zone.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/zone/settings_zone.hh -------------------------------------------------------------------------------- /zone/split_check_zone.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/zone/split_check_zone.cc -------------------------------------------------------------------------------- /zone/split_check_zone.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/zone/split_check_zone.hh -------------------------------------------------------------------------------- /zone/table_zone.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/zone/table_zone.cc -------------------------------------------------------------------------------- /zone/table_zone.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/zone/table_zone.hh -------------------------------------------------------------------------------- /zone/user_edit_zone.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/zone/user_edit_zone.cc -------------------------------------------------------------------------------- /zone/user_edit_zone.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/zone/user_edit_zone.hh -------------------------------------------------------------------------------- /zone/video_zone.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/zone/video_zone.cc -------------------------------------------------------------------------------- /zone/video_zone.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/zone/video_zone.hh -------------------------------------------------------------------------------- /zone/zone.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/zone/zone.cc -------------------------------------------------------------------------------- /zone/zone.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/zone/zone.hh -------------------------------------------------------------------------------- /zone/zone_object.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/zone/zone_object.cc -------------------------------------------------------------------------------- /zone/zone_object.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViewTouch/viewtouch/HEAD/zone/zone_object.hh --------------------------------------------------------------------------------