aboutsummaryrefslogtreecommitdiff
path: root/odb/result.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2012-10-04 11:33:49 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2012-10-19 11:38:24 +0200
commitf101a400442692f349822ab1d9119bca5d2b7240 (patch)
treee046f3b727226810d08813cc4c7a55244937f275 /odb/result.hxx
parentbe97326d67365e16175cc599e23348feaf80e0fe (diff)
Initial support for prepared queries
Diffstat (limited to 'odb/result.hxx')
-rw-r--r--odb/result.hxx8
1 files changed, 8 insertions, 0 deletions
diff --git a/odb/result.hxx b/odb/result.hxx
index 29c03df..b85242f 100644
--- a/odb/result.hxx
+++ b/odb/result.hxx
@@ -12,8 +12,16 @@
#include <odb/forward.hxx>
#include <odb/traits.hxx>
+#include <odb/details/shared-ptr.hxx>
+
namespace odb
{
+ struct result_impl: details::shared_base
+ {
+ virtual
+ ~result_impl ();
+ };
+
template <typename T, class_kind kind>
class result_base;