aboutsummaryrefslogtreecommitdiff
path: root/odb/sqlite/object-result.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2012-04-23 16:48:01 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2012-04-23 16:48:01 +0200
commit851cbe3927b987ec992bbbb69bd62224bf4a0dc3 (patch)
tree278298c656c75b1625e9408a15e81736c35c194e /odb/sqlite/object-result.hxx
parent7d52205f2b2fc9403b9ea46483e8a17746c6be35 (diff)
Polymorphic inheritance support
Diffstat (limited to 'odb/sqlite/object-result.hxx')
-rw-r--r--odb/sqlite/object-result.hxx113
1 files changed, 0 insertions, 113 deletions
diff --git a/odb/sqlite/object-result.hxx b/odb/sqlite/object-result.hxx
deleted file mode 100644
index 9dcdca0..0000000
--- a/odb/sqlite/object-result.hxx
+++ /dev/null
@@ -1,113 +0,0 @@
-// file : odb/sqlite/object-result.hxx
-// copyright : Copyright (c) 2009-2012 Code Synthesis Tools CC
-// license : GNU GPL v2; see accompanying LICENSE file
-
-#ifndef ODB_SQLITE_OBJECT_RESULT_HXX
-#define ODB_SQLITE_OBJECT_RESULT_HXX
-
-#include <odb/pre.hxx>
-
-#include <cstddef> // std::size_t
-
-#include <odb/details/shared-ptr.hxx>
-
-#include <odb/sqlite/version.hxx>
-#include <odb/sqlite/forward.hxx> // query, object_statements
-#include <odb/sqlite/result.hxx>
-#include <odb/sqlite/statement.hxx>
-
-namespace odb
-{
- namespace sqlite
- {
- template <typename T>
- class object_result_impl: public odb::object_result_impl<T>,
- public result_impl_base
- {
- public:
- typedef odb::object_result_impl<T> base_type;
-
- typedef typename base_type::object_traits object_traits;
- typedef typename base_type::object_type object_type;
- typedef typename base_type::id_type id_type;
-
- typedef typename base_type::pointer_type pointer_type;
- typedef typename base_type::pointer_traits pointer_traits;
-
- virtual
- ~object_result_impl ();
-
- object_result_impl (const query&,
- details::shared_ptr<select_statement>,
- object_statements<object_type>&);
-
- virtual void
- load (object_type&, bool fetch);
-
- virtual id_type
- load_id ();
-
- virtual void
- next ();
-
- virtual void
- cache ();
-
- virtual std::size_t
- size ();
-
- using base_type::current;
-
- private:
- void
- load_image ();
-
- private:
- object_statements<object_type>& statements_;
- };
-
- template <typename T>
- class object_result_impl_no_id: public odb::object_result_impl_no_id<T>,
- public result_impl_base
- {
- public:
- typedef odb::object_result_impl_no_id<T> base_type;
-
- typedef typename base_type::object_traits object_traits;
- typedef typename base_type::object_type object_type;
-
- typedef typename base_type::pointer_type pointer_type;
- typedef typename base_type::pointer_traits pointer_traits;
-
- virtual
- ~object_result_impl_no_id ();
-
- object_result_impl_no_id (const query&,
- details::shared_ptr<select_statement>,
- object_statements_no_id<object_type>&);
-
- virtual void
- load (object_type&);
-
- virtual void
- next ();
-
- virtual void
- cache ();
-
- virtual std::size_t
- size ();
-
- using base_type::current;
-
- private:
- object_statements_no_id<object_type>& statements_;
- };
- }
-}
-
-#include <odb/sqlite/object-result.txx>
-
-#include <odb/post.hxx>
-
-#endif // ODB_SQLITE_OBJECT_RESULT_HXX