aboutsummaryrefslogtreecommitdiff
path: root/odb/sqlite/no-id-object-result.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/sqlite/no-id-object-result.hxx')
-rw-r--r--odb/sqlite/no-id-object-result.hxx71
1 files changed, 71 insertions, 0 deletions
diff --git a/odb/sqlite/no-id-object-result.hxx b/odb/sqlite/no-id-object-result.hxx
new file mode 100644
index 0000000..84a7265
--- /dev/null
+++ b/odb/sqlite/no-id-object-result.hxx
@@ -0,0 +1,71 @@
+// file : odb/sqlite/no-id-object-result.hxx
+// copyright : Copyright (c) 2009-2012 Code Synthesis Tools CC
+// license : GNU GPL v2; see accompanying LICENSE file
+
+#ifndef ODB_SQLITE_NO_ID_OBJECT_RESULT_HXX
+#define ODB_SQLITE_NO_ID_OBJECT_RESULT_HXX
+
+#include <odb/pre.hxx>
+
+#include <cstddef> // std::size_t
+
+#include <odb/no-id-object-result.hxx>
+
+#include <odb/details/shared-ptr.hxx>
+
+#include <odb/sqlite/version.hxx>
+#include <odb/sqlite/forward.hxx> // query
+#include <odb/sqlite/result.hxx>
+#include <odb/sqlite/statement.hxx>
+
+namespace odb
+{
+ namespace sqlite
+ {
+ template <typename T>
+ class no_id_object_result_impl: public odb::no_id_object_result_impl<T>,
+ public result_impl_base
+ {
+ public:
+ typedef odb::no_id_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::pointer_type pointer_type;
+ typedef typename base_type::pointer_traits pointer_traits;
+
+ typedef typename object_traits::statements_type statements_type;
+
+ virtual
+ ~no_id_object_result_impl ();
+
+ no_id_object_result_impl (const query&,
+ details::shared_ptr<select_statement>,
+ statements_type&);
+
+ virtual void
+ load (object_type&);
+
+ virtual void
+ next ();
+
+ virtual void
+ cache ();
+
+ virtual std::size_t
+ size ();
+
+ using base_type::current;
+
+ private:
+ statements_type& statements_;
+ };
+ }
+}
+
+#include <odb/sqlite/no-id-object-result.txx>
+
+#include <odb/post.hxx>
+
+#endif // ODB_SQLITE_NO_ID_OBJECT_RESULT_HXX