aboutsummaryrefslogtreecommitdiff
path: root/odb/pgsql/prepared-query.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2012-10-12 17:24:44 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2012-10-12 17:24:44 +0200
commitfef380f6c9a5fb9904d551478fe180a9c5d24b37 (patch)
tree06cd811ee093e0e52cb5e029f0705b8e6323a334 /odb/pgsql/prepared-query.hxx
parent9f994010f871ce0ea1aea58482ddef503cfc81c3 (diff)
Completion of prepared query support
Diffstat (limited to 'odb/pgsql/prepared-query.hxx')
-rw-r--r--odb/pgsql/prepared-query.hxx33
1 files changed, 33 insertions, 0 deletions
diff --git a/odb/pgsql/prepared-query.hxx b/odb/pgsql/prepared-query.hxx
new file mode 100644
index 0000000..9b90688
--- /dev/null
+++ b/odb/pgsql/prepared-query.hxx
@@ -0,0 +1,33 @@
+// file : odb/pgsql/prepared-query.hxx
+// copyright : Copyright (c) 2005-2012 Code Synthesis Tools CC
+// license : GNU GPL v2; see accompanying LICENSE file
+
+#ifndef ODB_PGSQL_PREPARED_QUERY_HXX
+#define ODB_PGSQL_PREPARED_QUERY_HXX
+
+#include <odb/pre.hxx>
+
+#include <odb/prepared-query.hxx>
+
+#include <odb/pgsql/version.hxx>
+#include <odb/pgsql/query.hxx>
+
+#include <odb/pgsql/details/export.hxx>
+
+namespace odb
+{
+ namespace pgsql
+ {
+ struct LIBODB_PGSQL_EXPORT prepared_query_impl: odb::prepared_query_impl
+ {
+ virtual
+ ~prepared_query_impl ();
+
+ pgsql::query_base query;
+ };
+ }
+}
+
+#include <odb/post.hxx>
+
+#endif // ODB_PGSQL_PREPARED_QUERY_HXX