summaryrefslogtreecommitdiff
path: root/odb/sqlite/binding.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/sqlite/binding.hxx')
-rw-r--r--odb/sqlite/binding.hxx44
1 files changed, 0 insertions, 44 deletions
diff --git a/odb/sqlite/binding.hxx b/odb/sqlite/binding.hxx
deleted file mode 100644
index 3807130..0000000
--- a/odb/sqlite/binding.hxx
+++ /dev/null
@@ -1,44 +0,0 @@
-// 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