summaryrefslogtreecommitdiffstats
path: root/example
AgeCommit message (Collapse)Author
2020-09-18Compilation fixes when using experimental optional.Adam Szmigin
2020-09-16Support Engine Prime schema versions up to 1.18.0Adam Szmigin
* Added a test of reference DB files. * Test crate and track creation across all supported versions. * Support for all schema versions seen by EP and SC5000 players.
2020-08-18Use std::optional or experimental as availableAdam Szmigin
At build time, the library will now choose `std::optional<T>` or `std::experimental::optional<T>` (in order of preference), depending on which one is available. A new alias `djinterop::stdx::optional` is available for clients to use. Note that sqlite_modern_cpp performs its own detection of `std::optional<T>` or its experimental equivalent: in order for the library to build correctly, both will need to detect the same version of `std::optional<T>`.
2020-08-09Added example Engine Prime applicationAdam Szmigin