/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/row.h

  • Committer: edam
  • Date: 2010-07-27 15:46:42 UTC
  • Revision ID: edam@waxworlds.org-20100727154642-1uxrjkpxhp7xl6hq
- moved null_t, exec_t and set_index_t to detail namespace so only their extern instantiations are in the main namespace
- added immediate transation

Show diffs side-by-side

added added

removed removed

36
36
{
37
37
 
38
38
 
39
 
struct _null_t;
40
 
struct _set_index_t;
41
39
class query;
 
40
namespace detail {
 
41
        struct null_t;
 
42
        struct set_index_t;
 
43
}
42
44
 
43
45
 
44
46
/**
166
168
         * Stream operator for use with set_index().
167
169
         */
168
170
        row &operator >>(
169
 
                _set_index_t t );
 
171
                detail::set_index_t t );
170
172
 
171
173
//______________________________________________________________________________
172
174
//                                                                implementation
188
190
 
189
191
// template specialisations
190
192
template< >
191
 
row &row::operator >> < _null_t >(
192
 
        _null_t & );
 
193
row &row::operator >> < detail::null_t >(
 
194
        detail::null_t & );
193
195
 
194
196
 
195
197
} // namespace sqlite