mirror of
https://github.com/rbock/sqlpp11.git
synced 2026-02-17 03:38:30 -06:00
Moved a bunch of things into namespace vendor
This namespace is for things the developer will not get in touch with (normally) but the vendor might need to use for specialization of the interpreter. This separation is not fully completed yet, some changes will have to follow...
This commit is contained in:
@@ -27,12 +27,11 @@
|
||||
#ifndef SQLPP_TABLE_ALIAS_H
|
||||
#define SQLPP_TABLE_ALIAS_H
|
||||
|
||||
#include <string>
|
||||
#include <sqlpp11/interpreter.h>
|
||||
#include <sqlpp11/column.h>
|
||||
#include <sqlpp11/column_fwd.h>
|
||||
#include <sqlpp11/interpret.h>
|
||||
#include <sqlpp11/type_traits.h>
|
||||
#include <sqlpp11/alias.h>
|
||||
#include <sqlpp11/detail/set.h>
|
||||
#include <sqlpp11/type_traits.h>
|
||||
|
||||
namespace sqlpp
|
||||
{
|
||||
@@ -63,7 +62,7 @@ namespace sqlpp
|
||||
};
|
||||
|
||||
template<typename Context, typename X>
|
||||
struct interpreter_t<Context, X, typename std::enable_if<std::is_base_of<table_alias_base_t, X>::value, void>::type>
|
||||
struct vendor::interpreter_t<Context, X, typename std::enable_if<std::is_base_of<table_alias_base_t, X>::value, void>::type>
|
||||
{
|
||||
using T = X;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user