Skip to content
Snippets Groups Projects
  1. Mar 23, 2021
  2. Mar 08, 2021
  3. Feb 12, 2021
  4. Dec 08, 2020
  5. Oct 26, 2020
  6. Sep 29, 2020
  7. Sep 28, 2020
  8. Sep 25, 2020
  9. Sep 24, 2020
  10. Sep 22, 2020
  11. Sep 21, 2020
  12. Sep 16, 2020
  13. Sep 15, 2020
  14. Sep 11, 2020
  15. Sep 04, 2020
  16. Sep 03, 2020
  17. Sep 02, 2020
  18. Sep 01, 2020
  19. Aug 28, 2020
  20. Aug 26, 2020
  21. Aug 14, 2020
  22. Jun 10, 2020
  23. May 19, 2020
  24. Mar 30, 2020
  25. Nov 19, 2019
  26. Nov 06, 2019
  27. Oct 07, 2019
  28. Aug 16, 2019
    • Dominik Thoennes's avatar
      [API] move SQLite into its own module · 0bff0985
      Dominik Thoennes authored
      To break unneeded dependencies in postprocessing the SQLite part is
      moved to its own module and namespace.
      Therefore in the include and the function calls
      "postprocessing" hast to be removed or replaced by "sqlite" e.g.:
      #include "postprocessing/sqlite/SQLite.h" ->
      #include "sqlite/SQLite.h"
      
      postprocessing::store... -> sqlite::store...
      0bff0985