16 lines
366 B
C++
16 lines
366 B
C++
#ifndef MATADOR_QUERY_CONTEXTS_HPP
|
|
#define MATADOR_QUERY_CONTEXTS_HPP
|
|
|
|
#include "matador/sql/query_context.hpp"
|
|
|
|
namespace matador::query {
|
|
struct query_contexts {
|
|
sql::query_context insert;
|
|
sql::query_context update_one;
|
|
sql::query_context delete_one;
|
|
sql::query_context select_one;
|
|
sql::query_context select_all;
|
|
};
|
|
}
|
|
#endif //MATADOR_QUERY_CONTEXTS_HPP
|