From 2d1104b1e3cfbf394981c39d8828598599dee5d6 Mon Sep 17 00:00:00 2001 From: Constantin Michael Date: Thu, 21 Apr 2011 09:19:17 +0200 Subject: Add qt/container implementation --- odb/qt/containers/qset-traits.hxx | 70 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100644 odb/qt/containers/qset-traits.hxx (limited to 'odb/qt/containers/qset-traits.hxx') diff --git a/odb/qt/containers/qset-traits.hxx b/odb/qt/containers/qset-traits.hxx new file mode 100644 index 0000000..13216b9 --- /dev/null +++ b/odb/qt/containers/qset-traits.hxx @@ -0,0 +1,70 @@ +// file : odb/qt/containers/qset-traits.hxx +// author : Constantin Michael +// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC +// license : GNU GPL v2; see accompanying LICENSE file + +#ifndef ODB_QT_CONTAINER_QSET_TRAITS_HXX +#define ODB_QT_CONTAINER_QSET_TRAITS_HXX + +#include + +#include + +#include + +namespace odb +{ + template + class access::container_traits > + { + public: + static const container_kind kind = ck_set; + + typedef QSet container_type; + typedef T value_type; + + typedef set_functions functions; + + public: + static void + persist (const container_type& c, const functions& f) + { + for (typename container_type::const_iterator i (c.begin ()), + e (c.end ()); i != e; ++i) + f.insert_one (*i); + } + + static void + load (container_type& c, bool more, const functions& f) + { + c.clear (); + + while (more) + { + value_type v; + more = f.load_all (v); + c.insert (v); + } + } + + static void + update (const container_type& c, const functions& f) + { + f.delete_all (); + + for (typename container_type::const_iterator i (c.begin ()), + e (c.end ()); i != e; ++i) + f.insert_one (*i); + } + + static void + erase (const functions& f) + { + f.delete_all (); + } + }; +} + +#include + +#endif // ODB_QT_CONTAINER_QSET_TRAITS_HXX -- cgit v1.1