├── .clang-format ├── .gitattributes ├── .github ├── BUILD.md ├── actions │ ├── centos │ │ ├── Dockerfile │ │ ├── README │ │ ├── action.yml │ │ └── entrypoint.sh │ ├── doxygen │ │ ├── Dockerfile │ │ ├── README │ │ ├── action.yml │ │ └── entrypoint.sh │ ├── notes │ │ ├── Dockerfile │ │ ├── README │ │ ├── action.yml │ │ └── entrypoint.sh │ ├── publish │ │ ├── Dockerfile │ │ ├── README │ │ ├── action.yml │ │ └── entrypoint.sh │ └── s3-upload │ │ ├── Dockerfile │ │ ├── README │ │ ├── action.yml │ │ └── entrypoint.sh └── workflows │ ├── codeql-analysis.yml │ ├── daily-build-check.yml │ ├── github-ci-pull-req.yml │ └── github-ci.yml ├── .gitignore ├── .gitlab-ci.yml ├── CMakeLists.txt ├── COPYING.libressl ├── DXFeed.def ├── DXFeed.sln ├── DXFeed.vcxproj ├── DXFeed.vcxproj.filters ├── DXFeed_64.def ├── DXFeedd.def ├── DXFeedd_64.def ├── LICENSE ├── README.md ├── ReleaseNotes.txt ├── docs ├── Doxyfile ├── Doxyfile.release ├── assets │ └── footer.html └── img │ └── dxfeed_c_logo.svg ├── dxfeed-api-config.sample.toml ├── include ├── DXErrorCodes.h ├── DXFeed.h ├── DXTypes.h ├── EventData.h └── RecordData.h ├── lib └── libressl │ ├── include │ ├── openssl │ │ ├── aes.h │ │ ├── asn1.h │ │ ├── asn1_mac.h │ │ ├── asn1t.h │ │ ├── bio.h │ │ ├── blowfish.h │ │ ├── bn.h │ │ ├── buffer.h │ │ ├── camellia.h │ │ ├── cast.h │ │ ├── chacha.h │ │ ├── cmac.h │ │ ├── comp.h │ │ ├── conf.h │ │ ├── conf_api.h │ │ ├── crypto.h │ │ ├── curve25519.h │ │ ├── des.h │ │ ├── dh.h │ │ ├── dsa.h │ │ ├── dso.h │ │ ├── dtls1.h │ │ ├── ec.h │ │ ├── ecdh.h │ │ ├── ecdsa.h │ │ ├── engine.h │ │ ├── err.h │ │ ├── evp.h │ │ ├── gost.h │ │ ├── hmac.h │ │ ├── idea.h │ │ ├── lhash.h │ │ ├── md4.h │ │ ├── md5.h │ │ ├── modes.h │ │ ├── obj_mac.h │ │ ├── objects.h │ │ ├── ocsp.h │ │ ├── opensslconf.h │ │ ├── opensslfeatures.h │ │ ├── opensslv.h │ │ ├── ossl_typ.h │ │ ├── pem.h │ │ ├── pem2.h │ │ ├── pkcs12.h │ │ ├── pkcs7.h │ │ ├── poly1305.h │ │ ├── rand.h │ │ ├── rc2.h │ │ ├── rc4.h │ │ ├── ripemd.h │ │ ├── rsa.h │ │ ├── safestack.h │ │ ├── sha.h │ │ ├── srtp.h │ │ ├── ssl.h │ │ ├── ssl2.h │ │ ├── ssl23.h │ │ ├── ssl3.h │ │ ├── stack.h │ │ ├── tls1.h │ │ ├── ts.h │ │ ├── txt_db.h │ │ ├── ui.h │ │ ├── ui_compat.h │ │ ├── whrlpool.h │ │ ├── x509.h │ │ ├── x509_vfy.h │ │ └── x509v3.h │ └── tls.h │ ├── mac │ └── x64 │ │ └── libressl.tar.gz │ ├── nix │ └── x64 │ │ └── libressl.tar.gz │ └── win │ ├── x64 │ ├── libcrypto-41.dll │ ├── libcrypto-41.exp │ ├── libcrypto-41.lib │ ├── libcrypto-41_64.dll │ ├── libcrypto-41_64.lib │ ├── libssl-43.dll │ ├── libssl-43.exp │ ├── libssl-43.lib │ ├── libssl-43_64.dll │ ├── libssl-43_64.lib │ ├── libtls-15.dll │ ├── libtls-15.exp │ ├── libtls-15.lib │ ├── libtls-15_64.dll │ ├── libtls-15_64.lib │ └── vcruntime140.dll │ └── x86 │ ├── libcrypto-41.dll │ ├── libcrypto-41.exp │ ├── libcrypto-41.lib │ ├── libssl-43.dll │ ├── libssl-43.exp │ ├── libssl-43.lib │ ├── libtls-15.dll │ ├── libtls-15.exp │ └── libtls-15.lib ├── make_ci.sh ├── make_package.bat ├── make_package.sh ├── samples ├── CandleSample │ ├── CMakeLists.txt │ ├── CandleSample.c │ ├── CandleSample.vcxproj │ └── CandleSample.vcxproj.filters ├── CommandLineSample │ ├── CMakeLists.txt │ ├── CommandLineSample.c │ ├── CommandLineSample.vcxproj │ └── CommandLineSample.vcxproj.filters ├── FullOrderBookSample │ ├── CMakeLists.txt │ ├── FullOrderBookSample.c │ ├── FullOrderBookSample.vcxproj │ └── FullOrderBookSample.vcxproj.filters ├── IncSnapshotConsoleSample │ ├── CMakeLists.txt │ ├── IncSnapshotConsoleSample.c │ ├── IncSnapshotConsoleSample.vcxproj │ └── IncSnapshotConsoleSample.vcxproj.filters ├── PriceLevelBookSample │ ├── CMakeLists.txt │ ├── PriceLevelBookSample.c │ ├── PriceLevelBookSample.vcxproj │ └── PriceLevelBookSample.vcxproj.filters ├── PriceLevelBookSample2 │ ├── CMakeLists.txt │ ├── PriceLevelBookSample2.c │ ├── PriceLevelBookSample2.vcxproj │ └── PriceLevelBookSample2.vcxproj.filters ├── RegionalBookSample │ ├── CMakeLists.txt │ ├── RegionalBookSample.c │ ├── RegionalBookSample.vcxproj │ └── RegionalBookSample.vcxproj.filters └── SnapshotConsoleSample │ ├── CMakeLists.txt │ ├── SnapshotConsoleSample.c │ ├── SnapshotConsoleSample.vcxproj │ └── SnapshotConsoleSample.vcxproj.filters ├── scripts ├── FullTest.args ├── check_build.bat ├── check_build.sh ├── combine_package.bat ├── combine_package.sh ├── run_test.bat ├── run_test.sh └── tests.list ├── src ├── AddressesManager.cpp ├── AddressesManager.h ├── AddressesManager.hpp ├── BinaryQTPComposer.cpp ├── BinaryQTPComposer.hpp ├── BinaryQTPParser.cpp ├── BinaryQTPParser.hpp ├── BufferedIOCommon.c ├── BufferedIOCommon.h ├── BufferedInput.c ├── BufferedInput.h ├── BufferedOutput.c ├── BufferedOutput.h ├── CMakeLists.txt ├── Candle.c ├── Candle.h ├── ClientMessageProcessor.c ├── ClientMessageProcessor.h ├── Configuration.cpp ├── Configuration.h ├── Configuration.hpp ├── ConfigurationDeserializer.c ├── ConfigurationDeserializer.h ├── Connection.cpp ├── Connection.h ├── Connection.hpp ├── ConnectionContextData.c ├── ConnectionContextData.h ├── DXAddressParser.c ├── DXAddressParser.h ├── DXAlgorithms.c ├── DXAlgorithms.h ├── DXErrorCodes.c ├── DXErrorHandling.c ├── DXErrorHandling.h ├── DXFeed.c ├── DXFeed.def.in ├── DXFeed.rc ├── DXFeed_64.def.in ├── DXFeedd.def.in ├── DXFeedd_64.def.in ├── DXMemory.c ├── DXMemory.h ├── DXNetwork.c ├── DXNetwork.h ├── DXPMessageData.c ├── DXPMessageData.h ├── DXProperties.c ├── DXProperties.h ├── DXSockets.c ├── DXSockets.h ├── DXThreads.c ├── DXThreads.h ├── DataStructures.c ├── DataStructures.h ├── Decimal.c ├── Decimal.h ├── EventData.c ├── EventManager.c ├── EventManager.h ├── EventSubscription.cpp ├── EventSubscription.h ├── EventSubscription.hpp ├── HeartbeatPayload.cpp ├── HeartbeatPayload.hpp ├── Linux.c ├── Logger.c ├── Logger.h ├── ObjectArray.c ├── ObjectArray.h ├── PriceLevelBook.c ├── PriceLevelBook.h ├── PriceLevelBookNG.cpp ├── PriceLevelBookNG.h ├── PriceLevelBookNG.hpp ├── PrimitiveTypes.h ├── RecordBuffers.c ├── RecordBuffers.h ├── RecordFieldSetters.c ├── RecordFieldSetters.h ├── RecordTranscoder.c ├── RecordTranscoder.h ├── RegionalBook.c ├── RegionalBook.h ├── Result.hpp ├── ServerMessageProcessor.c ├── ServerMessageProcessor.h ├── Snapshot.c ├── Snapshot.h ├── StringConverter.hpp ├── StringUtils.hpp ├── SymbolCodec.c ├── SymbolCodec.h ├── TaskQueue.c ├── TaskQueue.h ├── TimeMarkUtil.hpp ├── Version.c ├── Version.h ├── Version.h.in ├── WideDecimal.cpp ├── WideDecimal.h ├── WideDecimal.hpp ├── Win32.c └── resource.h ├── tests ├── APITest │ ├── APITest.c │ ├── APITest.vcxproj │ ├── APITest.vcxproj.filters │ └── CMakeLists.txt ├── ConnectionTest │ ├── CMakeLists.txt │ ├── ConnectionTest.c │ ├── ConnectionTest.vcxproj │ └── ConnectionTest.vcxproj.filters ├── FullTest │ ├── CMakeLists.txt │ ├── FullTest.c │ ├── FullTest.vcxproj │ └── FullTest.vcxproj.filters ├── FullTest_dxfeed.bat ├── LastEventTest │ ├── CMakeLists.txt │ ├── LastEventTest.c │ ├── LastEventTest.vcxproj │ └── LastEventTest.vcxproj.filters ├── PerformanceTest │ ├── CMakeLists.txt │ ├── PerformanceTest.c │ ├── PerformanceTest.vcxproj │ └── PerformanceTest.vcxproj.filters ├── QuoteTableTest │ ├── CMakeLists.txt │ ├── QuoteTableTest.c │ ├── QuoteTableTest.vcxproj │ └── QuoteTableTest.vcxproj.filters ├── QuoteTableTest_dxfeed.bat ├── SampleTest │ ├── CMakeLists.txt │ ├── SampleTest.c │ ├── SampleTest.vcxproj │ └── SampleTest.vcxproj.filters ├── Sample_dxfeed_TRADE_IBM.bat ├── UnitTests │ ├── AddressParserTest.c │ ├── AddressParserTest.h │ ├── AlgorithmsTest.c │ ├── AlgorithmsTest.h │ ├── CMakeLists.txt │ ├── CandleTest.c │ ├── CandleTest.h │ ├── ConnectionTest.c │ ├── ConnectionTest.h │ ├── DXNetworkTests.c │ ├── DXNetworkTests.h │ ├── EventDynamicSubscriptionTest.cpp │ ├── EventDynamicSubscriptionTest.h │ ├── EventSubscriptionTest.c │ ├── EventSubscriptionTest.h │ ├── OrderSourceConfigurationTest.c │ ├── OrderSourceConfigurationTest.h │ ├── SnapshotTests.c │ ├── SnapshotTests.h │ ├── SnapshotUnitTests.c │ ├── TestHelper.c │ ├── TestHelper.h │ ├── UnitTests.c │ ├── UnitTests.vcxproj │ └── UnitTests.vcxproj.filters └── UnitTests2 │ ├── CMakeLists.txt │ ├── Main.cpp │ ├── StringUtilsTest.cpp │ └── WideDecimalTest.cpp ├── thirdparty ├── Catch2-2.13.8 │ ├── .clang-format │ ├── .conan │ │ ├── build.py │ │ └── test_package │ │ │ ├── CMakeLists.txt │ │ │ ├── conanfile.py │ │ │ └── test_package.cpp │ ├── .gitattributes │ ├── .github │ │ ├── FUNDING.yml │ │ ├── ISSUE_TEMPLATE │ │ │ ├── bug_report.md │ │ │ └── feature_request.md │ │ └── pull_request_template.md │ ├── .gitignore │ ├── .travis.yml │ ├── BUILD.bazel │ ├── CMake │ │ ├── Catch2Config.cmake.in │ │ ├── FindGcov.cmake │ │ ├── FindLcov.cmake │ │ ├── Findcodecov.cmake │ │ ├── MiscFunctions.cmake │ │ ├── catch2.pc.in │ │ └── llvm-cov-wrapper │ ├── CMakeLists.txt │ ├── CODE_OF_CONDUCT.md │ ├── LICENSE.txt │ ├── README.md │ ├── WORKSPACE │ ├── appveyor.yml │ ├── artwork │ │ ├── catch2-c-logo.png │ │ ├── catch2-hand-logo.png │ │ └── catch2-logo-small.png │ ├── codecov.yml │ ├── conanfile.py │ ├── contrib │ │ ├── Catch.cmake │ │ ├── CatchAddTests.cmake │ │ ├── ParseAndAddCatchTests.cmake │ │ ├── gdbinit │ │ └── lldbinit │ ├── docs │ │ ├── Readme.md │ │ ├── assertions.md │ │ ├── benchmarks.md │ │ ├── ci-and-misc.md │ │ ├── cmake-integration.md │ │ ├── command-line.md │ │ ├── commercial-users.md │ │ ├── configuration.md │ │ ├── contributing.md │ │ ├── deprecations.md │ │ ├── event-listeners.md │ │ ├── generators.md │ │ ├── limitations.md │ │ ├── list-of-examples.md │ │ ├── logging.md │ │ ├── matchers.md │ │ ├── opensource-users.md │ │ ├── other-macros.md │ │ ├── own-main.md │ │ ├── release-notes.md │ │ ├── release-process.md │ │ ├── reporters.md │ │ ├── slow-compiles.md │ │ ├── test-cases-and-sections.md │ │ ├── test-fixtures.md │ │ ├── tostring.md │ │ ├── tutorial.md │ │ └── why-catch.md │ ├── examples │ │ ├── 000-CatchMain.cpp │ │ ├── 010-TestCase.cpp │ │ ├── 020-TestCase-1.cpp │ │ ├── 020-TestCase-2.cpp │ │ ├── 030-Asn-Require-Check.cpp │ │ ├── 100-Fix-Section.cpp │ │ ├── 110-Fix-ClassFixture.cpp │ │ ├── 120-Bdd-ScenarioGivenWhenThen.cpp │ │ ├── 200-Rpt-CatchMain.cpp │ │ ├── 207-Rpt-TeamCityReporter.cpp │ │ ├── 210-Evt-EventListeners.cpp │ │ ├── 231-Cfg-OutputStreams.cpp │ │ ├── 300-Gen-OwnGenerator.cpp │ │ ├── 301-Gen-MapTypeConversion.cpp │ │ ├── 302-Gen-Table.cpp │ │ ├── 310-Gen-VariablesInGenerators.cpp │ │ ├── 311-Gen-CustomCapture.cpp │ │ └── CMakeLists.txt │ ├── include │ │ ├── catch.hpp │ │ ├── catch_with_main.hpp │ │ ├── external │ │ │ └── clara.hpp │ │ ├── internal │ │ │ ├── benchmark │ │ │ │ ├── catch_benchmark.hpp │ │ │ │ ├── catch_benchmarking_all.hpp │ │ │ │ ├── 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.hpp │ │ │ │ │ ├── catch_benchmark_function.hpp │ │ │ │ │ ├── catch_complete_invoke.hpp │ │ │ │ │ ├── catch_estimate_clock.hpp │ │ │ │ │ ├── catch_measure.hpp │ │ │ │ │ ├── catch_repeat.hpp │ │ │ │ │ ├── catch_run_for_at_least.hpp │ │ │ │ │ ├── catch_stats.cpp │ │ │ │ │ ├── catch_stats.hpp │ │ │ │ │ └── catch_timing.hpp │ │ │ ├── catch_approx.cpp │ │ │ ├── catch_approx.h │ │ │ ├── catch_assertionhandler.cpp │ │ │ ├── catch_assertionhandler.h │ │ │ ├── catch_assertioninfo.h │ │ │ ├── catch_assertionresult.cpp │ │ │ ├── catch_assertionresult.h │ │ │ ├── catch_capture.hpp │ │ │ ├── catch_capture_matchers.cpp │ │ │ ├── catch_capture_matchers.h │ │ │ ├── catch_clara.h │ │ │ ├── catch_commandline.cpp │ │ │ ├── catch_commandline.h │ │ │ ├── catch_common.cpp │ │ │ ├── catch_common.h │ │ │ ├── catch_compiler_capabilities.h │ │ │ ├── catch_config.cpp │ │ │ ├── catch_config.hpp │ │ │ ├── catch_config_uncaught_exceptions.hpp │ │ │ ├── catch_console_colour.cpp │ │ │ ├── catch_console_colour.h │ │ │ ├── catch_context.cpp │ │ │ ├── catch_context.h │ │ │ ├── catch_debug_console.cpp │ │ │ ├── catch_debug_console.h │ │ │ ├── catch_debugger.cpp │ │ │ ├── catch_debugger.h │ │ │ ├── catch_decomposer.cpp │ │ │ ├── catch_decomposer.h │ │ │ ├── catch_default_main.hpp │ │ │ ├── catch_enforce.cpp │ │ │ ├── catch_enforce.h │ │ │ ├── catch_enum_values_registry.cpp │ │ │ ├── catch_enum_values_registry.h │ │ │ ├── catch_errno_guard.cpp │ │ │ ├── catch_errno_guard.h │ │ │ ├── catch_exception_translator_registry.cpp │ │ │ ├── catch_exception_translator_registry.h │ │ │ ├── catch_external_interfaces.h │ │ │ ├── catch_fatal_condition.cpp │ │ │ ├── catch_fatal_condition.h │ │ │ ├── catch_generators.cpp │ │ │ ├── catch_generators.hpp │ │ │ ├── catch_generators_generic.hpp │ │ │ ├── catch_generators_specific.hpp │ │ │ ├── catch_impl.hpp │ │ │ ├── catch_interfaces_capture.cpp │ │ │ ├── catch_interfaces_capture.h │ │ │ ├── catch_interfaces_config.cpp │ │ │ ├── catch_interfaces_config.h │ │ │ ├── catch_interfaces_enum_values_registry.h │ │ │ ├── catch_interfaces_exception.cpp │ │ │ ├── catch_interfaces_exception.h │ │ │ ├── catch_interfaces_generatortracker.h │ │ │ ├── catch_interfaces_registry_hub.cpp │ │ │ ├── catch_interfaces_registry_hub.h │ │ │ ├── catch_interfaces_reporter.cpp │ │ │ ├── catch_interfaces_reporter.h │ │ │ ├── catch_interfaces_runner.cpp │ │ │ ├── catch_interfaces_runner.h │ │ │ ├── catch_interfaces_tag_alias_registry.h │ │ │ ├── catch_interfaces_testcase.cpp │ │ │ ├── catch_interfaces_testcase.h │ │ │ ├── catch_leak_detector.cpp │ │ │ ├── catch_leak_detector.h │ │ │ ├── catch_list.cpp │ │ │ ├── catch_list.h │ │ │ ├── catch_matchers.cpp │ │ │ ├── catch_matchers.h │ │ │ ├── catch_matchers_exception.cpp │ │ │ ├── catch_matchers_exception.hpp │ │ │ ├── catch_matchers_floating.cpp │ │ │ ├── catch_matchers_floating.h │ │ │ ├── catch_matchers_generic.cpp │ │ │ ├── catch_matchers_generic.hpp │ │ │ ├── catch_matchers_string.cpp │ │ │ ├── catch_matchers_string.h │ │ │ ├── catch_matchers_vector.h │ │ │ ├── catch_message.cpp │ │ │ ├── catch_message.h │ │ │ ├── catch_meta.hpp │ │ │ ├── catch_objc.hpp │ │ │ ├── catch_objc_arc.hpp │ │ │ ├── catch_option.hpp │ │ │ ├── catch_output_redirect.cpp │ │ │ ├── catch_output_redirect.h │ │ │ ├── catch_platform.h │ │ │ ├── catch_polyfills.cpp │ │ │ ├── catch_polyfills.hpp │ │ │ ├── catch_preprocessor.hpp │ │ │ ├── catch_random_number_generator.cpp │ │ │ ├── catch_random_number_generator.h │ │ │ ├── catch_reenable_warnings.h │ │ │ ├── catch_registry_hub.cpp │ │ │ ├── catch_reporter_registrars.hpp │ │ │ ├── catch_reporter_registry.cpp │ │ │ ├── catch_reporter_registry.h │ │ │ ├── catch_result_type.cpp │ │ │ ├── catch_result_type.h │ │ │ ├── catch_run_context.cpp │ │ │ ├── catch_run_context.h │ │ │ ├── catch_section.cpp │ │ │ ├── catch_section.h │ │ │ ├── catch_section_info.cpp │ │ │ ├── catch_section_info.h │ │ │ ├── catch_session.cpp │ │ │ ├── catch_session.h │ │ │ ├── catch_singletons.cpp │ │ │ ├── catch_singletons.hpp │ │ │ ├── catch_startup_exception_registry.cpp │ │ │ ├── catch_startup_exception_registry.h │ │ │ ├── catch_stream.cpp │ │ │ ├── catch_stream.h │ │ │ ├── catch_string_manip.cpp │ │ │ ├── catch_string_manip.h │ │ │ ├── catch_stringref.cpp │ │ │ ├── catch_stringref.h │ │ │ ├── catch_suppress_warnings.h │ │ │ ├── catch_tag_alias.cpp │ │ │ ├── catch_tag_alias.h │ │ │ ├── catch_tag_alias_autoregistrar.cpp │ │ │ ├── catch_tag_alias_autoregistrar.h │ │ │ ├── catch_tag_alias_registry.cpp │ │ │ ├── catch_tag_alias_registry.h │ │ │ ├── catch_test_case_info.cpp │ │ │ ├── catch_test_case_info.h │ │ │ ├── catch_test_case_registry_impl.cpp │ │ │ ├── catch_test_case_registry_impl.h │ │ │ ├── catch_test_case_tracker.cpp │ │ │ ├── catch_test_case_tracker.h │ │ │ ├── catch_test_registry.cpp │ │ │ ├── catch_test_registry.h │ │ │ ├── catch_test_spec.cpp │ │ │ ├── catch_test_spec.h │ │ │ ├── catch_test_spec_parser.cpp │ │ │ ├── catch_test_spec_parser.h │ │ │ ├── catch_text.h │ │ │ ├── catch_timer.cpp │ │ │ ├── catch_timer.h │ │ │ ├── catch_to_string.hpp │ │ │ ├── catch_tostring.cpp │ │ │ ├── catch_tostring.h │ │ │ ├── catch_totals.cpp │ │ │ ├── catch_totals.h │ │ │ ├── catch_uncaught_exceptions.cpp │ │ │ ├── catch_uncaught_exceptions.h │ │ │ ├── catch_user_interfaces.h │ │ │ ├── catch_version.cpp │ │ │ ├── catch_version.h │ │ │ ├── catch_wildcard_pattern.cpp │ │ │ ├── catch_wildcard_pattern.h │ │ │ ├── catch_windows_h_proxy.h │ │ │ ├── catch_xmlwriter.cpp │ │ │ └── catch_xmlwriter.h │ │ └── reporters │ │ │ ├── catch_reporter_automake.hpp │ │ │ ├── catch_reporter_bases.cpp │ │ │ ├── catch_reporter_bases.hpp │ │ │ ├── catch_reporter_compact.cpp │ │ │ ├── catch_reporter_compact.h │ │ │ ├── catch_reporter_console.cpp │ │ │ ├── catch_reporter_console.h │ │ │ ├── catch_reporter_junit.cpp │ │ │ ├── catch_reporter_junit.h │ │ │ ├── catch_reporter_listening.cpp │ │ │ ├── catch_reporter_listening.h │ │ │ ├── catch_reporter_sonarqube.hpp │ │ │ ├── catch_reporter_tap.hpp │ │ │ ├── catch_reporter_teamcity.hpp │ │ │ ├── catch_reporter_xml.cpp │ │ │ └── catch_reporter_xml.h │ ├── misc │ │ ├── CMakeLists.txt │ │ ├── appveyorBuildConfigurationScript.bat │ │ ├── appveyorMergeCoverageScript.py │ │ ├── appveyorTestRunScript.bat │ │ ├── coverage-helper.cpp │ │ └── installOpenCppCoverage.ps1 │ ├── projects │ │ ├── CMakeLists.txt │ │ ├── ExtraTests │ │ │ ├── CMakeLists.txt │ │ │ ├── ToDo.txt │ │ │ ├── X01-PrefixedMacros.cpp │ │ │ ├── X02-DisabledMacros.cpp │ │ │ ├── X03-DisabledExceptions-DefaultHandler.cpp │ │ │ ├── X04-DisabledExceptions-CustomHandler.cpp │ │ │ ├── X10-FallbackStringifier.cpp │ │ │ ├── X11-DisableStringification.cpp │ │ │ ├── X12-CustomDebugBreakMacro.cpp │ │ │ ├── X20-BenchmarkingMacros.cpp │ │ │ └── X90-WindowsHeaderInclusion.cpp │ │ ├── SelfTest │ │ │ ├── Baselines │ │ │ │ ├── automake.std.approved.txt │ │ │ │ ├── compact.sw.approved.txt │ │ │ │ ├── console.std.approved.txt │ │ │ │ ├── console.sw.approved.txt │ │ │ │ ├── console.swa4.approved.txt │ │ │ │ ├── junit.sw.approved.txt │ │ │ │ ├── sonarqube.sw.approved.txt │ │ │ │ └── xml.sw.approved.txt │ │ │ ├── CompileTimePerfTests │ │ │ │ ├── 10.tests.cpp │ │ │ │ ├── 100.tests.cpp │ │ │ │ └── All.tests.cpp │ │ │ ├── IntrospectiveTests │ │ │ │ ├── CmdLine.tests.cpp │ │ │ │ ├── Details.tests.cpp │ │ │ │ ├── GeneratorsImpl.tests.cpp │ │ │ │ ├── InternalBenchmark.tests.cpp │ │ │ │ ├── PartTracker.tests.cpp │ │ │ │ ├── RandomNumberGeneration.tests.cpp │ │ │ │ ├── String.tests.cpp │ │ │ │ ├── StringManip.tests.cpp │ │ │ │ ├── Tag.tests.cpp │ │ │ │ ├── ToString.tests.cpp │ │ │ │ └── Xml.tests.cpp │ │ │ ├── Misc │ │ │ │ ├── invalid-test-names.input │ │ │ │ ├── plain-old-tests.input │ │ │ │ └── special-characters-in-file.input │ │ │ ├── SurrogateCpps │ │ │ │ ├── catch_console_colour.cpp │ │ │ │ ├── catch_debugger.cpp │ │ │ │ ├── catch_interfaces_reporter.cpp │ │ │ │ ├── catch_option.cpp │ │ │ │ ├── catch_stream.cpp │ │ │ │ ├── catch_test_case_tracker.cpp │ │ │ │ ├── catch_test_spec.cpp │ │ │ │ └── catch_xmlwriter.cpp │ │ │ ├── TestMain.cpp │ │ │ ├── TimingTests │ │ │ │ └── Sleep.tests.cpp │ │ │ ├── UsageTests │ │ │ │ ├── Approx.tests.cpp │ │ │ │ ├── BDD.tests.cpp │ │ │ │ ├── Benchmark.tests.cpp │ │ │ │ ├── Class.tests.cpp │ │ │ │ ├── Compilation.tests.cpp │ │ │ │ ├── Condition.tests.cpp │ │ │ │ ├── Decomposition.tests.cpp │ │ │ │ ├── EnumToString.tests.cpp │ │ │ │ ├── Exception.tests.cpp │ │ │ │ ├── Generators.tests.cpp │ │ │ │ ├── Matchers.tests.cpp │ │ │ │ ├── Message.tests.cpp │ │ │ │ ├── Misc.tests.cpp │ │ │ │ ├── ToStringByte.tests.cpp │ │ │ │ ├── ToStringChrono.tests.cpp │ │ │ │ ├── ToStringGeneral.tests.cpp │ │ │ │ ├── ToStringOptional.tests.cpp │ │ │ │ ├── ToStringPair.tests.cpp │ │ │ │ ├── ToStringTuple.tests.cpp │ │ │ │ ├── ToStringVariant.tests.cpp │ │ │ │ ├── ToStringVector.tests.cpp │ │ │ │ ├── ToStringWhich.tests.cpp │ │ │ │ ├── Tricky.tests.cpp │ │ │ │ └── VariadicMacros.tests.cpp │ │ │ └── WarnAboutNoTests.cmake │ │ ├── TestScripts │ │ │ └── testRandomOrder.py │ │ └── XCode │ │ │ └── OCTest │ │ │ ├── OCTest.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ ├── OCTest │ │ │ ├── CatchOCTestCase.h │ │ │ ├── CatchOCTestCase.mm │ │ │ ├── Main.mm │ │ │ ├── OCTest.1 │ │ │ ├── OCTest.mm │ │ │ ├── TestObj.h │ │ │ └── TestObj.m │ │ │ └── catch_objc_impl.mm │ ├── scripts │ │ ├── approvalTests.py │ │ ├── approve.py │ │ ├── benchmarkCompile.py │ │ ├── benchmarkRunner.py │ │ ├── developBuild.py │ │ ├── embed.py │ │ ├── embedClara.py │ │ ├── extractFeaturesFromReleaseNotes.py │ │ ├── fixWhitespace.py │ │ ├── generateSingleHeader.py │ │ ├── majorRelease.py │ │ ├── minorRelease.py │ │ ├── patchRelease.py │ │ ├── releaseCommon.py │ │ ├── releaseNotes.py │ │ ├── scriptCommon.py │ │ ├── updateDocumentToC.py │ │ └── updateWandbox.py │ ├── single_include │ │ └── catch2 │ │ │ ├── catch.hpp │ │ │ ├── catch_reporter_automake.hpp │ │ │ ├── catch_reporter_sonarqube.hpp │ │ │ ├── catch_reporter_tap.hpp │ │ │ └── catch_reporter_teamcity.hpp │ ├── src │ │ └── catch_with_main.cpp │ └── third_party │ │ └── clara.hpp ├── boost-1_75 │ └── boost │ │ ├── config.hpp │ │ ├── config │ │ ├── abi │ │ │ ├── borland_prefix.hpp │ │ │ ├── borland_suffix.hpp │ │ │ ├── msvc_prefix.hpp │ │ │ └── msvc_suffix.hpp │ │ ├── abi_prefix.hpp │ │ ├── abi_suffix.hpp │ │ ├── auto_link.hpp │ │ ├── compiler │ │ │ ├── borland.hpp │ │ │ ├── clang.hpp │ │ │ ├── codegear.hpp │ │ │ ├── comeau.hpp │ │ │ ├── common_edg.hpp │ │ │ ├── compaq_cxx.hpp │ │ │ ├── cray.hpp │ │ │ ├── diab.hpp │ │ │ ├── digitalmars.hpp │ │ │ ├── gcc.hpp │ │ │ ├── gcc_xml.hpp │ │ │ ├── greenhills.hpp │ │ │ ├── hp_acc.hpp │ │ │ ├── intel.hpp │ │ │ ├── kai.hpp │ │ │ ├── metrowerks.hpp │ │ │ ├── mpw.hpp │ │ │ ├── nvcc.hpp │ │ │ ├── pathscale.hpp │ │ │ ├── pgi.hpp │ │ │ ├── sgi_mipspro.hpp │ │ │ ├── sunpro_cc.hpp │ │ │ ├── vacpp.hpp │ │ │ ├── visualc.hpp │ │ │ ├── xlcpp.hpp │ │ │ └── xlcpp_zos.hpp │ │ ├── detail │ │ │ ├── posix_features.hpp │ │ │ ├── select_compiler_config.hpp │ │ │ ├── select_platform_config.hpp │ │ │ ├── select_stdlib_config.hpp │ │ │ └── suffix.hpp │ │ ├── header_deprecated.hpp │ │ ├── helper_macros.hpp │ │ ├── no_tr1 │ │ │ ├── cmath.hpp │ │ │ ├── complex.hpp │ │ │ ├── functional.hpp │ │ │ ├── memory.hpp │ │ │ └── utility.hpp │ │ ├── platform │ │ │ ├── aix.hpp │ │ │ ├── amigaos.hpp │ │ │ ├── beos.hpp │ │ │ ├── bsd.hpp │ │ │ ├── cloudabi.hpp │ │ │ ├── cray.hpp │ │ │ ├── cygwin.hpp │ │ │ ├── haiku.hpp │ │ │ ├── hpux.hpp │ │ │ ├── irix.hpp │ │ │ ├── linux.hpp │ │ │ ├── macos.hpp │ │ │ ├── qnxnto.hpp │ │ │ ├── solaris.hpp │ │ │ ├── symbian.hpp │ │ │ ├── vms.hpp │ │ │ ├── vxworks.hpp │ │ │ ├── win32.hpp │ │ │ └── zos.hpp │ │ ├── pragma_message.hpp │ │ ├── requires_threads.hpp │ │ ├── stdlib │ │ │ ├── dinkumware.hpp │ │ │ ├── libcomo.hpp │ │ │ ├── libcpp.hpp │ │ │ ├── libstdcpp3.hpp │ │ │ ├── modena.hpp │ │ │ ├── msl.hpp │ │ │ ├── roguewave.hpp │ │ │ ├── sgi.hpp │ │ │ ├── stlport.hpp │ │ │ ├── vacpp.hpp │ │ │ └── xlcpp_zos.hpp │ │ ├── user.hpp │ │ ├── warning_disable.hpp │ │ └── workaround.hpp │ │ ├── cstdint.hpp │ │ ├── limits.hpp │ │ └── locale │ │ ├── definitions.hpp │ │ ├── encoding_errors.hpp │ │ ├── encoding_utf.hpp │ │ └── utf.hpp └── toml11 │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.md │ ├── cmake │ └── toml11Config.cmake.in │ ├── toml.hpp │ └── toml │ ├── color.hpp │ ├── combinator.hpp │ ├── comments.hpp │ ├── datetime.hpp │ ├── exception.hpp │ ├── from.hpp │ ├── get.hpp │ ├── into.hpp │ ├── lexer.hpp │ ├── literal.hpp │ ├── parser.hpp │ ├── region.hpp │ ├── result.hpp │ ├── serializer.hpp │ ├── source_location.hpp │ ├── storage.hpp │ ├── string.hpp │ ├── traits.hpp │ ├── types.hpp │ ├── utility.hpp │ └── value.hpp └── wrappers └── cpp ├── CMakeLists.txt ├── samples ├── CMakeLists.txt └── ConnectionSample │ ├── CMakeLists.txt │ ├── DXFeedCppWrapperConnectionSample.vcxproj │ ├── DXFeedCppWrapperConnectionSample.vcxproj.filters │ └── main.cpp ├── src ├── CMakeLists.txt ├── Connection.cpp ├── Connection.hpp ├── Error.hpp ├── Event.cpp ├── Event.hpp ├── StringConverter.hpp ├── Subscription.cpp ├── Subscription.hpp └── Utils.hpp └── thirdparty ├── args ├── LICENSE ├── README.md └── args.hxx ├── fmt-8.0.0 ├── LICENSE.rst ├── README.rst ├── include │ └── fmt │ │ ├── args.h │ │ ├── chrono.h │ │ ├── color.h │ │ ├── compile.h │ │ ├── core.h │ │ ├── format-inl.h │ │ ├── format.h │ │ ├── locale.h │ │ ├── os.h │ │ ├── ostream.h │ │ ├── printf.h │ │ ├── ranges.h │ │ └── xchar.h └── src │ ├── fmt.cc │ ├── format.cc │ └── os.cc ├── optional-lite ├── LICENSE.txt ├── README.md └── include │ └── nonstd │ └── optional.hpp ├── string-view-lite ├── LICENSE.txt ├── README.md └── include │ └── nonstd │ └── string_view.hpp └── variant-lite ├── LICENSE.txt ├── README.md └── include └── nonstd └── variant.hpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/BUILD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/.github/BUILD.md -------------------------------------------------------------------------------- /.github/actions/centos/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/.github/actions/centos/Dockerfile -------------------------------------------------------------------------------- /.github/actions/centos/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/actions/centos/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/.github/actions/centos/action.yml -------------------------------------------------------------------------------- /.github/actions/centos/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/.github/actions/centos/entrypoint.sh -------------------------------------------------------------------------------- /.github/actions/doxygen/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/.github/actions/doxygen/Dockerfile -------------------------------------------------------------------------------- /.github/actions/doxygen/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/actions/doxygen/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/.github/actions/doxygen/action.yml -------------------------------------------------------------------------------- /.github/actions/doxygen/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/.github/actions/doxygen/entrypoint.sh -------------------------------------------------------------------------------- /.github/actions/notes/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/.github/actions/notes/Dockerfile -------------------------------------------------------------------------------- /.github/actions/notes/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/actions/notes/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/.github/actions/notes/action.yml -------------------------------------------------------------------------------- /.github/actions/notes/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/.github/actions/notes/entrypoint.sh -------------------------------------------------------------------------------- /.github/actions/publish/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/.github/actions/publish/Dockerfile -------------------------------------------------------------------------------- /.github/actions/publish/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/actions/publish/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/.github/actions/publish/action.yml -------------------------------------------------------------------------------- /.github/actions/publish/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/.github/actions/publish/entrypoint.sh -------------------------------------------------------------------------------- /.github/actions/s3-upload/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/.github/actions/s3-upload/Dockerfile -------------------------------------------------------------------------------- /.github/actions/s3-upload/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/actions/s3-upload/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/.github/actions/s3-upload/action.yml -------------------------------------------------------------------------------- /.github/actions/s3-upload/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/.github/actions/s3-upload/entrypoint.sh -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/daily-build-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/.github/workflows/daily-build-check.yml -------------------------------------------------------------------------------- /.github/workflows/github-ci-pull-req.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/.github/workflows/github-ci-pull-req.yml -------------------------------------------------------------------------------- /.github/workflows/github-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/.github/workflows/github-ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING.libressl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/COPYING.libressl -------------------------------------------------------------------------------- /DXFeed.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/DXFeed.def -------------------------------------------------------------------------------- /DXFeed.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/DXFeed.sln -------------------------------------------------------------------------------- /DXFeed.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/DXFeed.vcxproj -------------------------------------------------------------------------------- /DXFeed.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/DXFeed.vcxproj.filters -------------------------------------------------------------------------------- /DXFeed_64.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/DXFeed_64.def -------------------------------------------------------------------------------- /DXFeedd.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/DXFeedd.def -------------------------------------------------------------------------------- /DXFeedd_64.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/DXFeedd_64.def -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/README.md -------------------------------------------------------------------------------- /ReleaseNotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/ReleaseNotes.txt -------------------------------------------------------------------------------- /docs/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/docs/Doxyfile -------------------------------------------------------------------------------- /docs/Doxyfile.release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/docs/Doxyfile.release -------------------------------------------------------------------------------- /docs/assets/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/docs/assets/footer.html -------------------------------------------------------------------------------- /docs/img/dxfeed_c_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/docs/img/dxfeed_c_logo.svg -------------------------------------------------------------------------------- /dxfeed-api-config.sample.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/dxfeed-api-config.sample.toml -------------------------------------------------------------------------------- /include/DXErrorCodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/include/DXErrorCodes.h -------------------------------------------------------------------------------- /include/DXFeed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/include/DXFeed.h -------------------------------------------------------------------------------- /include/DXTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/include/DXTypes.h -------------------------------------------------------------------------------- /include/EventData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/include/EventData.h -------------------------------------------------------------------------------- /include/RecordData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/include/RecordData.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/aes.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/asn1.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/asn1_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/asn1_mac.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/asn1t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/asn1t.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/bio.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/blowfish.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/bn.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/buffer.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/camellia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/camellia.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/cast.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/chacha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/chacha.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/cmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/cmac.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/comp.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/conf.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/conf_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/conf_api.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/crypto.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/curve25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/curve25519.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/des.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/dh.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/dsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/dsa.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/dso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/dso.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/dtls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/dtls1.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/ec.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/ecdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/ecdh.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/ecdsa.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/engine.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/err.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/evp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/evp.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/gost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/gost.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/hmac.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/idea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/idea.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/lhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/lhash.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/md4.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/md5.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/modes.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/obj_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/obj_mac.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/objects.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/ocsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/ocsp.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/opensslconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/opensslconf.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/opensslfeatures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/opensslfeatures.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/opensslv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/opensslv.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/ossl_typ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/ossl_typ.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/pem.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/pem2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/pem2.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/pkcs12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/pkcs12.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/pkcs7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/pkcs7.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/poly1305.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/rand.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/rc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/rc2.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/rc4.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/ripemd.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/rsa.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/safestack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/safestack.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/sha.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/srtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/srtp.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/ssl.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/ssl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/ssl2.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/ssl23.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/ssl23.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/ssl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/ssl3.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/stack.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/tls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/tls1.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/ts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/ts.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/txt_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/txt_db.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/ui.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/ui_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/ui_compat.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/whrlpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/whrlpool.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/x509.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/x509_vfy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/x509_vfy.h -------------------------------------------------------------------------------- /lib/libressl/include/openssl/x509v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/openssl/x509v3.h -------------------------------------------------------------------------------- /lib/libressl/include/tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/include/tls.h -------------------------------------------------------------------------------- /lib/libressl/mac/x64/libressl.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/mac/x64/libressl.tar.gz -------------------------------------------------------------------------------- /lib/libressl/nix/x64/libressl.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/nix/x64/libressl.tar.gz -------------------------------------------------------------------------------- /lib/libressl/win/x64/libcrypto-41.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/win/x64/libcrypto-41.dll -------------------------------------------------------------------------------- /lib/libressl/win/x64/libcrypto-41.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/win/x64/libcrypto-41.exp -------------------------------------------------------------------------------- /lib/libressl/win/x64/libcrypto-41.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/win/x64/libcrypto-41.lib -------------------------------------------------------------------------------- /lib/libressl/win/x64/libcrypto-41_64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/win/x64/libcrypto-41_64.dll -------------------------------------------------------------------------------- /lib/libressl/win/x64/libcrypto-41_64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/win/x64/libcrypto-41_64.lib -------------------------------------------------------------------------------- /lib/libressl/win/x64/libssl-43.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/win/x64/libssl-43.dll -------------------------------------------------------------------------------- /lib/libressl/win/x64/libssl-43.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/win/x64/libssl-43.exp -------------------------------------------------------------------------------- /lib/libressl/win/x64/libssl-43.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/win/x64/libssl-43.lib -------------------------------------------------------------------------------- /lib/libressl/win/x64/libssl-43_64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/win/x64/libssl-43_64.dll -------------------------------------------------------------------------------- /lib/libressl/win/x64/libssl-43_64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/win/x64/libssl-43_64.lib -------------------------------------------------------------------------------- /lib/libressl/win/x64/libtls-15.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/win/x64/libtls-15.dll -------------------------------------------------------------------------------- /lib/libressl/win/x64/libtls-15.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/win/x64/libtls-15.exp -------------------------------------------------------------------------------- /lib/libressl/win/x64/libtls-15.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/win/x64/libtls-15.lib -------------------------------------------------------------------------------- /lib/libressl/win/x64/libtls-15_64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/win/x64/libtls-15_64.dll -------------------------------------------------------------------------------- /lib/libressl/win/x64/libtls-15_64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/win/x64/libtls-15_64.lib -------------------------------------------------------------------------------- /lib/libressl/win/x64/vcruntime140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/win/x64/vcruntime140.dll -------------------------------------------------------------------------------- /lib/libressl/win/x86/libcrypto-41.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/win/x86/libcrypto-41.dll -------------------------------------------------------------------------------- /lib/libressl/win/x86/libcrypto-41.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/win/x86/libcrypto-41.exp -------------------------------------------------------------------------------- /lib/libressl/win/x86/libcrypto-41.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/win/x86/libcrypto-41.lib -------------------------------------------------------------------------------- /lib/libressl/win/x86/libssl-43.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/win/x86/libssl-43.dll -------------------------------------------------------------------------------- /lib/libressl/win/x86/libssl-43.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/win/x86/libssl-43.exp -------------------------------------------------------------------------------- /lib/libressl/win/x86/libssl-43.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/win/x86/libssl-43.lib -------------------------------------------------------------------------------- /lib/libressl/win/x86/libtls-15.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/win/x86/libtls-15.dll -------------------------------------------------------------------------------- /lib/libressl/win/x86/libtls-15.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/win/x86/libtls-15.exp -------------------------------------------------------------------------------- /lib/libressl/win/x86/libtls-15.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/lib/libressl/win/x86/libtls-15.lib -------------------------------------------------------------------------------- /make_ci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/make_ci.sh -------------------------------------------------------------------------------- /make_package.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/make_package.bat -------------------------------------------------------------------------------- /make_package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/make_package.sh -------------------------------------------------------------------------------- /samples/CandleSample/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/samples/CandleSample/CMakeLists.txt -------------------------------------------------------------------------------- /samples/CandleSample/CandleSample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/samples/CandleSample/CandleSample.c -------------------------------------------------------------------------------- /samples/CandleSample/CandleSample.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/samples/CandleSample/CandleSample.vcxproj -------------------------------------------------------------------------------- /samples/CandleSample/CandleSample.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/samples/CandleSample/CandleSample.vcxproj.filters -------------------------------------------------------------------------------- /samples/CommandLineSample/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/samples/CommandLineSample/CMakeLists.txt -------------------------------------------------------------------------------- /samples/CommandLineSample/CommandLineSample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/samples/CommandLineSample/CommandLineSample.c -------------------------------------------------------------------------------- /samples/CommandLineSample/CommandLineSample.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/samples/CommandLineSample/CommandLineSample.vcxproj -------------------------------------------------------------------------------- /samples/CommandLineSample/CommandLineSample.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/samples/CommandLineSample/CommandLineSample.vcxproj.filters -------------------------------------------------------------------------------- /samples/FullOrderBookSample/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/samples/FullOrderBookSample/CMakeLists.txt -------------------------------------------------------------------------------- /samples/FullOrderBookSample/FullOrderBookSample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/samples/FullOrderBookSample/FullOrderBookSample.c -------------------------------------------------------------------------------- /samples/FullOrderBookSample/FullOrderBookSample.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/samples/FullOrderBookSample/FullOrderBookSample.vcxproj -------------------------------------------------------------------------------- /samples/FullOrderBookSample/FullOrderBookSample.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/samples/FullOrderBookSample/FullOrderBookSample.vcxproj.filters -------------------------------------------------------------------------------- /samples/IncSnapshotConsoleSample/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/samples/IncSnapshotConsoleSample/CMakeLists.txt -------------------------------------------------------------------------------- /samples/IncSnapshotConsoleSample/IncSnapshotConsoleSample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/samples/IncSnapshotConsoleSample/IncSnapshotConsoleSample.c -------------------------------------------------------------------------------- /samples/IncSnapshotConsoleSample/IncSnapshotConsoleSample.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/samples/IncSnapshotConsoleSample/IncSnapshotConsoleSample.vcxproj -------------------------------------------------------------------------------- /samples/PriceLevelBookSample/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/samples/PriceLevelBookSample/CMakeLists.txt -------------------------------------------------------------------------------- /samples/PriceLevelBookSample/PriceLevelBookSample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/samples/PriceLevelBookSample/PriceLevelBookSample.c -------------------------------------------------------------------------------- /samples/PriceLevelBookSample/PriceLevelBookSample.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/samples/PriceLevelBookSample/PriceLevelBookSample.vcxproj -------------------------------------------------------------------------------- /samples/PriceLevelBookSample/PriceLevelBookSample.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/samples/PriceLevelBookSample/PriceLevelBookSample.vcxproj.filters -------------------------------------------------------------------------------- /samples/PriceLevelBookSample2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/samples/PriceLevelBookSample2/CMakeLists.txt -------------------------------------------------------------------------------- /samples/PriceLevelBookSample2/PriceLevelBookSample2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/samples/PriceLevelBookSample2/PriceLevelBookSample2.c -------------------------------------------------------------------------------- /samples/PriceLevelBookSample2/PriceLevelBookSample2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/samples/PriceLevelBookSample2/PriceLevelBookSample2.vcxproj -------------------------------------------------------------------------------- /samples/PriceLevelBookSample2/PriceLevelBookSample2.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/samples/PriceLevelBookSample2/PriceLevelBookSample2.vcxproj.filters -------------------------------------------------------------------------------- /samples/RegionalBookSample/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/samples/RegionalBookSample/CMakeLists.txt -------------------------------------------------------------------------------- /samples/RegionalBookSample/RegionalBookSample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/samples/RegionalBookSample/RegionalBookSample.c -------------------------------------------------------------------------------- /samples/RegionalBookSample/RegionalBookSample.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/samples/RegionalBookSample/RegionalBookSample.vcxproj -------------------------------------------------------------------------------- /samples/RegionalBookSample/RegionalBookSample.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/samples/RegionalBookSample/RegionalBookSample.vcxproj.filters -------------------------------------------------------------------------------- /samples/SnapshotConsoleSample/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/samples/SnapshotConsoleSample/CMakeLists.txt -------------------------------------------------------------------------------- /samples/SnapshotConsoleSample/SnapshotConsoleSample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/samples/SnapshotConsoleSample/SnapshotConsoleSample.c -------------------------------------------------------------------------------- /samples/SnapshotConsoleSample/SnapshotConsoleSample.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/samples/SnapshotConsoleSample/SnapshotConsoleSample.vcxproj -------------------------------------------------------------------------------- /samples/SnapshotConsoleSample/SnapshotConsoleSample.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/samples/SnapshotConsoleSample/SnapshotConsoleSample.vcxproj.filters -------------------------------------------------------------------------------- /scripts/FullTest.args: -------------------------------------------------------------------------------- 1 | mddqa.in.devexperts.com:7400 60 -------------------------------------------------------------------------------- /scripts/check_build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/scripts/check_build.bat -------------------------------------------------------------------------------- /scripts/check_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/scripts/check_build.sh -------------------------------------------------------------------------------- /scripts/combine_package.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/scripts/combine_package.bat -------------------------------------------------------------------------------- /scripts/combine_package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/scripts/combine_package.sh -------------------------------------------------------------------------------- /scripts/run_test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/scripts/run_test.bat -------------------------------------------------------------------------------- /scripts/run_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/scripts/run_test.sh -------------------------------------------------------------------------------- /scripts/tests.list: -------------------------------------------------------------------------------- 1 | FullTest -------------------------------------------------------------------------------- /src/AddressesManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/AddressesManager.cpp -------------------------------------------------------------------------------- /src/AddressesManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/AddressesManager.h -------------------------------------------------------------------------------- /src/AddressesManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/AddressesManager.hpp -------------------------------------------------------------------------------- /src/BinaryQTPComposer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/BinaryQTPComposer.cpp -------------------------------------------------------------------------------- /src/BinaryQTPComposer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/BinaryQTPComposer.hpp -------------------------------------------------------------------------------- /src/BinaryQTPParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/BinaryQTPParser.cpp -------------------------------------------------------------------------------- /src/BinaryQTPParser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/BinaryQTPParser.hpp -------------------------------------------------------------------------------- /src/BufferedIOCommon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/BufferedIOCommon.c -------------------------------------------------------------------------------- /src/BufferedIOCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/BufferedIOCommon.h -------------------------------------------------------------------------------- /src/BufferedInput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/BufferedInput.c -------------------------------------------------------------------------------- /src/BufferedInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/BufferedInput.h -------------------------------------------------------------------------------- /src/BufferedOutput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/BufferedOutput.c -------------------------------------------------------------------------------- /src/BufferedOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/BufferedOutput.h -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/Candle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/Candle.c -------------------------------------------------------------------------------- /src/Candle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/Candle.h -------------------------------------------------------------------------------- /src/ClientMessageProcessor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/ClientMessageProcessor.c -------------------------------------------------------------------------------- /src/ClientMessageProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/ClientMessageProcessor.h -------------------------------------------------------------------------------- /src/Configuration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/Configuration.cpp -------------------------------------------------------------------------------- /src/Configuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/Configuration.h -------------------------------------------------------------------------------- /src/Configuration.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/Configuration.hpp -------------------------------------------------------------------------------- /src/ConfigurationDeserializer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/ConfigurationDeserializer.c -------------------------------------------------------------------------------- /src/ConfigurationDeserializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/ConfigurationDeserializer.h -------------------------------------------------------------------------------- /src/Connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/Connection.cpp -------------------------------------------------------------------------------- /src/Connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/Connection.h -------------------------------------------------------------------------------- /src/Connection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/Connection.hpp -------------------------------------------------------------------------------- /src/ConnectionContextData.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/ConnectionContextData.c -------------------------------------------------------------------------------- /src/ConnectionContextData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/ConnectionContextData.h -------------------------------------------------------------------------------- /src/DXAddressParser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/DXAddressParser.c -------------------------------------------------------------------------------- /src/DXAddressParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/DXAddressParser.h -------------------------------------------------------------------------------- /src/DXAlgorithms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/DXAlgorithms.c -------------------------------------------------------------------------------- /src/DXAlgorithms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/DXAlgorithms.h -------------------------------------------------------------------------------- /src/DXErrorCodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/DXErrorCodes.c -------------------------------------------------------------------------------- /src/DXErrorHandling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/DXErrorHandling.c -------------------------------------------------------------------------------- /src/DXErrorHandling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/DXErrorHandling.h -------------------------------------------------------------------------------- /src/DXFeed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/DXFeed.c -------------------------------------------------------------------------------- /src/DXFeed.def.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/DXFeed.def.in -------------------------------------------------------------------------------- /src/DXFeed.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/DXFeed.rc -------------------------------------------------------------------------------- /src/DXFeed_64.def.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/DXFeed_64.def.in -------------------------------------------------------------------------------- /src/DXFeedd.def.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/DXFeedd.def.in -------------------------------------------------------------------------------- /src/DXFeedd_64.def.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/DXFeedd_64.def.in -------------------------------------------------------------------------------- /src/DXMemory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/DXMemory.c -------------------------------------------------------------------------------- /src/DXMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/DXMemory.h -------------------------------------------------------------------------------- /src/DXNetwork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/DXNetwork.c -------------------------------------------------------------------------------- /src/DXNetwork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/DXNetwork.h -------------------------------------------------------------------------------- /src/DXPMessageData.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/DXPMessageData.c -------------------------------------------------------------------------------- /src/DXPMessageData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/DXPMessageData.h -------------------------------------------------------------------------------- /src/DXProperties.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/DXProperties.c -------------------------------------------------------------------------------- /src/DXProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/DXProperties.h -------------------------------------------------------------------------------- /src/DXSockets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/DXSockets.c -------------------------------------------------------------------------------- /src/DXSockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/DXSockets.h -------------------------------------------------------------------------------- /src/DXThreads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/DXThreads.c -------------------------------------------------------------------------------- /src/DXThreads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/DXThreads.h -------------------------------------------------------------------------------- /src/DataStructures.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/DataStructures.c -------------------------------------------------------------------------------- /src/DataStructures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/DataStructures.h -------------------------------------------------------------------------------- /src/Decimal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/Decimal.c -------------------------------------------------------------------------------- /src/Decimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/Decimal.h -------------------------------------------------------------------------------- /src/EventData.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/EventData.c -------------------------------------------------------------------------------- /src/EventManager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/EventManager.c -------------------------------------------------------------------------------- /src/EventManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/EventManager.h -------------------------------------------------------------------------------- /src/EventSubscription.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/EventSubscription.cpp -------------------------------------------------------------------------------- /src/EventSubscription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/EventSubscription.h -------------------------------------------------------------------------------- /src/EventSubscription.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/EventSubscription.hpp -------------------------------------------------------------------------------- /src/HeartbeatPayload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/HeartbeatPayload.cpp -------------------------------------------------------------------------------- /src/HeartbeatPayload.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/HeartbeatPayload.hpp -------------------------------------------------------------------------------- /src/Linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/Linux.c -------------------------------------------------------------------------------- /src/Logger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/Logger.c -------------------------------------------------------------------------------- /src/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/Logger.h -------------------------------------------------------------------------------- /src/ObjectArray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/ObjectArray.c -------------------------------------------------------------------------------- /src/ObjectArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/ObjectArray.h -------------------------------------------------------------------------------- /src/PriceLevelBook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/PriceLevelBook.c -------------------------------------------------------------------------------- /src/PriceLevelBook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/PriceLevelBook.h -------------------------------------------------------------------------------- /src/PriceLevelBookNG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/PriceLevelBookNG.cpp -------------------------------------------------------------------------------- /src/PriceLevelBookNG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/PriceLevelBookNG.h -------------------------------------------------------------------------------- /src/PriceLevelBookNG.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/PriceLevelBookNG.hpp -------------------------------------------------------------------------------- /src/PrimitiveTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/PrimitiveTypes.h -------------------------------------------------------------------------------- /src/RecordBuffers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/RecordBuffers.c -------------------------------------------------------------------------------- /src/RecordBuffers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/RecordBuffers.h -------------------------------------------------------------------------------- /src/RecordFieldSetters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/RecordFieldSetters.c -------------------------------------------------------------------------------- /src/RecordFieldSetters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/RecordFieldSetters.h -------------------------------------------------------------------------------- /src/RecordTranscoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/RecordTranscoder.c -------------------------------------------------------------------------------- /src/RecordTranscoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/RecordTranscoder.h -------------------------------------------------------------------------------- /src/RegionalBook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/RegionalBook.c -------------------------------------------------------------------------------- /src/RegionalBook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/RegionalBook.h -------------------------------------------------------------------------------- /src/Result.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/Result.hpp -------------------------------------------------------------------------------- /src/ServerMessageProcessor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/ServerMessageProcessor.c -------------------------------------------------------------------------------- /src/ServerMessageProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/ServerMessageProcessor.h -------------------------------------------------------------------------------- /src/Snapshot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/Snapshot.c -------------------------------------------------------------------------------- /src/Snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/Snapshot.h -------------------------------------------------------------------------------- /src/StringConverter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/StringConverter.hpp -------------------------------------------------------------------------------- /src/StringUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/StringUtils.hpp -------------------------------------------------------------------------------- /src/SymbolCodec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/SymbolCodec.c -------------------------------------------------------------------------------- /src/SymbolCodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/SymbolCodec.h -------------------------------------------------------------------------------- /src/TaskQueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/TaskQueue.c -------------------------------------------------------------------------------- /src/TaskQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/TaskQueue.h -------------------------------------------------------------------------------- /src/TimeMarkUtil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/TimeMarkUtil.hpp -------------------------------------------------------------------------------- /src/Version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/Version.c -------------------------------------------------------------------------------- /src/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/Version.h -------------------------------------------------------------------------------- /src/Version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/Version.h.in -------------------------------------------------------------------------------- /src/WideDecimal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/WideDecimal.cpp -------------------------------------------------------------------------------- /src/WideDecimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/WideDecimal.h -------------------------------------------------------------------------------- /src/WideDecimal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/WideDecimal.hpp -------------------------------------------------------------------------------- /src/Win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/Win32.c -------------------------------------------------------------------------------- /src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/src/resource.h -------------------------------------------------------------------------------- /tests/APITest/APITest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/tests/APITest/APITest.c -------------------------------------------------------------------------------- /tests/APITest/APITest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/tests/APITest/APITest.vcxproj -------------------------------------------------------------------------------- /tests/APITest/APITest.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/tests/APITest/APITest.vcxproj.filters -------------------------------------------------------------------------------- /tests/APITest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/tests/APITest/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ConnectionTest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/tests/ConnectionTest/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ConnectionTest/ConnectionTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/tests/ConnectionTest/ConnectionTest.c -------------------------------------------------------------------------------- /tests/ConnectionTest/ConnectionTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/tests/ConnectionTest/ConnectionTest.vcxproj -------------------------------------------------------------------------------- /tests/ConnectionTest/ConnectionTest.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/tests/ConnectionTest/ConnectionTest.vcxproj.filters -------------------------------------------------------------------------------- /tests/FullTest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/tests/FullTest/CMakeLists.txt -------------------------------------------------------------------------------- /tests/FullTest/FullTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/tests/FullTest/FullTest.c -------------------------------------------------------------------------------- /tests/FullTest/FullTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/tests/FullTest/FullTest.vcxproj -------------------------------------------------------------------------------- /tests/FullTest/FullTest.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/tests/FullTest/FullTest.vcxproj.filters -------------------------------------------------------------------------------- /tests/FullTest_dxfeed.bat: -------------------------------------------------------------------------------- 1 | ..\bin\FullTest.exe demo.dxfeed.com:7300 2 | -------------------------------------------------------------------------------- /tests/LastEventTest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/tests/LastEventTest/CMakeLists.txt -------------------------------------------------------------------------------- /tests/LastEventTest/LastEventTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/tests/LastEventTest/LastEventTest.c -------------------------------------------------------------------------------- /tests/LastEventTest/LastEventTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/tests/LastEventTest/LastEventTest.vcxproj -------------------------------------------------------------------------------- /tests/LastEventTest/LastEventTest.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/tests/LastEventTest/LastEventTest.vcxproj.filters -------------------------------------------------------------------------------- /tests/PerformanceTest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/tests/PerformanceTest/CMakeLists.txt -------------------------------------------------------------------------------- /tests/PerformanceTest/PerformanceTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/tests/PerformanceTest/PerformanceTest.c -------------------------------------------------------------------------------- /tests/PerformanceTest/PerformanceTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/tests/PerformanceTest/PerformanceTest.vcxproj -------------------------------------------------------------------------------- /tests/PerformanceTest/PerformanceTest.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/tests/PerformanceTest/PerformanceTest.vcxproj.filters -------------------------------------------------------------------------------- /tests/QuoteTableTest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/tests/QuoteTableTest/CMakeLists.txt -------------------------------------------------------------------------------- /tests/QuoteTableTest/QuoteTableTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/tests/QuoteTableTest/QuoteTableTest.c -------------------------------------------------------------------------------- /tests/QuoteTableTest/QuoteTableTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/tests/QuoteTableTest/QuoteTableTest.vcxproj -------------------------------------------------------------------------------- /tests/QuoteTableTest/QuoteTableTest.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/tests/QuoteTableTest/QuoteTableTest.vcxproj.filters -------------------------------------------------------------------------------- /tests/QuoteTableTest_dxfeed.bat: -------------------------------------------------------------------------------- 1 | ..\bin\QuoteTableTest.exe demo.dxfeed.com:7300 2 | -------------------------------------------------------------------------------- /tests/SampleTest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/tests/SampleTest/CMakeLists.txt -------------------------------------------------------------------------------- /tests/SampleTest/SampleTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/tests/SampleTest/SampleTest.c -------------------------------------------------------------------------------- /tests/SampleTest/SampleTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/tests/SampleTest/SampleTest.vcxproj -------------------------------------------------------------------------------- /tests/SampleTest/SampleTest.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/tests/SampleTest/SampleTest.vcxproj.filters -------------------------------------------------------------------------------- /tests/Sample_dxfeed_TRADE_IBM.bat: -------------------------------------------------------------------------------- 1 | ..\bin\CommandLineSample.exe demo.dxfeed.com:7300 TRADE IBM -------------------------------------------------------------------------------- /tests/UnitTests/AddressParserTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/tests/UnitTests/AddressParserTest.c -------------------------------------------------------------------------------- /tests/UnitTests/AddressParserTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/tests/UnitTests/AddressParserTest.h -------------------------------------------------------------------------------- /tests/UnitTests/AlgorithmsTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/tests/UnitTests/AlgorithmsTest.c -------------------------------------------------------------------------------- /tests/UnitTests/AlgorithmsTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/tests/UnitTests/AlgorithmsTest.h -------------------------------------------------------------------------------- /tests/UnitTests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/tests/UnitTests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/UnitTests/CandleTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/tests/UnitTests/CandleTest.c -------------------------------------------------------------------------------- /tests/UnitTests/CandleTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/tests/UnitTests/CandleTest.h -------------------------------------------------------------------------------- /tests/UnitTests/ConnectionTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/tests/UnitTests/ConnectionTest.c -------------------------------------------------------------------------------- /tests/UnitTests/ConnectionTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/tests/UnitTests/ConnectionTest.h -------------------------------------------------------------------------------- /tests/UnitTests/DXNetworkTests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/tests/UnitTests/DXNetworkTests.c -------------------------------------------------------------------------------- /tests/UnitTests/DXNetworkTests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/tests/UnitTests/DXNetworkTests.h -------------------------------------------------------------------------------- /tests/UnitTests/EventDynamicSubscriptionTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/tests/UnitTests/EventDynamicSubscriptionTest.cpp -------------------------------------------------------------------------------- /tests/UnitTests/EventDynamicSubscriptionTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/tests/UnitTests/EventDynamicSubscriptionTest.h -------------------------------------------------------------------------------- /tests/UnitTests/EventSubscriptionTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/tests/UnitTests/EventSubscriptionTest.c -------------------------------------------------------------------------------- /tests/UnitTests/EventSubscriptionTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/tests/UnitTests/EventSubscriptionTest.h -------------------------------------------------------------------------------- /tests/UnitTests/OrderSourceConfigurationTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/tests/UnitTests/OrderSourceConfigurationTest.c -------------------------------------------------------------------------------- /tests/UnitTests/OrderSourceConfigurationTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/tests/UnitTests/OrderSourceConfigurationTest.h -------------------------------------------------------------------------------- /tests/UnitTests/SnapshotTests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/tests/UnitTests/SnapshotTests.c -------------------------------------------------------------------------------- /tests/UnitTests/SnapshotTests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/tests/UnitTests/SnapshotTests.h -------------------------------------------------------------------------------- /tests/UnitTests/SnapshotUnitTests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/tests/UnitTests/SnapshotUnitTests.c -------------------------------------------------------------------------------- /tests/UnitTests/TestHelper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/tests/UnitTests/TestHelper.c -------------------------------------------------------------------------------- /tests/UnitTests/TestHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/tests/UnitTests/TestHelper.h -------------------------------------------------------------------------------- /tests/UnitTests/UnitTests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/tests/UnitTests/UnitTests.c -------------------------------------------------------------------------------- /tests/UnitTests/UnitTests.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/tests/UnitTests/UnitTests.vcxproj -------------------------------------------------------------------------------- /tests/UnitTests/UnitTests.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/tests/UnitTests/UnitTests.vcxproj.filters -------------------------------------------------------------------------------- /tests/UnitTests2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/tests/UnitTests2/CMakeLists.txt -------------------------------------------------------------------------------- /tests/UnitTests2/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/tests/UnitTests2/Main.cpp -------------------------------------------------------------------------------- /tests/UnitTests2/StringUtilsTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/tests/UnitTests2/StringUtilsTest.cpp -------------------------------------------------------------------------------- /tests/UnitTests2/WideDecimalTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/tests/UnitTests2/WideDecimalTest.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/.clang-format -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/.conan/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/.conan/build.py -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/.conan/test_package/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/.conan/test_package/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/.conan/test_package/conanfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/.conan/test_package/conanfile.py -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/.conan/test_package/test_package.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/.conan/test_package/test_package.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/.gitattributes -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: "https://www.paypal.me/horenmar" 2 | -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/.github/pull_request_template.md -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/.gitignore -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/.travis.yml -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/BUILD.bazel -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/CMake/Catch2Config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/CMake/Catch2Config.cmake.in -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/CMake/FindGcov.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/CMake/FindGcov.cmake -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/CMake/FindLcov.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/CMake/FindLcov.cmake -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/CMake/Findcodecov.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/CMake/Findcodecov.cmake -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/CMake/MiscFunctions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/CMake/MiscFunctions.cmake -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/CMake/catch2.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/CMake/catch2.pc.in -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/CMake/llvm-cov-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/CMake/llvm-cov-wrapper -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/LICENSE.txt -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/README.md -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/WORKSPACE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/appveyor.yml -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/artwork/catch2-c-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/artwork/catch2-c-logo.png -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/artwork/catch2-hand-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/artwork/catch2-hand-logo.png -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/artwork/catch2-logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/artwork/catch2-logo-small.png -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/codecov.yml -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/conanfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/conanfile.py -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/contrib/Catch.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/contrib/Catch.cmake -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/contrib/CatchAddTests.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/contrib/CatchAddTests.cmake -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/contrib/ParseAndAddCatchTests.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/contrib/ParseAndAddCatchTests.cmake -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/contrib/gdbinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/contrib/gdbinit -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/contrib/lldbinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/contrib/lldbinit -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/docs/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/docs/Readme.md -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/docs/assertions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/docs/assertions.md -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/docs/benchmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/docs/benchmarks.md -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/docs/ci-and-misc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/docs/ci-and-misc.md -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/docs/cmake-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/docs/cmake-integration.md -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/docs/command-line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/docs/command-line.md -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/docs/commercial-users.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/docs/commercial-users.md -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/docs/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/docs/configuration.md -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/docs/contributing.md -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/docs/deprecations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/docs/deprecations.md -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/docs/event-listeners.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/docs/event-listeners.md -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/docs/generators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/docs/generators.md -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/docs/limitations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/docs/limitations.md -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/docs/list-of-examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/docs/list-of-examples.md -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/docs/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/docs/logging.md -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/docs/matchers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/docs/matchers.md -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/docs/opensource-users.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/docs/opensource-users.md -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/docs/other-macros.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/docs/other-macros.md -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/docs/own-main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/docs/own-main.md -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/docs/release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/docs/release-notes.md -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/docs/release-process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/docs/release-process.md -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/docs/reporters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/docs/reporters.md -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/docs/slow-compiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/docs/slow-compiles.md -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/docs/test-cases-and-sections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/docs/test-cases-and-sections.md -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/docs/test-fixtures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/docs/test-fixtures.md -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/docs/tostring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/docs/tostring.md -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/docs/tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/docs/tutorial.md -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/docs/why-catch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/docs/why-catch.md -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/examples/000-CatchMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/examples/000-CatchMain.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/examples/010-TestCase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/examples/010-TestCase.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/examples/020-TestCase-1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/examples/020-TestCase-1.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/examples/020-TestCase-2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/examples/020-TestCase-2.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/examples/030-Asn-Require-Check.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/examples/030-Asn-Require-Check.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/examples/100-Fix-Section.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/examples/100-Fix-Section.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/examples/110-Fix-ClassFixture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/examples/110-Fix-ClassFixture.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/examples/120-Bdd-ScenarioGivenWhenThen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/examples/120-Bdd-ScenarioGivenWhenThen.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/examples/200-Rpt-CatchMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/examples/200-Rpt-CatchMain.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/examples/207-Rpt-TeamCityReporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/examples/207-Rpt-TeamCityReporter.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/examples/210-Evt-EventListeners.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/examples/210-Evt-EventListeners.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/examples/231-Cfg-OutputStreams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/examples/231-Cfg-OutputStreams.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/examples/300-Gen-OwnGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/examples/300-Gen-OwnGenerator.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/examples/301-Gen-MapTypeConversion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/examples/301-Gen-MapTypeConversion.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/examples/302-Gen-Table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/examples/302-Gen-Table.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/examples/310-Gen-VariablesInGenerators.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/examples/310-Gen-VariablesInGenerators.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/examples/311-Gen-CustomCapture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/examples/311-Gen-CustomCapture.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/examples/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/catch.hpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/catch_with_main.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/catch_with_main.hpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/external/clara.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/external/clara.hpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/benchmark/catch_benchmark.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/benchmark/catch_benchmark.hpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/benchmark/catch_clock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/benchmark/catch_clock.hpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/benchmark/catch_estimate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/benchmark/catch_estimate.hpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/benchmark/catch_optimizer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/benchmark/catch_optimizer.hpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_approx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_approx.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_approx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_approx.h -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_assertionhandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_assertionhandler.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_assertionhandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_assertionhandler.h -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_assertioninfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_assertioninfo.h -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_assertionresult.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_assertionresult.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_assertionresult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_assertionresult.h -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_capture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_capture.hpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_capture_matchers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_capture_matchers.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_capture_matchers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_capture_matchers.h -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_clara.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_clara.h -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_commandline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_commandline.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_commandline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_commandline.h -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_common.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_common.h -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_compiler_capabilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_compiler_capabilities.h -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_config.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_config.hpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_console_colour.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_console_colour.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_console_colour.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_console_colour.h -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_context.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_context.h -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_debug_console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_debug_console.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_debug_console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_debug_console.h -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_debugger.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_debugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_debugger.h -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_decomposer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_decomposer.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_decomposer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_decomposer.h -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_default_main.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_default_main.hpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_enforce.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_enforce.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_enforce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_enforce.h -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_enum_values_registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_enum_values_registry.h -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_errno_guard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_errno_guard.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_errno_guard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_errno_guard.h -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_external_interfaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_external_interfaces.h -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_fatal_condition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_fatal_condition.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_fatal_condition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_fatal_condition.h -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_generators.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_generators.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_generators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_generators.hpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_generators_generic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_generators_generic.hpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_generators_specific.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_generators_specific.hpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_impl.hpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_interfaces_capture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_interfaces_capture.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_interfaces_capture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_interfaces_capture.h -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_interfaces_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_interfaces_config.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_interfaces_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_interfaces_config.h -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_interfaces_exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_interfaces_exception.h -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_interfaces_reporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_interfaces_reporter.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_interfaces_reporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_interfaces_reporter.h -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_interfaces_runner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_interfaces_runner.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_interfaces_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_interfaces_runner.h -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_interfaces_testcase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_interfaces_testcase.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_interfaces_testcase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_interfaces_testcase.h -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_leak_detector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_leak_detector.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_leak_detector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_leak_detector.h -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_list.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_list.h -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_matchers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_matchers.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_matchers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_matchers.h -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_matchers_exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_matchers_exception.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_matchers_exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_matchers_exception.hpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_matchers_floating.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_matchers_floating.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_matchers_floating.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_matchers_floating.h -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_matchers_generic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_matchers_generic.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_matchers_generic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_matchers_generic.hpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_matchers_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_matchers_string.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_matchers_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_matchers_string.h -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_matchers_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_matchers_vector.h -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_message.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_message.h -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_meta.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_meta.hpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_objc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_objc.hpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_objc_arc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_objc_arc.hpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_option.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_option.hpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_output_redirect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_output_redirect.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_output_redirect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_output_redirect.h -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_platform.h -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_polyfills.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_polyfills.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_polyfills.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_polyfills.hpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_preprocessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_preprocessor.hpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_reenable_warnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_reenable_warnings.h -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_registry_hub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_registry_hub.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_reporter_registrars.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_reporter_registrars.hpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_reporter_registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_reporter_registry.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_reporter_registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_reporter_registry.h -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_result_type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_result_type.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_result_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_result_type.h -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_run_context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_run_context.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_run_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_run_context.h -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_section.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_section.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_section.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_section.h -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_section_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_section_info.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_section_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_section_info.h -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_session.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_session.h -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_singletons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_singletons.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_singletons.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_singletons.hpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_stream.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_stream.h -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_string_manip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_string_manip.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_string_manip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_string_manip.h -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_stringref.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_stringref.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_stringref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_stringref.h -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_suppress_warnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_suppress_warnings.h -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_tag_alias.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_tag_alias.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_tag_alias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_tag_alias.h -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_tag_alias_registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_tag_alias_registry.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_tag_alias_registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_tag_alias_registry.h -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_test_case_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_test_case_info.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_test_case_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_test_case_info.h -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_test_case_tracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_test_case_tracker.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_test_case_tracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_test_case_tracker.h -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_test_registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_test_registry.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_test_registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_test_registry.h -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_test_spec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_test_spec.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_test_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_test_spec.h -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_test_spec_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_test_spec_parser.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_test_spec_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_test_spec_parser.h -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_text.h -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_timer.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_timer.h -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_to_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_to_string.hpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_tostring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_tostring.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_tostring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_tostring.h -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_totals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_totals.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_totals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_totals.h -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_uncaught_exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_uncaught_exceptions.h -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_user_interfaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_user_interfaces.h -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_version.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_version.h -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_wildcard_pattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_wildcard_pattern.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_wildcard_pattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_wildcard_pattern.h -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_windows_h_proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_windows_h_proxy.h -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_xmlwriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_xmlwriter.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/internal/catch_xmlwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/internal/catch_xmlwriter.h -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/reporters/catch_reporter_bases.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/reporters/catch_reporter_bases.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/reporters/catch_reporter_bases.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/reporters/catch_reporter_bases.hpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/reporters/catch_reporter_compact.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/reporters/catch_reporter_compact.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/reporters/catch_reporter_compact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/reporters/catch_reporter_compact.h -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/reporters/catch_reporter_console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/reporters/catch_reporter_console.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/reporters/catch_reporter_console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/reporters/catch_reporter_console.h -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/reporters/catch_reporter_junit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/reporters/catch_reporter_junit.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/reporters/catch_reporter_junit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/reporters/catch_reporter_junit.h -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/reporters/catch_reporter_listening.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/reporters/catch_reporter_listening.h -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/reporters/catch_reporter_tap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/reporters/catch_reporter_tap.hpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/reporters/catch_reporter_xml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/reporters/catch_reporter_xml.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/include/reporters/catch_reporter_xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/include/reporters/catch_reporter_xml.h -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/misc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/misc/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/misc/appveyorBuildConfigurationScript.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/misc/appveyorBuildConfigurationScript.bat -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/misc/appveyorMergeCoverageScript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/misc/appveyorMergeCoverageScript.py -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/misc/appveyorTestRunScript.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/misc/appveyorTestRunScript.bat -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/misc/coverage-helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/misc/coverage-helper.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/misc/installOpenCppCoverage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/misc/installOpenCppCoverage.ps1 -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/projects/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/projects/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/projects/ExtraTests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/projects/ExtraTests/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/projects/ExtraTests/ToDo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/projects/ExtraTests/ToDo.txt -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/projects/ExtraTests/X01-PrefixedMacros.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/projects/ExtraTests/X01-PrefixedMacros.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/projects/ExtraTests/X02-DisabledMacros.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/projects/ExtraTests/X02-DisabledMacros.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/projects/SelfTest/Misc/invalid-test-names.input: -------------------------------------------------------------------------------- 1 | Test with special, characters in \" name 2 | -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/projects/SelfTest/Misc/plain-old-tests.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/projects/SelfTest/Misc/plain-old-tests.input -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/projects/SelfTest/Misc/special-characters-in-file.input: -------------------------------------------------------------------------------- 1 | Test with special\, characters \"in name 2 | -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/projects/SelfTest/TestMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/projects/SelfTest/TestMain.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/projects/SelfTest/UsageTests/BDD.tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/projects/SelfTest/UsageTests/BDD.tests.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/projects/SelfTest/UsageTests/Class.tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/projects/SelfTest/UsageTests/Class.tests.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/projects/SelfTest/UsageTests/Misc.tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/projects/SelfTest/UsageTests/Misc.tests.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/projects/SelfTest/WarnAboutNoTests.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/projects/SelfTest/WarnAboutNoTests.cmake -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/projects/TestScripts/testRandomOrder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/projects/TestScripts/testRandomOrder.py -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/projects/XCode/OCTest/OCTest/Main.mm: -------------------------------------------------------------------------------- 1 | #define CATCH_CONFIG_MAIN 2 | #import "catch.hpp" 3 | -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/projects/XCode/OCTest/OCTest/OCTest.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/projects/XCode/OCTest/OCTest/OCTest.1 -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/projects/XCode/OCTest/OCTest/OCTest.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/projects/XCode/OCTest/OCTest/OCTest.mm -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/projects/XCode/OCTest/OCTest/TestObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/projects/XCode/OCTest/OCTest/TestObj.h -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/projects/XCode/OCTest/OCTest/TestObj.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/projects/XCode/OCTest/OCTest/TestObj.m -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/projects/XCode/OCTest/catch_objc_impl.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/projects/XCode/OCTest/catch_objc_impl.mm -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/scripts/approvalTests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/scripts/approvalTests.py -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/scripts/approve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/scripts/approve.py -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/scripts/benchmarkCompile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/scripts/benchmarkCompile.py -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/scripts/benchmarkRunner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/scripts/benchmarkRunner.py -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/scripts/developBuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/scripts/developBuild.py -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/scripts/embed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/scripts/embed.py -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/scripts/embedClara.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/scripts/embedClara.py -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/scripts/extractFeaturesFromReleaseNotes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/scripts/extractFeaturesFromReleaseNotes.py -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/scripts/fixWhitespace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/scripts/fixWhitespace.py -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/scripts/generateSingleHeader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/scripts/generateSingleHeader.py -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/scripts/majorRelease.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/scripts/majorRelease.py -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/scripts/minorRelease.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/scripts/minorRelease.py -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/scripts/patchRelease.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/scripts/patchRelease.py -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/scripts/releaseCommon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/scripts/releaseCommon.py -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/scripts/releaseNotes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/scripts/releaseNotes.py -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/scripts/scriptCommon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/scripts/scriptCommon.py -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/scripts/updateDocumentToC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/scripts/updateDocumentToC.py -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/scripts/updateWandbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/scripts/updateWandbox.py -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/single_include/catch2/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/single_include/catch2/catch.hpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/single_include/catch2/catch_reporter_tap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/single_include/catch2/catch_reporter_tap.hpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/src/catch_with_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/src/catch_with_main.cpp -------------------------------------------------------------------------------- /thirdparty/Catch2-2.13.8/third_party/clara.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/Catch2-2.13.8/third_party/clara.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/abi/borland_prefix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/abi/borland_prefix.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/abi/borland_suffix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/abi/borland_suffix.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/abi/msvc_prefix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/abi/msvc_prefix.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/abi/msvc_suffix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/abi/msvc_suffix.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/abi_prefix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/abi_prefix.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/abi_suffix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/abi_suffix.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/auto_link.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/auto_link.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/compiler/borland.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/compiler/borland.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/compiler/clang.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/compiler/clang.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/compiler/codegear.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/compiler/codegear.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/compiler/comeau.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/compiler/comeau.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/compiler/common_edg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/compiler/common_edg.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/compiler/compaq_cxx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/compiler/compaq_cxx.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/compiler/cray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/compiler/cray.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/compiler/diab.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/compiler/diab.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/compiler/digitalmars.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/compiler/digitalmars.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/compiler/gcc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/compiler/gcc.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/compiler/gcc_xml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/compiler/gcc_xml.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/compiler/greenhills.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/compiler/greenhills.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/compiler/hp_acc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/compiler/hp_acc.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/compiler/intel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/compiler/intel.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/compiler/kai.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/compiler/kai.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/compiler/metrowerks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/compiler/metrowerks.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/compiler/mpw.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/compiler/mpw.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/compiler/nvcc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/compiler/nvcc.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/compiler/pathscale.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/compiler/pathscale.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/compiler/pgi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/compiler/pgi.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/compiler/sgi_mipspro.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/compiler/sgi_mipspro.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/compiler/sunpro_cc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/compiler/sunpro_cc.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/compiler/vacpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/compiler/vacpp.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/compiler/visualc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/compiler/visualc.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/compiler/xlcpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/compiler/xlcpp.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/compiler/xlcpp_zos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/compiler/xlcpp_zos.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/detail/posix_features.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/detail/posix_features.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/detail/select_compiler_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/detail/select_compiler_config.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/detail/select_platform_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/detail/select_platform_config.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/detail/select_stdlib_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/detail/select_stdlib_config.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/detail/suffix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/detail/suffix.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/header_deprecated.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/header_deprecated.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/helper_macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/helper_macros.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/no_tr1/cmath.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/no_tr1/cmath.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/no_tr1/complex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/no_tr1/complex.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/no_tr1/functional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/no_tr1/functional.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/no_tr1/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/no_tr1/memory.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/no_tr1/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/no_tr1/utility.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/platform/aix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/platform/aix.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/platform/amigaos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/platform/amigaos.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/platform/beos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/platform/beos.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/platform/bsd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/platform/bsd.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/platform/cloudabi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/platform/cloudabi.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/platform/cray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/platform/cray.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/platform/cygwin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/platform/cygwin.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/platform/haiku.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/platform/haiku.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/platform/hpux.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/platform/hpux.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/platform/irix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/platform/irix.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/platform/linux.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/platform/linux.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/platform/macos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/platform/macos.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/platform/qnxnto.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/platform/qnxnto.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/platform/solaris.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/platform/solaris.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/platform/symbian.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/platform/symbian.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/platform/vms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/platform/vms.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/platform/vxworks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/platform/vxworks.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/platform/win32.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/platform/win32.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/platform/zos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/platform/zos.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/pragma_message.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/pragma_message.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/requires_threads.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/requires_threads.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/stdlib/dinkumware.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/stdlib/dinkumware.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/stdlib/libcomo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/stdlib/libcomo.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/stdlib/libcpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/stdlib/libcpp.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/stdlib/libstdcpp3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/stdlib/libstdcpp3.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/stdlib/modena.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/stdlib/modena.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/stdlib/msl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/stdlib/msl.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/stdlib/roguewave.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/stdlib/roguewave.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/stdlib/sgi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/stdlib/sgi.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/stdlib/stlport.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/stdlib/stlport.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/stdlib/vacpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/stdlib/vacpp.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/stdlib/xlcpp_zos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/stdlib/xlcpp_zos.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/user.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/user.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/warning_disable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/warning_disable.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/config/workaround.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/config/workaround.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/cstdint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/cstdint.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/limits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/limits.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/locale/definitions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/locale/definitions.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/locale/encoding_errors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/locale/encoding_errors.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/locale/encoding_utf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/locale/encoding_utf.hpp -------------------------------------------------------------------------------- /thirdparty/boost-1_75/boost/locale/utf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/boost-1_75/boost/locale/utf.hpp -------------------------------------------------------------------------------- /thirdparty/toml11/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/toml11/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/toml11/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/toml11/LICENSE -------------------------------------------------------------------------------- /thirdparty/toml11/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/toml11/README.md -------------------------------------------------------------------------------- /thirdparty/toml11/cmake/toml11Config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/toml11/cmake/toml11Config.cmake.in -------------------------------------------------------------------------------- /thirdparty/toml11/toml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/toml11/toml.hpp -------------------------------------------------------------------------------- /thirdparty/toml11/toml/color.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/toml11/toml/color.hpp -------------------------------------------------------------------------------- /thirdparty/toml11/toml/combinator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/toml11/toml/combinator.hpp -------------------------------------------------------------------------------- /thirdparty/toml11/toml/comments.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/toml11/toml/comments.hpp -------------------------------------------------------------------------------- /thirdparty/toml11/toml/datetime.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/toml11/toml/datetime.hpp -------------------------------------------------------------------------------- /thirdparty/toml11/toml/exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/toml11/toml/exception.hpp -------------------------------------------------------------------------------- /thirdparty/toml11/toml/from.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/toml11/toml/from.hpp -------------------------------------------------------------------------------- /thirdparty/toml11/toml/get.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/toml11/toml/get.hpp -------------------------------------------------------------------------------- /thirdparty/toml11/toml/into.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/toml11/toml/into.hpp -------------------------------------------------------------------------------- /thirdparty/toml11/toml/lexer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/toml11/toml/lexer.hpp -------------------------------------------------------------------------------- /thirdparty/toml11/toml/literal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/toml11/toml/literal.hpp -------------------------------------------------------------------------------- /thirdparty/toml11/toml/parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/toml11/toml/parser.hpp -------------------------------------------------------------------------------- /thirdparty/toml11/toml/region.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/toml11/toml/region.hpp -------------------------------------------------------------------------------- /thirdparty/toml11/toml/result.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/toml11/toml/result.hpp -------------------------------------------------------------------------------- /thirdparty/toml11/toml/serializer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/toml11/toml/serializer.hpp -------------------------------------------------------------------------------- /thirdparty/toml11/toml/source_location.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/toml11/toml/source_location.hpp -------------------------------------------------------------------------------- /thirdparty/toml11/toml/storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/toml11/toml/storage.hpp -------------------------------------------------------------------------------- /thirdparty/toml11/toml/string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/toml11/toml/string.hpp -------------------------------------------------------------------------------- /thirdparty/toml11/toml/traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/toml11/toml/traits.hpp -------------------------------------------------------------------------------- /thirdparty/toml11/toml/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/toml11/toml/types.hpp -------------------------------------------------------------------------------- /thirdparty/toml11/toml/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/toml11/toml/utility.hpp -------------------------------------------------------------------------------- /thirdparty/toml11/toml/value.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/thirdparty/toml11/toml/value.hpp -------------------------------------------------------------------------------- /wrappers/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/wrappers/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /wrappers/cpp/samples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/wrappers/cpp/samples/CMakeLists.txt -------------------------------------------------------------------------------- /wrappers/cpp/samples/ConnectionSample/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/wrappers/cpp/samples/ConnectionSample/CMakeLists.txt -------------------------------------------------------------------------------- /wrappers/cpp/samples/ConnectionSample/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/wrappers/cpp/samples/ConnectionSample/main.cpp -------------------------------------------------------------------------------- /wrappers/cpp/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/wrappers/cpp/src/CMakeLists.txt -------------------------------------------------------------------------------- /wrappers/cpp/src/Connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/wrappers/cpp/src/Connection.cpp -------------------------------------------------------------------------------- /wrappers/cpp/src/Connection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/wrappers/cpp/src/Connection.hpp -------------------------------------------------------------------------------- /wrappers/cpp/src/Error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/wrappers/cpp/src/Error.hpp -------------------------------------------------------------------------------- /wrappers/cpp/src/Event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/wrappers/cpp/src/Event.cpp -------------------------------------------------------------------------------- /wrappers/cpp/src/Event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/wrappers/cpp/src/Event.hpp -------------------------------------------------------------------------------- /wrappers/cpp/src/StringConverter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/wrappers/cpp/src/StringConverter.hpp -------------------------------------------------------------------------------- /wrappers/cpp/src/Subscription.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/wrappers/cpp/src/Subscription.cpp -------------------------------------------------------------------------------- /wrappers/cpp/src/Subscription.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/wrappers/cpp/src/Subscription.hpp -------------------------------------------------------------------------------- /wrappers/cpp/src/Utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/wrappers/cpp/src/Utils.hpp -------------------------------------------------------------------------------- /wrappers/cpp/thirdparty/args/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/wrappers/cpp/thirdparty/args/LICENSE -------------------------------------------------------------------------------- /wrappers/cpp/thirdparty/args/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/wrappers/cpp/thirdparty/args/README.md -------------------------------------------------------------------------------- /wrappers/cpp/thirdparty/args/args.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/wrappers/cpp/thirdparty/args/args.hxx -------------------------------------------------------------------------------- /wrappers/cpp/thirdparty/fmt-8.0.0/LICENSE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/wrappers/cpp/thirdparty/fmt-8.0.0/LICENSE.rst -------------------------------------------------------------------------------- /wrappers/cpp/thirdparty/fmt-8.0.0/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/wrappers/cpp/thirdparty/fmt-8.0.0/README.rst -------------------------------------------------------------------------------- /wrappers/cpp/thirdparty/fmt-8.0.0/include/fmt/args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/wrappers/cpp/thirdparty/fmt-8.0.0/include/fmt/args.h -------------------------------------------------------------------------------- /wrappers/cpp/thirdparty/fmt-8.0.0/include/fmt/chrono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/wrappers/cpp/thirdparty/fmt-8.0.0/include/fmt/chrono.h -------------------------------------------------------------------------------- /wrappers/cpp/thirdparty/fmt-8.0.0/include/fmt/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/wrappers/cpp/thirdparty/fmt-8.0.0/include/fmt/color.h -------------------------------------------------------------------------------- /wrappers/cpp/thirdparty/fmt-8.0.0/include/fmt/compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/wrappers/cpp/thirdparty/fmt-8.0.0/include/fmt/compile.h -------------------------------------------------------------------------------- /wrappers/cpp/thirdparty/fmt-8.0.0/include/fmt/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/wrappers/cpp/thirdparty/fmt-8.0.0/include/fmt/core.h -------------------------------------------------------------------------------- /wrappers/cpp/thirdparty/fmt-8.0.0/include/fmt/format-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/wrappers/cpp/thirdparty/fmt-8.0.0/include/fmt/format-inl.h -------------------------------------------------------------------------------- /wrappers/cpp/thirdparty/fmt-8.0.0/include/fmt/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/wrappers/cpp/thirdparty/fmt-8.0.0/include/fmt/format.h -------------------------------------------------------------------------------- /wrappers/cpp/thirdparty/fmt-8.0.0/include/fmt/locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/wrappers/cpp/thirdparty/fmt-8.0.0/include/fmt/locale.h -------------------------------------------------------------------------------- /wrappers/cpp/thirdparty/fmt-8.0.0/include/fmt/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/wrappers/cpp/thirdparty/fmt-8.0.0/include/fmt/os.h -------------------------------------------------------------------------------- /wrappers/cpp/thirdparty/fmt-8.0.0/include/fmt/ostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/wrappers/cpp/thirdparty/fmt-8.0.0/include/fmt/ostream.h -------------------------------------------------------------------------------- /wrappers/cpp/thirdparty/fmt-8.0.0/include/fmt/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/wrappers/cpp/thirdparty/fmt-8.0.0/include/fmt/printf.h -------------------------------------------------------------------------------- /wrappers/cpp/thirdparty/fmt-8.0.0/include/fmt/ranges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/wrappers/cpp/thirdparty/fmt-8.0.0/include/fmt/ranges.h -------------------------------------------------------------------------------- /wrappers/cpp/thirdparty/fmt-8.0.0/include/fmt/xchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/wrappers/cpp/thirdparty/fmt-8.0.0/include/fmt/xchar.h -------------------------------------------------------------------------------- /wrappers/cpp/thirdparty/fmt-8.0.0/src/fmt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/wrappers/cpp/thirdparty/fmt-8.0.0/src/fmt.cc -------------------------------------------------------------------------------- /wrappers/cpp/thirdparty/fmt-8.0.0/src/format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/wrappers/cpp/thirdparty/fmt-8.0.0/src/format.cc -------------------------------------------------------------------------------- /wrappers/cpp/thirdparty/fmt-8.0.0/src/os.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/wrappers/cpp/thirdparty/fmt-8.0.0/src/os.cc -------------------------------------------------------------------------------- /wrappers/cpp/thirdparty/optional-lite/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/wrappers/cpp/thirdparty/optional-lite/LICENSE.txt -------------------------------------------------------------------------------- /wrappers/cpp/thirdparty/optional-lite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/wrappers/cpp/thirdparty/optional-lite/README.md -------------------------------------------------------------------------------- /wrappers/cpp/thirdparty/optional-lite/include/nonstd/optional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/wrappers/cpp/thirdparty/optional-lite/include/nonstd/optional.hpp -------------------------------------------------------------------------------- /wrappers/cpp/thirdparty/string-view-lite/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/wrappers/cpp/thirdparty/string-view-lite/LICENSE.txt -------------------------------------------------------------------------------- /wrappers/cpp/thirdparty/string-view-lite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/wrappers/cpp/thirdparty/string-view-lite/README.md -------------------------------------------------------------------------------- /wrappers/cpp/thirdparty/variant-lite/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/wrappers/cpp/thirdparty/variant-lite/LICENSE.txt -------------------------------------------------------------------------------- /wrappers/cpp/thirdparty/variant-lite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/wrappers/cpp/thirdparty/variant-lite/README.md -------------------------------------------------------------------------------- /wrappers/cpp/thirdparty/variant-lite/include/nonstd/variant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dxFeed/dxfeed-c-api/HEAD/wrappers/cpp/thirdparty/variant-lite/include/nonstd/variant.hpp --------------------------------------------------------------------------------