forked from taocpp/taopq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpq.hpp
40 lines (30 loc) · 1.15 KB
/
pq.hpp
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
39
40
// Copyright (c) 2016-2022 Daniel Frey and Dr. Colin Hirsch
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt)
#ifndef TAO_PQ_HPP
#define TAO_PQ_HPP
#include <tao/pq/version.hpp>
#include <tao/pq/binary.hpp>
#include <tao/pq/null.hpp>
#include <tao/pq/oid.hpp>
#include <tao/pq/connection.hpp>
#include <tao/pq/connection_pool.hpp>
#include <tao/pq/transaction.hpp>
#include <tao/pq/parameter_traits.hpp>
#include <tao/pq/parameter_traits_aggregate.hpp>
#include <tao/pq/parameter_traits_array.hpp>
#include <tao/pq/parameter_traits_optional.hpp>
#include <tao/pq/parameter_traits_pair.hpp>
#include <tao/pq/parameter_traits_tuple.hpp>
#include <tao/pq/exception.hpp>
#include <tao/pq/result.hpp>
#include <tao/pq/result_traits.hpp>
#include <tao/pq/result_traits_aggregate.hpp>
#include <tao/pq/result_traits_array.hpp>
#include <tao/pq/result_traits_optional.hpp>
#include <tao/pq/result_traits_pair.hpp>
#include <tao/pq/result_traits_tuple.hpp>
#include <tao/pq/table_reader.hpp>
#include <tao/pq/table_writer.hpp>
#include <tao/pq/large_object.hpp>
#endif