From e5d0186db99492a139237067bab841a5b83463af Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Wed, 24 Jan 2024 19:01:19 +0300 Subject: Turn libodb-sqlite repository into package for muti-package repository --- libodb-sqlite/odb/sqlite/binding.hxx | 44 ++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 libodb-sqlite/odb/sqlite/binding.hxx (limited to 'libodb-sqlite/odb/sqlite/binding.hxx') diff --git a/libodb-sqlite/odb/sqlite/binding.hxx b/libodb-sqlite/odb/sqlite/binding.hxx new file mode 100644 index 0000000..3807130 --- /dev/null +++ b/libodb-sqlite/odb/sqlite/binding.hxx @@ -0,0 +1,44 @@ +// file : odb/sqlite/binding.hxx +// license : GNU GPL v2; see accompanying LICENSE file + +#ifndef ODB_SQLITE_BINDING_HXX +#define ODB_SQLITE_BINDING_HXX + +#include + +#include // std::size_t + +#include + +#include + +namespace odb +{ + namespace sqlite + { + class binding + { + public: + typedef sqlite::bind bind_type; + + binding (): bind (0), count (0), version (0) {} + + binding (bind_type* b, std::size_t n) + : bind (b), count (n), version (0) + { + } + + bind_type* bind; + std::size_t count; + std::size_t version; + + private: + binding (const binding&); + binding& operator= (const binding&); + }; + } +} + +#include + +#endif // ODB_SQLITE_BINDING_HXX -- cgit v1.1