summaryrefslogtreecommitdiff
path: root/odb/sqlite/tracer.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/sqlite/tracer.cxx')
-rw-r--r--odb/sqlite/tracer.cxx60
1 files changed, 0 insertions, 60 deletions
diff --git a/odb/sqlite/tracer.cxx b/odb/sqlite/tracer.cxx
deleted file mode 100644
index 49f6b00..0000000
--- a/odb/sqlite/tracer.cxx
+++ /dev/null
@@ -1,60 +0,0 @@
-// file : odb/sqlite/tracer.cxx
-// license : GNU GPL v2; see accompanying LICENSE file
-
-#include <odb/sqlite/tracer.hxx>
-#include <odb/sqlite/connection.hxx>
-#include <odb/sqlite/statement.hxx>
-
-namespace odb
-{
- namespace sqlite
- {
- tracer::
- ~tracer ()
- {
- }
-
- void tracer::
- prepare (connection&, const statement&)
- {
- }
-
- void tracer::
- execute (connection& c, const statement& s)
- {
- execute (c, s.text ());
- }
-
- void tracer::
- deallocate (connection&, const statement&)
- {
- }
-
- void tracer::
- prepare (odb::connection& c, const odb::statement& s)
- {
- prepare (static_cast<connection&> (c),
- static_cast<const statement&> (s));
- }
-
- void tracer::
- execute (odb::connection& c, const odb::statement& s)
- {
- execute (static_cast<connection&> (c),
- static_cast<const statement&> (s));
- }
-
- void tracer::
- execute (odb::connection& c, const char* s)
- {
- execute (static_cast<connection&> (c), s);
- }
-
- void tracer::
- deallocate (odb::connection& c, const odb::statement& s)
- {
- deallocate (static_cast<connection&> (c),
- static_cast<const statement&> (s));
- }
- }
-}