aboutsummaryrefslogtreecommitdiff
path: root/odb/mysql/prepared-query.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/mysql/prepared-query.hxx')
-rw-r--r--odb/mysql/prepared-query.hxx33
1 files changed, 33 insertions, 0 deletions
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 <odb/pre.hxx>
+
+#include <odb/prepared-query.hxx>
+
+#include <odb/mysql/version.hxx>
+#include <odb/mysql/query.hxx>
+
+#include <odb/mysql/details/export.hxx>
+
+namespace odb
+{
+ namespace mysql
+ {
+ struct LIBODB_MYSQL_EXPORT prepared_query_impl: odb::prepared_query_impl
+ {
+ virtual
+ ~prepared_query_impl ();
+
+ mysql::query_base query;
+ };
+ }
+}
+
+#include <odb/post.hxx>
+
+#endif // ODB_MYSQL_PREPARED_QUERY_HXX