mirror of
https://github.com/getml/sqlgen.git
synced 2026-01-02 23:49:46 -06:00
14 lines
232 B
C++
14 lines
232 B
C++
#ifndef SQLGEN_TRANSPILATION_DESC_HPP_
|
|
#define SQLGEN_TRANSPILATION_DESC_HPP_
|
|
|
|
namespace sqlgen::transpilation {
|
|
|
|
template <class _ColType>
|
|
struct Desc {
|
|
using ColType = _ColType;
|
|
};
|
|
|
|
} // namespace sqlgen::transpilation
|
|
|
|
#endif
|