mirror of
https://github.com/getml/sqlgen.git
synced 2025-12-31 22:49:35 -06:00
15 lines
167 B
C++
15 lines
167 B
C++
#ifndef SQLGEN_REF_HPP_
|
|
#define SQLGEN_REF_HPP_
|
|
|
|
#include <rfl.hpp>
|
|
|
|
namespace sqlgen {
|
|
|
|
template <class T>
|
|
using Ref = rfl::Ref<T>;
|
|
|
|
}; // namespace sqlgen
|
|
|
|
#endif
|
|
|