aboutsummaryrefslogtreecommitdiff
path: root/odb/mssql/view-result.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2013-09-10 14:10:45 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2013-09-10 14:10:45 +0200
commitd3ec68714365046a30379a410cdff52e5f5ae066 (patch)
tree36b971dd06626cc39b51eb0ec6e7f4f3ca40fcba /odb/mssql/view-result.hxx
parent88f3f0282bad25c962783defa1e34dcbec60a07c (diff)
Schema versioning support
Diffstat (limited to 'odb/mssql/view-result.hxx')
-rw-r--r--odb/mssql/view-result.hxx6
1 files changed, 5 insertions, 1 deletions
diff --git a/odb/mssql/view-result.hxx b/odb/mssql/view-result.hxx
index 0d96ce0..472d2d4 100644
--- a/odb/mssql/view-result.hxx
+++ b/odb/mssql/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>
@@ -16,6 +17,7 @@
#include <odb/mssql/version.hxx>
#include <odb/mssql/forward.hxx> // query_base, view_statements
#include <odb/mssql/statement.hxx>
+#include <odb/mssql/traits-calls.hxx>
namespace odb
{
@@ -40,7 +42,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&);
@@ -68,6 +71,7 @@ namespace odb
private:
details::shared_ptr<select_statement> statement_;
statements_type& statements_;
+ view_traits_calls<view_type> tc_;
bool can_load_;
bool use_copy_;
typename view_traits::image_type* image_copy_;