aboutsummaryrefslogtreecommitdiff
path: root/odb/oracle/binding.hxx
diff options
context:
space:
mode:
authorConstantin Michael <constantin@codesynthesis.com>2011-10-27 15:53:35 +0200
committerConstantin Michael <constantin@codesynthesis.com>2011-11-01 13:14:54 +0200
commit02e8f9f8d3276433398bc04bf66ff8e55e8d3d31 (patch)
treedd57100b709f867a93feb95296db40f4c50466e5 /odb/oracle/binding.hxx
parent35dd30f3304027fc4b6167a64bb8d2fe1152d5bf (diff)
Implement query image change callback machinery
Diffstat (limited to 'odb/oracle/binding.hxx')
-rw-r--r--odb/oracle/binding.hxx5
1 files changed, 4 insertions, 1 deletions
diff --git a/odb/oracle/binding.hxx b/odb/oracle/binding.hxx
index 778e7fc..64f4782 100644
--- a/odb/oracle/binding.hxx
+++ b/odb/oracle/binding.hxx
@@ -23,9 +23,10 @@ namespace odb
{
public:
typedef oracle::bind bind_type;
+ typedef oracle::change_callback change_callback_type;
binding (bind_type* b, std::size_t n)
- : bind (b), count (n), version (0)
+ : bind (b), count (n), version (0), change_callback (0)
{
}
@@ -33,6 +34,8 @@ namespace odb
std::size_t count;
std::size_t version;
+ change_callback_type* change_callback;
+
private:
binding (const binding&);
binding& operator= (const binding&);