/
UCS
/
sqlite_orm
Обзор
Документация
Войти
/
UCS
/
sqlite_orm
Код
Запросы
0
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
dev/row_extractor_builder.h
22 строки
448 B
klaus triendl
A few unclassified updates
06 июн 2022, 13:24
06 июн 2022, 13:24
5e98da9
Код
Авторство
О чём код?
#pragma once #include "functional/cxx_universal.h" #include "row_extractor.h" #include "mapped_row_extractor.h" namespace sqlite_orm { namespace internal { template<class T> row_extractor<T> make_row_extractor(nullptr_t) { return {}; } template<class T, class Table> mapped_row_extractor<T, Table> make_row_extractor(const Table* table) { return {*table}; } } }