mirror of
https://github.com/getml/sqlgen.git
synced 2026-01-03 16:09:47 -06:00
Added sqlgen::Literal
This commit is contained in:
@@ -3,6 +3,7 @@
|
||||
|
||||
#include "sqlgen/Connection.hpp"
|
||||
#include "sqlgen/Iterator.hpp"
|
||||
#include "sqlgen/Literal.hpp"
|
||||
#include "sqlgen/Ref.hpp"
|
||||
#include "sqlgen/Result.hpp"
|
||||
|
||||
|
||||
14
include/sqlgen/Literal.hpp
Normal file
14
include/sqlgen/Literal.hpp
Normal file
@@ -0,0 +1,14 @@
|
||||
#ifndef SQLGEN_LITERAL_HPP_
|
||||
#define SQLGEN_LITERAL_HPP_
|
||||
|
||||
#include <rfl.hpp>
|
||||
|
||||
namespace sqlgen {
|
||||
|
||||
template <rfl::internal::StringLiteral _name>
|
||||
using Literal = rfl::Literal<_name>;
|
||||
|
||||
}; // namespace sqlgen
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user