diff options
Diffstat (limited to 'odb/mysql/transaction-impl.hxx')
-rw-r--r-- | odb/mysql/transaction-impl.hxx | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/odb/mysql/transaction-impl.hxx b/odb/mysql/transaction-impl.hxx new file mode 100644 index 0000000..1e611b8 --- /dev/null +++ b/odb/mysql/transaction-impl.hxx @@ -0,0 +1,50 @@ +// file : odb/mysql/transaction-impl.hxx +// author : Boris Kolpackov <boris@codesynthesis.com> +// copyright : Copyright (c) 2009-2010 Code Synthesis Tools CC +// license : GNU GPL v2; see accompanying LICENSE file + +#ifndef ODB_MYSQL_TRANSACTION_IMPL_HXX +#define ODB_MYSQL_TRANSACTION_IMPL_HXX + +#include <odb/shared-ptr.hxx> +#include <odb/transaction.hxx> + +#include <odb/mysql/forward.hxx> + +namespace odb +{ + namespace mysql + { + class transaction_impl: public odb::transaction_impl + { + protected: + friend class database; + friend class transaction; + + typedef mysql::database database_type; + typedef mysql::connection connection_type; + + transaction_impl (database_type&); + transaction_impl (database_type&, session_type&); + + virtual + ~transaction_impl (); + + virtual void + commit (); + + virtual void + rollback (); + + connection_type& + connection (); + + private: + shared_ptr<connection_type> connection_; + }; + } +} + +#include <odb/mysql/transaction-impl.ixx> + +#endif // ODB_MYSQL_TRANSACTION_IMPL_HXX |