summaryrefslogtreecommitdiff
path: root/odb/mysql/binding.hxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2024-01-25 18:52:59 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2024-01-25 18:52:59 +0300
commit3a160a80c788d81e48acf19a2cf68f29cf125dae (patch)
tree8bf000b3ae959d56367c15aa214a95d24b096905 /odb/mysql/binding.hxx
parent35bdfb3e3604527f36f046928324346e8b37b46b (diff)
Turn libodb-mysql repository into package for muti-package repositorylibodb-mysql
Diffstat (limited to 'odb/mysql/binding.hxx')
-rw-r--r--odb/mysql/binding.hxx45
1 files changed, 0 insertions, 45 deletions
diff --git a/odb/mysql/binding.hxx b/odb/mysql/binding.hxx
deleted file mode 100644
index 628233d..0000000
--- a/odb/mysql/binding.hxx
+++ /dev/null
@@ -1,45 +0,0 @@
-// file : odb/mysql/binding.hxx
-// license : GNU GPL v2; see accompanying LICENSE file
-
-#ifndef ODB_MYSQL_BINDING_HXX
-#define ODB_MYSQL_BINDING_HXX
-
-#include <odb/pre.hxx>
-
-#include <cstddef> // std::size_t
-
-#include <odb/forward.hxx>
-
-#include <odb/mysql/version.hxx>
-#include <odb/mysql/mysql-types.hxx>
-
-#include <odb/mysql/details/export.hxx>
-
-namespace odb
-{
- namespace mysql
- {
- class LIBODB_MYSQL_EXPORT binding
- {
- public:
- binding (): bind (0), count (0), version (0) {}
-
- binding (MYSQL_BIND* b, std::size_t n)
- : bind (b), count (n), version (0)
- {
- }
-
- MYSQL_BIND* bind;
- std::size_t count;
- std::size_t version;
-
- private:
- binding (const binding&);
- binding& operator= (const binding&);
- };
- }
-}
-
-#include <odb/post.hxx>
-
-#endif // ODB_MYSQL_BINDING_HXX