diff options
Diffstat (limited to 'odb/oracle/object-result.hxx')
-rw-r--r-- | odb/oracle/object-result.hxx | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/odb/oracle/object-result.hxx b/odb/oracle/object-result.hxx new file mode 100644 index 0000000..aa20615 --- /dev/null +++ b/odb/oracle/object-result.hxx @@ -0,0 +1,73 @@ +// file : odb/oracle/object-result.hxx +// author : Constantin Michael <constantin@codesynthesis.com> +// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC +// license : ODB NCUEL; see accompanying LICENSE file + +#ifndef ODB_ORACLE_OBJECT_RESULT_HXX +#define ODB_ORACLE_OBJECT_RESULT_HXX + +#include <odb/pre.hxx> + +#include <cstddef> // std::size_t + +#include <odb/details/shared-ptr.hxx> + +#include <odb/oracle/version.hxx> +#include <odb/oracle/forward.hxx> // query, object_statements +#include <odb/oracle/result.hxx> +#include <odb/oracle/statement.hxx> + +namespace odb +{ + namespace oracle + { + template <typename T> + class result_impl<T, class_object>: + public odb::result_impl<T, class_object> + { + public: + typedef odb::result_impl<T, class_object> base_type; + + typedef typename base_type::object_type object_type; + typedef typename base_type::object_traits object_traits; + 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 + ~result_impl (); + + result_impl (const query&, + details::shared_ptr<select_statement>, + object_statements<object_type>&); + + virtual void + load (object_type&); + + virtual id_type + load_id (); + + virtual void + next (); + + virtual void + cache (); + + virtual std::size_t + size (); + + using base_type::current; + + private: + details::shared_ptr<select_statement> statement_; + object_statements<object_type>& statements_; + }; + } +} + +#include <odb/oracle/object-result.txx> + +#include <odb/post.hxx> + +#endif // ODB_ORACLE_OBJECT_RESULT_HXX |