Files
sqlgen/include/sqlgen/transpilation/Desc.hpp
2025-04-30 07:46:54 +02:00

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