mirror of
https://github.com/getml/sqlgen.git
synced 2025-12-31 14:39:31 -06:00
21 lines
492 B
C++
21 lines
492 B
C++
#ifndef SQLGEN_HPP_
|
|
#define SQLGEN_HPP_
|
|
|
|
#include "sqlgen/Connection.hpp"
|
|
#include "sqlgen/Iterator.hpp"
|
|
#include "sqlgen/IteratorBase.hpp"
|
|
#include "sqlgen/Literal.hpp"
|
|
#include "sqlgen/PrimaryKey.hpp"
|
|
#include "sqlgen/Range.hpp"
|
|
#include "sqlgen/Ref.hpp"
|
|
#include "sqlgen/Result.hpp"
|
|
#include "sqlgen/Varchar.hpp"
|
|
#include "sqlgen/col.hpp"
|
|
#include "sqlgen/limit.hpp"
|
|
#include "sqlgen/order_by.hpp"
|
|
#include "sqlgen/read.hpp"
|
|
#include "sqlgen/where.hpp"
|
|
#include "sqlgen/write.hpp"
|
|
|
|
#endif
|