/sqlite3cc

To get this branch, use:
bzr branch http://bzr.ed.am/sqlite3cc

« back to all changes in this revision

Viewing changes to include/sqlite3cc/transaction.h

  • Committer: edam
  • Date: 2012-01-23 13:51:26 UTC
  • Revision ID: edam@waxworlds.org-20120123135126-7gohm0mv9qwismla
typo

Show diffs side-by-side

added added

removed removed

94
94
 
95
95
 
96
96
/**
97
 
 * A deferred transaction (the default)
 
97
 * A deferred transaction
98
98
 */
99
 
typedef detail::basic_transaction deferred_tranaction;
 
99
typedef detail::basic_transaction deferred_transaction;
100
100
 
101
101
 
102
102
////////////////////////////////////////////////////////////////////////////////
219
219
 
220
220
 
221
221
/**
222
 
 * A scope guard (sentinel) for use with one of the transaction classes to
223
 
 * provide RIAA-style transactions.
 
222
 * A scope guard (sentinel) for use with one of the transaction
 
223
 * classes to provide RAII-style transactions. It defaults to using
 
224
 * deferred transactions.
224
225
 */
225
 
template< class T = deferred_tranaction >
 
226
template< class T = deferred_transaction >
226
227
class transaction_guard
227
228
        :
228
229
        private boost::noncopyable