From 9126281b53722115b2e8624632f2dd616f0c26a0 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Fri, 12 Oct 2012 17:24:44 +0200 Subject: Completion of prepared query support --- odb/mysql/prepared-query.hxx | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 odb/mysql/prepared-query.hxx (limited to 'odb/mysql/prepared-query.hxx') diff --git a/odb/mysql/prepared-query.hxx b/odb/mysql/prepared-query.hxx new file mode 100644 index 0000000..da83aee --- /dev/null +++ b/odb/mysql/prepared-query.hxx @@ -0,0 +1,33 @@ +// file : odb/mysql/prepared-query.hxx +// copyright : Copyright (c) 2005-2012 Code Synthesis Tools CC +// license : GNU GPL v2; see accompanying LICENSE file + +#ifndef ODB_MYSQL_PREPARED_QUERY_HXX +#define ODB_MYSQL_PREPARED_QUERY_HXX + +#include + +#include + +#include +#include + +#include + +namespace odb +{ + namespace mysql + { + struct LIBODB_MYSQL_EXPORT prepared_query_impl: odb::prepared_query_impl + { + virtual + ~prepared_query_impl (); + + mysql::query_base query; + }; + } +} + +#include + +#endif // ODB_MYSQL_PREPARED_QUERY_HXX -- cgit v1.1