summaryrefslogtreecommitdiff
path: root/libodb-sqlite/odb/sqlite/binding.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'libodb-sqlite/odb/sqlite/binding.hxx')
-rw-r--r--libodb-sqlite/odb/sqlite/binding.hxx44
1 files changed, 44 insertions, 0 deletions
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 <odb/pre.hxx>
+
+#include <cstddef> // std::size_t
+
+#include <odb/forward.hxx>
+
+#include <odb/sqlite/sqlite-types.hxx>
+
+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 <odb/post.hxx>
+
+#endif // ODB_SQLITE_BINDING_HXX