summaryrefslogtreecommitdiff
path: root/odb/oracle/transaction-impl.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/oracle/transaction-impl.hxx')
-rw-r--r--odb/oracle/transaction-impl.hxx50
1 files changed, 0 insertions, 50 deletions
diff --git a/odb/oracle/transaction-impl.hxx b/odb/oracle/transaction-impl.hxx
deleted file mode 100644
index 0b7e9bf..0000000
--- a/odb/oracle/transaction-impl.hxx
+++ /dev/null
@@ -1,50 +0,0 @@
-// file : odb/oracle/transaction-impl.hxx
-// license : ODB NCUEL; see accompanying LICENSE file
-
-#ifndef ODB_ORACLE_TRANSACTION_IMPL_HXX
-#define ODB_ORACLE_TRANSACTION_IMPL_HXX
-
-#include <odb/pre.hxx>
-
-#include <odb/transaction.hxx>
-
-#include <odb/oracle/version.hxx>
-#include <odb/oracle/forward.hxx>
-#include <odb/oracle/oracle-fwd.hxx>
-
-#include <odb/oracle/details/export.hxx>
-
-namespace odb
-{
- namespace oracle
- {
- class LIBODB_ORACLE_EXPORT transaction_impl: public odb::transaction_impl
- {
- public:
- typedef oracle::database database_type;
- typedef oracle::connection connection_type;
-
- transaction_impl (database_type&);
- transaction_impl (connection_ptr);
-
- virtual
- ~transaction_impl ();
-
- virtual void
- start ();
-
- virtual void
- commit ();
-
- virtual void
- rollback ();
-
- private:
- connection_ptr connection_;
- };
- }
-}
-
-#include <odb/post.hxx>
-
-#endif // ODB_ORACLE_TRANSACTION_IMPL_HXX