summaryrefslogtreecommitdiff
path: root/subprojects/boost-sqlite/include/boost/sqlite.hpp
blob: 474102ac7cc31f61c0f9d1cafe9fc92870d6be1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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