diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-07-02 14:05:27 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-07-02 14:56:52 +0200 |
commit | b6df953c8fb19cd00aed47b95b28677e34892f59 (patch) | |
tree | f4477a0a8496a5f493f048593a633db958f16d30 /framework/inc/threadhelp/transactionguard.hxx | |
parent | 17d0d12b8d2cc92f6e83dbea467f7d00a97795bb (diff) |
Drop unnecessary ITransactionManager base class
Change-Id: Iebed1d63ff76fdc9b82ce6ce8860592606500e38
Diffstat (limited to 'framework/inc/threadhelp/transactionguard.hxx')
-rw-r--r-- | framework/inc/threadhelp/transactionguard.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/framework/inc/threadhelp/transactionguard.hxx b/framework/inc/threadhelp/transactionguard.hxx index 10d9b0134fc9..4395a5872316 100644 --- a/framework/inc/threadhelp/transactionguard.hxx +++ b/framework/inc/threadhelp/transactionguard.hxx @@ -21,7 +21,7 @@ #define INCLUDED_FRAMEWORK_INC_THREADHELP_TRANSACTIONGUARD_HXX #include <boost/noncopyable.hpp> -#include <threadhelp/itransactionmanager.h> +#include <threadhelp/transactionmanager.hxx> namespace framework{ @@ -56,7 +56,7 @@ class TransactionGuard : private boost::noncopyable @param "eMode" enable/disable throwing of exceptions for rejected calls @param "eReason" returns reason for rejected calls if "eMode=E_NOEXCEPTIONS"! *//*-*****************************************************************************************************/ - inline TransactionGuard( ITransactionManager& rManager, EExceptionMode eMode, ERejectReason* eReason = NULL ) + inline TransactionGuard( TransactionManager& rManager, EExceptionMode eMode, ERejectReason* eReason = NULL ) : m_pManager( &rManager ) { // If exception mode is set to E_HARDEXCETIONS we don't need a buffer to return reason! @@ -115,7 +115,7 @@ class TransactionGuard : private boost::noncopyable private: - ITransactionManager* m_pManager; /// pointer to safed transaction manager + TransactionManager* m_pManager; /// pointer to safed transaction manager }; // class TransactionGuard |