• 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