Added sqlgen::Literal

This commit is contained in:
Dr. Patrick Urbanke
2025-03-22 04:45:02 +01:00
parent 7462ba470e
commit 27bb23a722
2 changed files with 15 additions and 0 deletions

View File

@@ -3,6 +3,7 @@
#include "sqlgen/Connection.hpp"
#include "sqlgen/Iterator.hpp"
#include "sqlgen/Literal.hpp"
#include "sqlgen/Ref.hpp"
#include "sqlgen/Result.hpp"

View 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