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 | 13e0821fd783a1d5083d825af53cf20e8dcbfd76 (patch) | |
tree | 1ea363b0f13b3e87d177100e6ae6b9f30a2de1b8 /subprojects/boost-sqlite/include/boost/sqlite.hpp | |
parent | aa55cb93036a89c64c08e08f4e1de4fa1fd5a775 (diff) | |
parent | efcea3a80da7c4479d5fe168435ecc9fd06bdc72 (diff) | |
download | sqlite-kv-bench-13e0821fd783a1d5083d825af53cf20e8dcbfd76.tar.gz |
Merge commit 'efcea3a80da7c4479d5fe168435ecc9fd06bdc72' as 'subprojects/boost-sqlite'
Diffstat (limited to 'subprojects/boost-sqlite/include/boost/sqlite.hpp')
-rw-r--r-- | subprojects/boost-sqlite/include/boost/sqlite.hpp | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/subprojects/boost-sqlite/include/boost/sqlite.hpp b/subprojects/boost-sqlite/include/boost/sqlite.hpp new file mode 100644 index 0000000..474102a --- /dev/null +++ b/subprojects/boost-sqlite/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 |