From 26e36b3a9d7b49d46ecfa69b447482251acba8ac Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Wed, 24 Jan 2024 16:53:38 +0300 Subject: Turn libodb repository into package for muti-package repository --- libodb/odb/result.txx | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 libodb/odb/result.txx (limited to 'libodb/odb/result.txx') diff --git a/libodb/odb/result.txx b/libodb/odb/result.txx new file mode 100644 index 0000000..b69d92a --- /dev/null +++ b/libodb/odb/result.txx @@ -0,0 +1,49 @@ +// file : odb/result.txx +// license : GNU GPL v2; see accompanying LICENSE file + +#include + +namespace odb +{ + template + typename result::pointer_type result:: + one () + { + iterator i (begin ()); + + if (i != end ()) + { + pointer_type o (i.load ()); + assert (++i == end ()); // More than one element in query_one() result. + return o; + } + + return pointer_type (); + } + + template + bool result:: + one (T& o) + { + iterator i (begin ()); + + if (i != end ()) + { + i.load (o); + assert (++i == end ()); // More than one element in query_one() result. + return true; + } + + return false; + } + + template + void result:: + value (T& o) + { + iterator i (begin ()); + assert (i != end ()); // Zero elements in query_value() result. + i.load (o); + assert (++i == end ()); // More than one element in query_value() result. + } +} -- cgit v1.1