diff options
author | John Turner <jturner.usa@gmail.com> | 2025-09-14 00:16:10 -0400 |
---|---|---|
committer | John Turner <jturner.usa@gmail.com> | 2025-09-14 00:16:10 -0400 |
commit | efcea3a80da7c4479d5fe168435ecc9fd06bdc72 (patch) | |
tree | 5cb0177e17b1b00a177f2e830e809f606334571b /include/boost/sqlite.hpp | |
download | sqlite-kv-bench-efcea3a80da7c4479d5fe168435ecc9fd06bdc72.tar.gz |
Squashed 'subprojects/boost-sqlite/' content from commit 3378e35
git-subtree-dir: subprojects/boost-sqlite
git-subtree-split: 3378e353705271e569cf4ba15c467b840a39798c
Diffstat (limited to 'include/boost/sqlite.hpp')
-rw-r--r-- | include/boost/sqlite.hpp | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/include/boost/sqlite.hpp b/include/boost/sqlite.hpp new file mode 100644 index 0000000..474102a --- /dev/null +++ b/include/boost/sqlite.hpp @@ -0,0 +1,38 @@ +// Copyright (c) 2022 Klemens D. Morgenstern +// +// Distributed under the Boost Software License, Version 1.0. (See accompanying +// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) +#ifndef BOOST_SQLITE_HPP +#define BOOST_SQLITE_HPP + +/** @defgroup reference Reference + * + * This page contains the documentation of the sqlite high-level API. + */ + +#include <boost/sqlite/backup.hpp> +#include <boost/sqlite/blob.hpp> +#include <boost/sqlite/collation.hpp> +#include <boost/sqlite/connection.hpp> +#include <boost/sqlite/cstring_ref.hpp> +#include <boost/sqlite/error.hpp> +#include <boost/sqlite/field.hpp> +#include <boost/sqlite/function.hpp> +#include <boost/sqlite/meta_data.hpp> +#include <boost/sqlite/memory.hpp> +#include <boost/sqlite/hooks.hpp> +#include <boost/sqlite/json.hpp> +#include <boost/sqlite/resultset.hpp> +#include <boost/sqlite/row.hpp> +#include <boost/sqlite/statement.hpp> +#include <boost/sqlite/static_resultset.hpp> +#include <boost/sqlite/string.hpp> +#include <boost/sqlite/transaction.hpp> +#include <boost/sqlite/value.hpp> +#include <boost/sqlite/vtable.hpp> + +#if defined(BOOST_SQLITE_COMPILE_EXTENSION) +#include <boost/sqlite/extension.hpp> +#endif + +#endif //BOOST_SQLITE_HPP |