13 lines
203 B
C++
13 lines
203 B
C++
#include "matador/sql/query_part.hpp"
|
|
|
|
namespace matador::sql {
|
|
|
|
query_part::query_part(sql::dialect::token_t token)
|
|
: token_(token) {}
|
|
|
|
dialect::token_t query_part::token() const
|
|
{
|
|
return token_;
|
|
}
|
|
|
|
} |