mirror of
https://github.com/rbock/sqlpp11.git
synced 2024-11-15 20:31:16 +08:00
Minor code cleanup (set -> type_set)
This commit is contained in:
parent
722fe21923
commit
d288c65897
@ -1,201 +0,0 @@
|
||||
/*
|
||||
* Copyright (c) 2013, Roland Bock
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without modification,
|
||||
* are permitted provided that the following conditions are met:
|
||||
*
|
||||
* Redistributions of source code must retain the above copyright notice, this
|
||||
* list of conditions and the following disclaimer.
|
||||
*
|
||||
* Redistributions in binary form must reproduce the above copyright notice, this
|
||||
* list of conditions and the following disclaimer in the documentation and/or
|
||||
* other materials provided with the distribution.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
||||
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
|
||||
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
||||
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#ifndef SQLPP_DETAIL_SET_H
|
||||
#define SQLPP_DETAIL_SET_H
|
||||
|
||||
#include <type_traits>
|
||||
#include <sqlpp11/vendor/wrong.h>
|
||||
|
||||
namespace sqlpp
|
||||
{
|
||||
namespace detail
|
||||
{
|
||||
template<typename... T>
|
||||
struct make_set;
|
||||
|
||||
template<typename T>
|
||||
class empty {};
|
||||
|
||||
template<typename SET, typename... T>
|
||||
struct is_superset_of_impl
|
||||
: std::false_type {};
|
||||
|
||||
template<typename SET>
|
||||
struct is_superset_of_impl<SET>
|
||||
: std::true_type {};
|
||||
|
||||
template<typename SET, typename T, typename... Rest>
|
||||
struct is_superset_of_impl<SET, T, Rest...>
|
||||
: std::integral_constant<bool, SET::template contains<T>::value and is_superset_of_impl<SET, Rest...>::value> {};
|
||||
|
||||
template<typename SET, typename... T>
|
||||
struct is_disjunct_from_impl
|
||||
: std::false_type {};
|
||||
|
||||
template<typename SET>
|
||||
struct is_disjunct_from_impl<SET>
|
||||
: std::true_type {};
|
||||
|
||||
template<typename SET, typename T, typename... Rest>
|
||||
struct is_disjunct_from_impl<SET, T, Rest...>
|
||||
: std::integral_constant<bool, not SET::template contains<T>::value and is_disjunct_from_impl<SET, Rest...>::value> {};
|
||||
|
||||
template<typename... Element>
|
||||
struct set: empty<Element>...
|
||||
{
|
||||
struct size: std::integral_constant<size_t, sizeof...(Element)> {};
|
||||
|
||||
template<typename T>
|
||||
struct contains
|
||||
: std::integral_constant<bool, std::is_base_of<empty<T>, set>::value> {};
|
||||
|
||||
template<typename T>
|
||||
struct is_superset_of
|
||||
{
|
||||
static_assert(::sqlpp::vendor::wrong_t<T>::value, "invalid argument for is_superset_of");
|
||||
};
|
||||
|
||||
template<typename... T>
|
||||
struct is_superset_of<set<T...>>
|
||||
: is_superset_of_impl<set, T...>{};
|
||||
|
||||
template<typename T>
|
||||
struct join
|
||||
{
|
||||
static_assert(::sqlpp::vendor::wrong_t<T>::value, "invalid argument for set::join");
|
||||
};
|
||||
|
||||
template<typename... T>
|
||||
struct join<set<T...>>
|
||||
: make_set<Element..., T...> {};
|
||||
|
||||
template<typename T>
|
||||
struct is_disjunct_from
|
||||
{
|
||||
static_assert(::sqlpp::vendor::wrong_t<T>::value, "invalid argument for is_disjunct_from");
|
||||
};
|
||||
|
||||
template<typename... T>
|
||||
struct is_disjunct_from<set<T...>>
|
||||
: is_disjunct_from_impl<set, T...>{};
|
||||
|
||||
template<typename T>
|
||||
struct is_subset_of
|
||||
{
|
||||
static_assert(::sqlpp::vendor::wrong_t<T>::value, "invalid argument for is_subset_of");
|
||||
};
|
||||
|
||||
template<typename... T>
|
||||
struct is_subset_of<set<T...>>
|
||||
: is_superset_of_impl<set<T...>, Element...>{};
|
||||
|
||||
template<typename T>
|
||||
struct equals
|
||||
{
|
||||
static_assert(::sqlpp::vendor::wrong_t<T>::value, "invalid argument for equals");
|
||||
};
|
||||
|
||||
template<typename... T>
|
||||
struct equals<set<T...>>
|
||||
: std::integral_constant<bool,
|
||||
is_superset_of_impl<set<T...>, Element...>::value
|
||||
and
|
||||
is_superset_of_impl<set<Element...>, T...>::value> {};
|
||||
|
||||
template<typename T, typename Enable = void>
|
||||
struct insert
|
||||
{
|
||||
typedef set type;
|
||||
};
|
||||
|
||||
template<typename T>
|
||||
struct insert<T, typename std::enable_if<not set::template contains<T>::value>::type>
|
||||
{
|
||||
typedef set<Element..., T> type;
|
||||
};
|
||||
|
||||
template<template<typename A> class Predicate, typename T, typename Enable = void>
|
||||
struct insert_if
|
||||
{
|
||||
typedef set type;
|
||||
};
|
||||
|
||||
template<template<typename A> class Predicate, typename T>
|
||||
struct insert_if<Predicate, T, typename std::enable_if<not set::template contains<T>::value and Predicate<T>::value>::type>
|
||||
{
|
||||
typedef set<Element..., T> type;
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
template<>
|
||||
struct make_set<>
|
||||
{
|
||||
typedef set<> type;
|
||||
};
|
||||
|
||||
template<typename T, typename... Rest>
|
||||
struct make_set<T, Rest...>
|
||||
{
|
||||
typedef typename make_set<Rest...>::type::template insert<T>::type type;
|
||||
};
|
||||
|
||||
template<template<typename> class Predicate, typename... T>
|
||||
struct make_set_if;
|
||||
|
||||
template<template<typename> class Predicate>
|
||||
struct make_set_if<Predicate>
|
||||
{
|
||||
typedef set<> type;
|
||||
};
|
||||
|
||||
template<template<typename> class Predicate, typename T, typename... Rest>
|
||||
struct make_set_if<Predicate, T, Rest...>
|
||||
{
|
||||
typedef typename make_set_if<Predicate, Rest...>::type::template insert_if<Predicate, T>::type type;
|
||||
};
|
||||
|
||||
template<template<typename> class Predicate, typename... T>
|
||||
struct make_set_if_not
|
||||
{
|
||||
template<typename A>
|
||||
struct InversePredicate
|
||||
{
|
||||
static constexpr bool value = not Predicate<A>::value;
|
||||
};
|
||||
using type = typename make_set_if<InversePredicate, T...>::type;
|
||||
};
|
||||
|
||||
template<typename... T>
|
||||
struct has_duplicates
|
||||
: std::integral_constant<bool, make_set<T...>::type::size::value != sizeof...(T)> {};
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
#endif
|
201
include/sqlpp11/detail/type_set.h
Normal file
201
include/sqlpp11/detail/type_set.h
Normal file
@ -0,0 +1,201 @@
|
||||
/*
|
||||
* Copyright (c) 2013, Roland Bock
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without modification,
|
||||
* are permitted provided that the following conditions are met:
|
||||
*
|
||||
* Redistributions of source code must retain the above copyright notice, this
|
||||
* list of conditions and the following disclaimer.
|
||||
*
|
||||
* Redistributions in binary form must reproduce the above copyright notice, this
|
||||
* list of conditions and the following disclaimer in the documentation and/or
|
||||
* other materials provided with the distribution.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
||||
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
|
||||
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
||||
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#ifndef SQLPP_DETAIL_TYPE_SET_H
|
||||
#define SQLPP_DETAIL_TYPE_SET_H
|
||||
|
||||
#include <type_traits>
|
||||
#include <sqlpp11/vendor/wrong.h>
|
||||
|
||||
namespace sqlpp
|
||||
{
|
||||
namespace detail
|
||||
{
|
||||
template<typename... T>
|
||||
struct make_set;
|
||||
|
||||
template<typename T>
|
||||
class type_set_element {};
|
||||
|
||||
template<typename SET, typename... T>
|
||||
struct is_superset_of_impl
|
||||
: std::false_type {};
|
||||
|
||||
template<typename SET>
|
||||
struct is_superset_of_impl<SET>
|
||||
: std::true_type {};
|
||||
|
||||
template<typename SET, typename T, typename... Rest>
|
||||
struct is_superset_of_impl<SET, T, Rest...>
|
||||
: std::integral_constant<bool, SET::template contains<T>::value and is_superset_of_impl<SET, Rest...>::value> {};
|
||||
|
||||
template<typename SET, typename... T>
|
||||
struct is_disjunct_from_impl
|
||||
: std::false_type {};
|
||||
|
||||
template<typename SET>
|
||||
struct is_disjunct_from_impl<SET>
|
||||
: std::true_type {};
|
||||
|
||||
template<typename SET, typename T, typename... Rest>
|
||||
struct is_disjunct_from_impl<SET, T, Rest...>
|
||||
: std::integral_constant<bool, not SET::template contains<T>::value and is_disjunct_from_impl<SET, Rest...>::value> {};
|
||||
|
||||
template<typename... Element>
|
||||
struct type_set: type_set_element<Element>...
|
||||
{
|
||||
struct size: std::integral_constant<size_t, sizeof...(Element)> {};
|
||||
|
||||
template<typename T>
|
||||
struct contains
|
||||
: std::integral_constant<bool, std::is_base_of<type_set_element<T>, type_set>::value> {};
|
||||
|
||||
template<typename T>
|
||||
struct is_superset_of
|
||||
{
|
||||
static_assert(::sqlpp::vendor::wrong_t<T>::value, "invalid argument for is_superset_of");
|
||||
};
|
||||
|
||||
template<typename... T>
|
||||
struct is_superset_of<type_set<T...>>
|
||||
: is_superset_of_impl<type_set, T...>{};
|
||||
|
||||
template<typename T>
|
||||
struct join
|
||||
{
|
||||
static_assert(::sqlpp::vendor::wrong_t<T>::value, "invalid argument for type_set::join");
|
||||
};
|
||||
|
||||
template<typename... T>
|
||||
struct join<type_set<T...>>
|
||||
: make_set<Element..., T...> {};
|
||||
|
||||
template<typename T>
|
||||
struct is_disjunct_from
|
||||
{
|
||||
static_assert(::sqlpp::vendor::wrong_t<T>::value, "invalid argument for is_disjunct_from");
|
||||
};
|
||||
|
||||
template<typename... T>
|
||||
struct is_disjunct_from<type_set<T...>>
|
||||
: is_disjunct_from_impl<type_set, T...>{};
|
||||
|
||||
template<typename T>
|
||||
struct is_subset_of
|
||||
{
|
||||
static_assert(::sqlpp::vendor::wrong_t<T>::value, "invalid argument for is_subset_of");
|
||||
};
|
||||
|
||||
template<typename... T>
|
||||
struct is_subset_of<type_set<T...>>
|
||||
: is_superset_of_impl<type_set<T...>, Element...>{};
|
||||
|
||||
template<typename T>
|
||||
struct equals
|
||||
{
|
||||
static_assert(::sqlpp::vendor::wrong_t<T>::value, "invalid argument for equals");
|
||||
};
|
||||
|
||||
template<typename... T>
|
||||
struct equals<type_set<T...>>
|
||||
: std::integral_constant<bool,
|
||||
is_superset_of_impl<type_set<T...>, Element...>::value
|
||||
and
|
||||
is_superset_of_impl<type_set<Element...>, T...>::value> {};
|
||||
|
||||
template<typename T, typename Enable = void>
|
||||
struct insert
|
||||
{
|
||||
using type = type_set;
|
||||
};
|
||||
|
||||
template<typename T>
|
||||
struct insert<T, typename std::enable_if<not type_set::template contains<T>::value>::type>
|
||||
{
|
||||
using type = type_set<Element..., T>;
|
||||
};
|
||||
|
||||
template<template<typename A> class Predicate, typename T, typename Enable = void>
|
||||
struct insert_if
|
||||
{
|
||||
using type = type_set;
|
||||
};
|
||||
|
||||
template<template<typename A> class Predicate, typename T>
|
||||
struct insert_if<Predicate, T, typename std::enable_if<not type_set::template contains<T>::value and Predicate<T>::value>::type>
|
||||
{
|
||||
using type = type_set<Element..., T>;
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
template<>
|
||||
struct make_set<>
|
||||
{
|
||||
using type = type_set<>;
|
||||
};
|
||||
|
||||
template<typename T, typename... Rest>
|
||||
struct make_set<T, Rest...>
|
||||
{
|
||||
using type = typename make_set<Rest...>::type::template insert<T>::type;
|
||||
};
|
||||
|
||||
template<template<typename> class Predicate, typename... T>
|
||||
struct make_set_if;
|
||||
|
||||
template<template<typename> class Predicate>
|
||||
struct make_set_if<Predicate>
|
||||
{
|
||||
using type = type_set<>;
|
||||
};
|
||||
|
||||
template<template<typename> class Predicate, typename T, typename... Rest>
|
||||
struct make_set_if<Predicate, T, Rest...>
|
||||
{
|
||||
using type = typename make_set_if<Predicate, Rest...>::type::template insert_if<Predicate, T>::type;
|
||||
};
|
||||
|
||||
template<template<typename> class Predicate, typename... T>
|
||||
struct make_set_if_not
|
||||
{
|
||||
template<typename A>
|
||||
struct InversePredicate
|
||||
{
|
||||
static constexpr bool value = not Predicate<A>::value;
|
||||
};
|
||||
using type = typename make_set_if<InversePredicate, T...>::type;
|
||||
};
|
||||
|
||||
template<typename... T>
|
||||
struct has_duplicates
|
||||
: std::integral_constant<bool, make_set<T...>::type::size::value != sizeof...(T)> {};
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
#endif
|
@ -28,7 +28,7 @@
|
||||
#define SQLPP_ON_H
|
||||
|
||||
#include <sqlpp11/type_traits.h>
|
||||
#include <sqlpp11/detail/set.h>
|
||||
#include <sqlpp11/detail/type_set.h>
|
||||
#include <sqlpp11/vendor/interpret_tuple.h>
|
||||
#include <sqlpp11/vendor/interpretable_list.h>
|
||||
|
||||
|
@ -29,7 +29,7 @@
|
||||
|
||||
#include <sqlpp11/select_fwd.h>
|
||||
#include <sqlpp11/type_traits.h>
|
||||
#include <sqlpp11/detail/set.h>
|
||||
#include <sqlpp11/detail/type_set.h>
|
||||
#include <sqlpp11/vendor/interpret_tuple.h>
|
||||
#include <tuple>
|
||||
|
||||
|
@ -30,7 +30,7 @@
|
||||
#include <sqlpp11/type_traits.h>
|
||||
#include <sqlpp11/table_alias.h>
|
||||
#include <sqlpp11/column.h>
|
||||
#include <sqlpp11/detail/set.h>
|
||||
#include <sqlpp11/detail/type_set.h>
|
||||
#include <sqlpp11/join.h>
|
||||
#include <sqlpp11/no_value.h>
|
||||
|
||||
@ -41,7 +41,7 @@ namespace sqlpp
|
||||
template<typename Table, typename... ColumnSpec>
|
||||
struct table_t: public table_base_t, public ColumnSpec::_name_t::template _member_t<column_t<Table, ColumnSpec>>...
|
||||
{
|
||||
using _table_set = detail::set<Table>; // Hint need a set here to be similar to a join (which always represents more than one table)
|
||||
using _table_set = detail::type_set<Table>; // Hint need a type_set here to be similar to a join (which always represents more than one table)
|
||||
using _all_columns = typename detail::make_set<column_t<Table, ColumnSpec>...>::type;
|
||||
static_assert(_all_columns::size::value, "at least one column required per table");
|
||||
using _required_insert_columns = typename detail::make_set_if<require_insert_t, column_t<Table, ColumnSpec>...>::type;
|
||||
|
@ -31,7 +31,7 @@
|
||||
#include <sqlpp11/interpret.h>
|
||||
#include <sqlpp11/type_traits.h>
|
||||
#include <sqlpp11/alias.h>
|
||||
#include <sqlpp11/detail/set.h>
|
||||
#include <sqlpp11/detail/type_set.h>
|
||||
|
||||
namespace sqlpp
|
||||
{
|
||||
@ -42,7 +42,7 @@ namespace sqlpp
|
||||
{
|
||||
//FIXME: Need to add join functionality
|
||||
using _is_table = std::true_type;
|
||||
using _table_set = detail::set<table_alias_t>;
|
||||
using _table_set = detail::type_set<table_alias_t>;
|
||||
|
||||
struct _value_type: Table::_value_type
|
||||
{
|
||||
|
2
include/sqlpp11/vendor/column_list.h
vendored
2
include/sqlpp11/vendor/column_list.h
vendored
@ -28,7 +28,7 @@
|
||||
#define SQLPP_COLUMN_LIST_H
|
||||
|
||||
#include <sqlpp11/type_traits.h>
|
||||
#include <sqlpp11/detail/set.h>
|
||||
#include <sqlpp11/detail/type_set.h>
|
||||
#include <sqlpp11/vendor/interpret_tuple.h>
|
||||
#include <sqlpp11/vendor/simple_column.h>
|
||||
|
||||
|
2
include/sqlpp11/vendor/concat.h
vendored
2
include/sqlpp11/vendor/concat.h
vendored
@ -29,7 +29,7 @@
|
||||
|
||||
#include <sqlpp11/type_traits.h>
|
||||
#include <sqlpp11/vendor/interpret_tuple.h>
|
||||
#include <sqlpp11/detail/set.h>
|
||||
#include <sqlpp11/detail/type_set.h>
|
||||
|
||||
namespace sqlpp
|
||||
{
|
||||
|
2
include/sqlpp11/vendor/group_by.h
vendored
2
include/sqlpp11/vendor/group_by.h
vendored
@ -32,7 +32,7 @@
|
||||
#include <sqlpp11/vendor/expression.h>
|
||||
#include <sqlpp11/vendor/interpret_tuple.h>
|
||||
#include <sqlpp11/vendor/interpretable_list.h>
|
||||
#include <sqlpp11/detail/set.h>
|
||||
#include <sqlpp11/detail/type_set.h>
|
||||
|
||||
namespace sqlpp
|
||||
{
|
||||
|
2
include/sqlpp11/vendor/having.h
vendored
2
include/sqlpp11/vendor/having.h
vendored
@ -31,7 +31,7 @@
|
||||
#include <sqlpp11/vendor/expression.h>
|
||||
#include <sqlpp11/vendor/interpret_tuple.h>
|
||||
#include <sqlpp11/vendor/interpretable_list.h>
|
||||
#include <sqlpp11/detail/set.h>
|
||||
#include <sqlpp11/detail/type_set.h>
|
||||
|
||||
namespace sqlpp
|
||||
{
|
||||
|
2
include/sqlpp11/vendor/in.h
vendored
2
include/sqlpp11/vendor/in.h
vendored
@ -30,7 +30,7 @@
|
||||
#include <sqlpp11/type_traits.h>
|
||||
#include <sqlpp11/boolean.h>
|
||||
#include <sqlpp11/vendor/in_fwd.h>
|
||||
#include <sqlpp11/detail/set.h>
|
||||
#include <sqlpp11/detail/type_set.h>
|
||||
|
||||
namespace sqlpp
|
||||
{
|
||||
|
2
include/sqlpp11/vendor/insert_list.h
vendored
2
include/sqlpp11/vendor/insert_list.h
vendored
@ -28,7 +28,7 @@
|
||||
#define SQLPP_INSERT_LIST_H
|
||||
|
||||
#include <sqlpp11/type_traits.h>
|
||||
#include <sqlpp11/detail/set.h>
|
||||
#include <sqlpp11/detail/type_set.h>
|
||||
#include <sqlpp11/vendor/interpret_tuple.h>
|
||||
#include <sqlpp11/vendor/interpretable_list.h>
|
||||
#include <sqlpp11/vendor/simple_column.h>
|
||||
|
2
include/sqlpp11/vendor/insert_value_list.h
vendored
2
include/sqlpp11/vendor/insert_value_list.h
vendored
@ -28,7 +28,7 @@
|
||||
#define SQLPP_INSERT_VALUE_LIST_H
|
||||
|
||||
#include <sqlpp11/type_traits.h>
|
||||
#include <sqlpp11/detail/set.h>
|
||||
#include <sqlpp11/detail/type_set.h>
|
||||
#include <sqlpp11/vendor/insert_value.h>
|
||||
#include <sqlpp11/vendor/interpret_tuple.h>
|
||||
|
||||
|
2
include/sqlpp11/vendor/is_null.h
vendored
2
include/sqlpp11/vendor/is_null.h
vendored
@ -29,7 +29,7 @@
|
||||
|
||||
#include <sqlpp11/boolean.h>
|
||||
#include <sqlpp11/type_traits.h>
|
||||
#include <sqlpp11/detail/set.h>
|
||||
#include <sqlpp11/detail/type_set.h>
|
||||
|
||||
namespace sqlpp
|
||||
{
|
||||
|
2
include/sqlpp11/vendor/like.h
vendored
2
include/sqlpp11/vendor/like.h
vendored
@ -29,7 +29,7 @@
|
||||
|
||||
#include <sqlpp11/boolean.h>
|
||||
#include <sqlpp11/type_traits.h>
|
||||
#include <sqlpp11/detail/set.h>
|
||||
#include <sqlpp11/detail/type_set.h>
|
||||
|
||||
namespace sqlpp
|
||||
{
|
||||
|
2
include/sqlpp11/vendor/select_column_list.h
vendored
2
include/sqlpp11/vendor/select_column_list.h
vendored
@ -37,7 +37,7 @@
|
||||
#include <sqlpp11/vendor/select_pseudo_table.h>
|
||||
#include <sqlpp11/vendor/named_interpretable.h>
|
||||
#include <sqlpp11/vendor/interpret_tuple.h>
|
||||
#include <sqlpp11/detail/set.h>
|
||||
#include <sqlpp11/detail/type_set.h>
|
||||
|
||||
namespace sqlpp
|
||||
{
|
||||
|
2
include/sqlpp11/vendor/select_flag_list.h
vendored
2
include/sqlpp11/vendor/select_flag_list.h
vendored
@ -30,7 +30,7 @@
|
||||
#include <sqlpp11/select_fwd.h>
|
||||
#include <sqlpp11/type_traits.h>
|
||||
#include <sqlpp11/select_flags.h>
|
||||
#include <sqlpp11/detail/set.h>
|
||||
#include <sqlpp11/detail/type_set.h>
|
||||
#include <sqlpp11/vendor/interpret_tuple.h>
|
||||
#include <tuple>
|
||||
|
||||
|
2
include/sqlpp11/vendor/update_list.h
vendored
2
include/sqlpp11/vendor/update_list.h
vendored
@ -28,7 +28,7 @@
|
||||
#define SQLPP_UPDATE_LIST_H
|
||||
|
||||
#include <sqlpp11/type_traits.h>
|
||||
#include <sqlpp11/detail/set.h>
|
||||
#include <sqlpp11/detail/type_set.h>
|
||||
#include <sqlpp11/vendor/interpret_tuple.h>
|
||||
#include <sqlpp11/vendor/interpretable_list.h>
|
||||
|
||||
|
2
include/sqlpp11/vendor/using.h
vendored
2
include/sqlpp11/vendor/using.h
vendored
@ -28,7 +28,7 @@
|
||||
#define SQLPP_USING_H
|
||||
|
||||
#include <sqlpp11/type_traits.h>
|
||||
#include <sqlpp11/detail/set.h>
|
||||
#include <sqlpp11/detail/type_set.h>
|
||||
#include <sqlpp11/vendor/interpretable_list.h>
|
||||
#include <sqlpp11/vendor/interpret_tuple.h>
|
||||
|
||||
|
2
include/sqlpp11/vendor/where.h
vendored
2
include/sqlpp11/vendor/where.h
vendored
@ -31,7 +31,7 @@
|
||||
#include <sqlpp11/select_fwd.h>
|
||||
#include <sqlpp11/vendor/expression.h>
|
||||
#include <sqlpp11/type_traits.h>
|
||||
#include <sqlpp11/detail/set.h>
|
||||
#include <sqlpp11/detail/type_set.h>
|
||||
#include <sqlpp11/vendor/interpret_tuple.h>
|
||||
#include <sqlpp11/vendor/interpretable_list.h>
|
||||
#include <sqlpp11/parameter_list.h>
|
||||
|
Loading…
Reference in New Issue
Block a user