summaryrefslogtreecommitdiff
path: root/odb/sqlite/tracer.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/sqlite/tracer.hxx')
-rw-r--r--odb/sqlite/tracer.hxx61
1 files changed, 0 insertions, 61 deletions
diff --git a/odb/sqlite/tracer.hxx b/odb/sqlite/tracer.hxx
deleted file mode 100644
index b12573b..0000000
--- a/odb/sqlite/tracer.hxx
+++ /dev/null
@@ -1,61 +0,0 @@
-// file : odb/sqlite/tracer.hxx
-// license : GNU GPL v2; see accompanying LICENSE file
-
-#ifndef ODB_SQLITE_TRACER_HXX
-#define ODB_SQLITE_TRACER_HXX
-
-#include <odb/pre.hxx>
-
-#include <odb/tracer.hxx>
-
-#include <odb/sqlite/version.hxx>
-#include <odb/sqlite/forward.hxx>
-#include <odb/sqlite/details/export.hxx>
-
-namespace odb
-{
- namespace sqlite
- {
- class LIBODB_SQLITE_EXPORT tracer: private odb::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&);
-
- private:
- // Allow these classes to convert sqlite::tracer to odb::tracer.
- //
- friend class database;
- friend class connection;
- friend class transaction;
-
- virtual void
- prepare (odb::connection&, const odb::statement&);
-
- virtual void
- execute (odb::connection&, const odb::statement&);
-
- virtual void
- execute (odb::connection&, const char* statement);
-
- virtual void
- deallocate (odb::connection&, const odb::statement&);
- };
- }
-}
-
-#include <odb/post.hxx>
-
-#endif // ODB_SQLITE_TRACER_HXX