/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:46:27 UTC
  • Revision ID: edam@waxworlds.org-20120123134627-i6hi9aftfvwgp8vw
updated autotols stuff

Show diffs side-by-side

added added

removed removed

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