aboutsummaryrefslogtreecommitdiff
path: root/odb/pgsql/view-result.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2013-09-04 13:40:31 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2013-09-04 13:40:31 +0200
commit485ae35a88fe2500574797d7342cfa7585e9e191 (patch)
tree977ba286e2d5d2659ab691d8173f556bf60a3594 /odb/pgsql/view-result.hxx
parent259a683ec2a4f777f605bdd527b9882c3a965ee3 (diff)
View versioning support
Diffstat (limited to 'odb/pgsql/view-result.hxx')
-rw-r--r--odb/pgsql/view-result.hxx5
1 files changed, 4 insertions, 1 deletions
diff --git a/odb/pgsql/view-result.hxx b/odb/pgsql/view-result.hxx
index 086be0e..2ca6195 100644
--- a/odb/pgsql/view-result.hxx
+++ b/odb/pgsql/view-result.hxx
@@ -9,6 +9,7 @@
#include <cstddef> // std::size_t
+#include <odb/schema-version.hxx>
#include <odb/view-result.hxx>
#include <odb/details/shared-ptr.hxx>
@@ -40,7 +41,8 @@ namespace odb
view_result_impl (const query_base&,
details::shared_ptr<select_statement>,
- statements_type&);
+ statements_type&,
+ const schema_version_migration*);
virtual void
load (view_type&);
@@ -62,6 +64,7 @@ namespace odb
private:
details::shared_ptr<select_statement> statement_;
statements_type& statements_;
+ view_traits_calls<view_type> tc_;
std::size_t count_;
};
}