// file : odb/pgsql/transaction-impl.hxx // author : Constantin Michael // copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC // license : GNU GPL v2; see accompanying LICENSE file #ifndef ODB_PGSQL_TRANSACTION_IMPL_HXX #define ODB_PGSQL_TRANSACTION_IMPL_HXX #include #include #include #include #include #include namespace odb { namespace pgsql { class LIBODB_PGSQL_EXPORT transaction_impl: public odb::transaction_impl { protected: friend class database; friend class transaction; typedef pgsql::database database_type; typedef pgsql::connection connection_type; transaction_impl (database_type&); virtual ~transaction_impl (); virtual void commit (); virtual void rollback (); connection_type& connection (); private: details::shared_ptr connection_; }; } } #include #include #endif // ODB_PGSQL_TRANSACTION_IMPL_HXX