aboutsummaryrefslogtreecommitdiff
path: root/odb/tracer.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/tracer.hxx')
-rw-r--r--odb/tracer.hxx38
1 files changed, 38 insertions, 0 deletions
diff --git a/odb/tracer.hxx b/odb/tracer.hxx
new file mode 100644
index 0000000..9a8ec88
--- /dev/null
+++ b/odb/tracer.hxx
@@ -0,0 +1,38 @@
+// file : odb/tracer.hxx
+// author : Boris Kolpackov <boris@codesynthesis.com>
+// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC
+// license : GNU GPL v2; see accompanying LICENSE file
+
+#ifndef ODB_TRACER_HXX
+#define ODB_TRACER_HXX
+
+#include <odb/pre.hxx>
+
+#include <odb/forward.hxx>
+#include <odb/details/export.hxx>
+
+namespace odb
+{
+ class LIBODB_EXPORT tracer
+ {
+ public:
+ virtual
+ ~tracer ();
+
+ virtual void
+ prepare (connection&, const statement&);
+
+ virtual void
+ execute (connection&, const statement&);
+
+ virtual void
+ execute (connection&, const char* statement) = 0;
+
+ virtual void
+ deallocate (connection&, const statement&);
+ };
+}
+
+#include <odb/post.hxx>
+
+#endif // ODB_TRACER_HXX