// file : odb/mysql/transaction-impl.hxx // copyright : Copyright (c) 2009-2015 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 #include #include #include #include namespace odb { namespace mysql { class LIBODB_MYSQL_EXPORT transaction_impl: public odb::transaction_impl { public: typedef mysql::database database_type; typedef mysql::connection connection_type; transaction_impl (database_type&); transaction_impl (connection_ptr); virtual ~transaction_impl (); virtual void start (); virtual void commit (); virtual void rollback (); connection_type& connection (); private: connection_ptr connection_; }; } } #include #include #endif // ODB_MYSQL_TRANSACTION_IMPL_HXX